繁体   English   中英

Windows套接字无法在VPN IP地址上绑定

[英]Windows Socket unable to bind on VPN IP address

我试图绑定到通过VPN网络的特定IP,并且能够对其进行ping,连接并能够在特定端口上进行telnet,但是我的Windows MFC程序给出了错误代码10049,我无法继续进行任何操作帮助调试此问题将不胜感激,我在Visual Studio 2012 Win 7上运行它,而远程客户端在Linux变体上运行。

这是代码的一部分,我在这里遇到错误,基本上IP地址是可配置的,但是我正在对其进行硬编码以进行调试。

   CStarDoc          *p_doc = (CStarDoc*) lpparam; 
   BOOL              fFlag = TRUE;
   const int         MAX_MSGLEN = max(sizeof(DISP_INFO_T ), sizeof(REASON_STRING_T ));
   char              buffer[MAX_MSGLEN];
   DISP_INFO_T       *p_disp_info_buffer = (DISP_INFO_T *) buffer;
   DISP_INFO_T       disp_info_combined; //receiving combined butter
   DISP_INFO_T_1     *p_disp_info_buffer1; //receiving buffer pointer for DispInfo1
   DISP_INFO_T_2     *p_disp_info_buffer2; //receiving buffer pointer for DispInfo2
   int               msgReceived = 0; // Initially, is 0. 
   // For the same msgNumber, when the program receives the first portion of buffer, set to 1,
   // When the program receives both portions, set it to 0. 
   // When the program misses any portion for the same msgNumber, set to 0 also.
   int               currentMsgNum1 = 0;  
   int               currentMsgNum2 = 0;  
   int               err;
   CString           msg;
   SOCKADDR_IN       saUDPPortIn;
   SOCKADDR_IN       From;

   struct addrinfo *result = NULL;
   struct addrinfo *ptr = NULL;
   struct addrinfo hints;
   ::memset( &hints,0, sizeof(hints) );
   hints.ai_family = AF_UNSPEC;
   //hints.ai_socktype = SOCK_DGRAM;
   //hints.ai_protocol = IPPROTO_UDP;
   char asideip[] = "192.168.1.129";
   BOOL              OtherSideIsStandby = FALSE; 
   static BOOL       DoFirstMsg = TRUE; 

   //   p_disp_info_combined = & disp_info_combined;
   p_doc->ThreadRunning = TRUE;
   p_doc->udpsocket = socket(AF_INET, SOCK_DGRAM, 0);
   if (INVALID_SOCKET == p_doc->udpsocket)
   {
       CString msg =  "Invalid socket: "+ WSAGetLastError();
       AfxMessageBox(msg);
       return(-1);
   }

   long ip = 0;
   int sockbufsize = 0; 
   int timeout = 2000; 

   // This is the IP that matches the IP of the QNX machines in all but the last octet. 
   // Note: it is in host byte format. 
   int errcode = getaddrinfo(asideip,NULL,&hints,&result);
   for(ptr = result;ptr != NULL ;ptr=ptr->ai_next) 
   {
       switch (ptr->ai_family) 
       {
         default: break;
         case AF_INET :
           ip = p_doc->MyIP;
           saUDPPortIn.sin_family = AF_INET;
           saUDPPortIn.sin_addr.s_addr = (((SOCKADDR_IN*) ptr->ai_addr)->sin_addr).s_addr;
           saUDPPortIn.sin_port = htons(p_doc->port_addr );
           int length = sizeof(buffer) *2;
           //err = setsockopt(p_doc->udpsocket,SOL_SOCKET, SO_REUSEADDR, (char *)&fFlag, sizeof(fFlag));
           //err = setsockopt(p_doc->udpsocket,SOL_SOCKET, SO_BROADCAST, (char *)&fFlag, sizeof(fFlag));
           err = setsockopt(p_doc->udpsocket, SOL_SOCKET, SO_RCVBUF, (char *)&length, sizeof(length));

           // Keep from hanging forever. 
           err = setsockopt(p_doc->udpsocket, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout, sizeof(timeout));
           err = bind(p_doc->udpsocket, (SOCKADDR FAR *)&saUDPPortIn, sizeof(SOCKADDR_IN));
           if (err == SOCKET_ERROR)
           {
             int errcode = WSAGetLastError();
             closesocket(p_doc->udpsocket); 
             /*    msg.Format("Network Connectivity failed, Please Check Network. "); 
             AfxMessageBox(msg);   
             closesocket(p_doc->udpsocket); 
         p_doc->udpsocket = -1;                                          // task is trying to attach to the port.   
             return(1);*/
           }
       }
   }

谢谢

您无法绑定到远程地址,并且如您的错误所示,是这种情况。 您将绑定系统调用与本地IP和端口一起使用。

这是MSDN关于您的错误的说明:

WSAEADDRNOTAVAIL 10049

无法分配请求的地址。 请求的地址在其上下文中无效。 这通常是由于尝试绑定到对于本地计算机无效的地址而导致的。 当远程地址或端口对远程计算机无效(例如,地址或端口0)时,也可能是由于connect,sendto,WSAConnect,WSAJoinLeaf或WSASendTo导致的。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM