提交 133a08dd authored 作者: Mathieu Rene's avatar Mathieu Rene

fix windows build

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16612 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 1a5799ad
......@@ -41,7 +41,12 @@ miniwget2(const char * url, const char * host,
int * size, char * addr_str, int addr_str_len)
{
char buf[2048];
int s, fd_flags;
#ifdef WIN32
SOCKET s;
#else
int s;
#endif
int fd_flags;
struct sockaddr_in dest;
struct hostent *hp;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论