bind: Socket operation on non-socket问题解决

Posted studying~

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bind: Socket operation on non-socket问题解决相关的知识,希望对你有一定的参考价值。

问题代码:

int s_fd; 
	if(s_fd = socket(AF_INET,SOCK_STREAM,0) < 0)
	
		perror("socket:");
		exit(1);
	

改成

int s_fd = socket(AF_INET,SOCK_STREAM,0);
	if(s_fd < 0)
	
		perror("socket:");
		exit(1);
	

以上是关于bind: Socket operation on non-socket问题解决的主要内容,如果未能解决你的问题,请参考以下文章

从 socket.io 中删除特定的类方法监听器

socket编程实现文件的上传和下载

为啥 Visual Studio 生成的 WSDL 未指定 soap:operation 元素(缺少 wsdl:binding 元素)

请问java socket 里面的bind做啥用?

windows socket 编程:bind 错误码-1 如何解决?

UDP协议编程与获取一个网页内容