套接字绑定不会返回int

时间:2016-09-10 06:55:54

标签: c++ sockets tcp server

我的代码片段如下所示:

int descriptor = socket(AF_INET, SOCK_STREAM, 0);
if(descriptor < 0){
    cerr << "Error establishing socket connection." << endl;
    return -1;
}
int port = 3400;
struct sockaddr_in address;
char buffer[140];
address.sin_family = AF_INET;
address.sin_addr.s_addr = htons(INADDR_ANY);
address.sin_port = htons(port);
int size = sizeof(address);
if(bind(descriptor,(struct sockaddr*)&address,size) < 0){
    cerr << "Error binding socket." << endl;
}
cout << "Waiting for connection on " << INADDR_ANY << " on port " << port << ends;

每当我尝试编译时,我都会收到以下错误:

error: invalid operands to binary expression 
('__bind<int &, sockaddr *, int &>' and 'int')
if(bind(descriptor,(struct sockaddr*)&address,size) < 0){

有人知道这可能意味着什么吗? bind()应该返回一个整数左右我想。我的导入如下:

#include <iostream>     
#include <string.h>   
#include <string>       
#include <sys/socket.h> 
#include <sys/types.h> 
#include <netinet/in.h>
#include <arpa/inet.h> 
#include <netdb.h>  
#include <unistd.h>
using namespace std;

谢谢!

1 个答案:

答案 0 :(得分:15)

using namespace std;加上过多的标题包含可能是这里的罪魁祸首 - 这就是为什么它在SO not to use it上一遍又一遍地重复的原因。通过这样做,编译器会看到bind,并认为你的意思是来自std::bind的{​​{1}},而不是<functional>的套接字。所以要么做正确的事情并审查你是否真的需要包含所有这些标题并使用声明摆脱它,或使用::bind编辑:或两者 - 使用它并不错::bind表示您要使用全局命名空间中的某些标准API函数