开发者

Why socket(PF_INET,SOCK_STREAM,0) returns -1?

I trying to create a socket application on visual studio c++, but I can't.

The problem is int listen_sock = socket(PF_INET,SOCK_STREAM,0) returns -1 and I don't know 开发者_运维问答why...

What am I doing wrong?


What does WSAGetLastError return? Did you call WSAStartup before doing this call?


You should print the error (using GetLastError). I suspect you are not initializing things:

WSADATA wsaData = {0};
WSAStartup(MAKEWORD(2, 2), &wsaData);
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜