Merge pull request #2310 from leiradel/master
initialize the network in net_http_new_socket
This commit is contained in:
commit
ebd60c69e2
|
@ -75,6 +75,9 @@ static int net_http_new_socket(const char *domain, int port)
|
|||
struct addrinfo hints, *addr = NULL;
|
||||
char portstr[16] = {0};
|
||||
|
||||
/* Initialize the network. */
|
||||
network_init();
|
||||
|
||||
snprintf(portstr, sizeof(portstr), "%i", port);
|
||||
|
||||
memset(&hints, 0, sizeof(hints));
|
||||
|
|
Loading…
Reference in New Issue