关于Bind函数的疑问
我运用的是CSocket(CLientSocket是从CSocket类派生的)类套接字,下面是我在服务器端创建的侦听套接字 ,为什么总是无法进行绑定?是不是CSocket中无Bind函数,或是我的参数应用错误? //创建 m_pLsocket=new CListenSocket; if(!m_pLsocket->Create(1020)) { AfxMessageBox("Can not create the socket!"); } else { AfxMessageBox(" create the socket sucessfully!"); }
//绑定 if(!m_pLsocket->Bind(1020)) { AfxMessageBox("Bind Failure"); } else { AfxMessageBox("Bind Successfully"); }