summaryrefslogtreecommitdiff
path: root/plugins/YAMN/src/proto/netlib.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/YAMN/src/proto/netlib.h')
-rw-r--r--plugins/YAMN/src/proto/netlib.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/YAMN/src/proto/netlib.h b/plugins/YAMN/src/proto/netlib.h
index 17259cf219..de41a6ad04 100644
--- a/plugins/YAMN/src/proto/netlib.h
+++ b/plugins/YAMN/src/proto/netlib.h
@@ -14,10 +14,10 @@ public:
inline BOOL Connected() {return hConnection!=NULL;}
protected:
- HANDLE hConnection;
+ HNETLIBCONN hConnection;
BOOL isTLSed;
- int LocalNetlib_Send(HANDLE hConn,const char *buf,int len,int flags);
- int LocalNetlib_Recv(HANDLE hConn,char *buf,int len,int flags);
+ int LocalNetlib_Send(HNETLIBCONN hConn, const char *buf, int len, int flags);
+ int LocalNetlib_Recv(HNETLIBCONN hConn, char *buf, int len, int flags);
};
void SSL_DebugLog(const char *fmt, ...);