diff options
author | Camil Staps | 2015-08-12 13:59:08 +0200 |
---|---|---|
committer | Camil Staps | 2015-08-12 13:59:08 +0200 |
commit | b5e3f8cb0a19ec0672cd27c8df0f3393643aaf42 (patch) | |
tree | 245b461bf015353b41d3df72cfd1868e110d5d23 /Linux_C_12/cTCP_121.h | |
parent | Fixed crashes with windows (diff) |
Get rid of all the tabs. So annoying.
Diffstat (limited to 'Linux_C_12/cTCP_121.h')
-rw-r--r-- | Linux_C_12/cTCP_121.h | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/Linux_C_12/cTCP_121.h b/Linux_C_12/cTCP_121.h index 0707781..303eea6 100644 --- a/Linux_C_12/cTCP_121.h +++ b/Linux_C_12/cTCP_121.h @@ -7,31 +7,31 @@ typedef int DNSHdl;
struct DNSInfo
- { struct DNSInfo *next;
- HANDLE dnsHdl;
- union { struct hostent Hostent;
- char freeSpace[MAXGETHOSTSTRUCT];
- }
- junion;
- };
+ { struct DNSInfo *next;
+ HANDLE dnsHdl;
+ union { struct hostent Hostent;
+ char freeSpace[MAXGETHOSTSTRUCT];
+ }
+ junion;
+ };
typedef struct DNSInfo DNSInfo;
/* the dictionary items */
struct dictitem
- { SOCKET endpointRef;
- struct dictitem *next;
- char availByte;
- unsigned availByteValid : 1;
- unsigned referenceCount : 2;
- unsigned hasReceiveNotifier : 1;
+ { SOCKET endpointRef;
+ struct dictitem *next;
+ char availByte;
+ unsigned availByteValid : 1;
+ unsigned referenceCount : 2;
+ unsigned hasReceiveNotifier : 1;
/*
* three kinds of receivers: receivers for established connections,
* receivers for dns requests, receivers for asynchronous connect
*/
- unsigned hasSendableNotifier : 1;
- unsigned aborted : 1;
- unsigned disconnected : 1;
- };
+ unsigned hasSendableNotifier : 1;
+ unsigned aborted : 1;
+ unsigned disconnected : 1;
+ };
typedef struct dictitem dictitem;
#define IE_CONNECTREQUEST 0x0001
|