Question: I am having trouble using the getaddrinfo function. I need to get the local address. Right now I am doing struct addrinfo *clientinfo; getaddrinfo(localhost, NULL,
I am having trouble using the getaddrinfo function.
I need to get the local address. Right now I am doing
struct addrinfo *clientinfo;
getaddrinfo("localhost", NULL, NULL, &clientinfo);
I need to then somehow use that value and use it as a sockaddr_in value?
what am i doing wrong?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
