'inet_pton': identifier not found

前端 未结 7 1120
长发绾君心
长发绾君心 2020-12-05 05:04

I\'m trying to include the following code in my program but the error (\'inet_pton\': identifier not found) will appeared.

// IPv4:

struct sockaddr_in ip4a         


        
7条回答
  •  天涯浪人
    2020-12-05 05:29

    To fix this problem just add the following to your code after all #includes

    #pragma comment(lib, "ws2_32.lib")
    

提交回复
热议问题