10 lines
212 B
C++
10 lines
212 B
C++
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <netdb.h>
|
|
|
|
int status;
|
|
struct addrinfo hints;
|
|
struct addrinfo *servinfo; // Points to results
|
|
|
|
memset(&hints, 0, sizeof hints);
|
|
hints.ai_family = AF_UNSPACE |