diff options
author | George Hazan <ghazan@miranda.im> | 2017-01-14 01:22:55 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-01-14 01:22:55 +0300 |
commit | d3cb19278d60ac6f7963379254546cdca36a90e2 (patch) | |
tree | f2fa018b343d5460419c1b323f5f3ce04a393d00 /protocols/JabberG/src/stdafx.h | |
parent | d5a6c0666a8d8d2055a3f4402f67f91e8548ec3a (diff) |
separate handle types for HNETLIBCONN & HNETLIBBIND
Diffstat (limited to 'protocols/JabberG/src/stdafx.h')
-rw-r--r-- | protocols/JabberG/src/stdafx.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/protocols/JabberG/src/stdafx.h b/protocols/JabberG/src/stdafx.h index 1d09f4d866..df2533fbfc 100644 --- a/protocols/JabberG/src/stdafx.h +++ b/protocols/JabberG/src/stdafx.h @@ -336,7 +336,6 @@ struct CJabberHttpAuthParams /*******************************************************************
* Global data structures and data type definitions
*******************************************************************/
-typedef HANDLE JABBER_SOCKET;
#define CAPS_BOOKMARK 0x0001
#define CAPS_BOOKMARKS_LOADED 0x8000
@@ -371,7 +370,7 @@ struct ThreadData char* buffer;
// network support
- JABBER_SOCKET s;
+ HNETLIBCONN s;
HANDLE iomutex; // protects i/o operations
CJabberProto *proto;
@@ -442,7 +441,7 @@ struct filetransfer PROTOFILETRANSFERSTATUS std;
JABBER_FT_TYPE type;
- JABBER_SOCKET s;
+ HNETLIBCONN s;
JABBER_FILE_STATE state;
wchar_t *jid;
int fileId;
|