Linux与windows下setsockopt的一点差异

        主要就是那个时间数据类型不一致。正常设置后,retOpt为0,否则为-1。

windows:

int nTvlen=1000;  //1s
int retOpt=setsockopt(m_Socket,SOL_SOCKET, SO_RCVTIMEO, (const char*)&nTvlen,sizeof(nTvlen));

linux:

struct timeval nTvlen={1,0}; //1S
int retOpt=setsockopt(m_Socket,SOL_SOCKET, SO_RCVTIMEO, (const char*)&nTvlen,sizeof(nTvlen));



你可能感兴趣的:(windows,linux,socket,struct)