00001 /* 00002 Free Download Manager Copyright (c) 2003-2007 FreeDownloadManager.ORG 00003 */ 00004 00005 #ifndef __MULTIIF_H 00006 #define __MULTIIF_H 00007 00008 void Curl_expire(struct SessionHandle *data, long milli); 00009 00010 void Curl_multi_rmeasy(void *multi, CURL *data); 00011 00012 bool Curl_multi_canPipeline(struct Curl_multi* multi); 00013 void Curl_multi_handlePipeBreak(struct SessionHandle *data); 00014 00015 #define GETSOCK_WRITEBITSTART 16 00016 00017 #define GETSOCK_BLANK 0 00018 00019 #define GETSOCK_WRITESOCK(x) (1 << (GETSOCK_WRITEBITSTART + (x))) 00020 00021 #define GETSOCK_READSOCK(x) (1 << (x)) 00022 00023 #endif
1.5.6