boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - winsock error 10053
相关主题
有没有人在Vista下试过UDP广播
Linux Socket编程
问个socket的问题
一个socket中select函数的问题
C10M 练习2: 空TCP 连接,1M per 4G RAM
请教一下关Visual C++ 和Ethernet的问题
想知道家在linux下都有什么c++ socket library
double free or corruption问题
c++ exception 一问
perl beginner question "1;" ?
相关话题的讨论汇总
话题: 10053话题: wsadata话题: error话题: winsock话题: wsaret
进入Programming版参与讨论
1 (共1页)
t***i
发帖数: 40
1
Hi;
I tried to created a simple http client program to see why it gave me error
10053. 10053 is a winsock error with the description "Software caused
connection abort." Basically I created a socket and connected to www.google.
com and every couple of seconds sent the same request. It worked several
minutes then came up error 10053. The following is the code. Any suggestions
are greatly appreciated!
WSADATA wsaData;
int wsaret=WSAStartup(0x101,&wsaData);
if(wsaret)
exit(1);
SOCKET sock;
so
1 (共1页)
进入Programming版参与讨论
相关主题
perl beginner question "1;" ?
How to get local hostname under linux?
为什么这个小程序错了?
UNIX DATAGRAM 类型socket最大报文长度多少?
help!无法编译一个package
memory leak 问题
How to resolve "terminate called after throwing an instance of 'std::bad_alloc'???
如何改变一个文件的UNIT?
请教perl 高手: 如何detect windows programm的Debug window
一个比较模糊的问题
相关话题的讨论汇总
话题: 10053话题: wsadata话题: error话题: winsock话题: wsaret