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