mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 21:53:05 +01:00
resolve_addr() was removed from core
This commit is contained in:
parent
937c80964f
commit
9ab34ca5dd
40
src/main.c
40
src/main.c
@ -91,6 +91,46 @@ static Messenger *init_tox()
|
|||||||
return m;
|
return m;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
resolve_addr():
|
||||||
|
address should represent IPv4 or a hostname with A record
|
||||||
|
|
||||||
|
returns a data in network byte order that can be used to set IP.i or IP_Port.ip.i
|
||||||
|
returns 0 on failure
|
||||||
|
|
||||||
|
TODO: Fix ipv6 support
|
||||||
|
*/
|
||||||
|
uint32_t resolve_addr(const char *address)
|
||||||
|
{
|
||||||
|
struct addrinfo *server = NULL;
|
||||||
|
struct addrinfo hints;
|
||||||
|
int rc;
|
||||||
|
uint32_t addr;
|
||||||
|
|
||||||
|
memset(&hints, 0, sizeof(hints));
|
||||||
|
hints.ai_family = AF_INET; // IPv4 only right now.
|
||||||
|
hints.ai_socktype = SOCK_DGRAM; // type of socket Tox uses.
|
||||||
|
|
||||||
|
rc = getaddrinfo(address, "echo", &hints, &server);
|
||||||
|
|
||||||
|
// Lookup failed.
|
||||||
|
if (rc != 0) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// IPv4 records only..
|
||||||
|
if (server->ai_family != AF_INET) {
|
||||||
|
freeaddrinfo(server);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
addr = ((struct sockaddr_in *)server->ai_addr)->sin_addr.s_addr;
|
||||||
|
|
||||||
|
freeaddrinfo(server);
|
||||||
|
return addr;
|
||||||
|
}
|
||||||
|
|
||||||
#define MAXLINE 90 /* Approx max number of chars in a sever line (IP + port + key) */
|
#define MAXLINE 90 /* Approx max number of chars in a sever line (IP + port + key) */
|
||||||
#define MINLINE 70
|
#define MINLINE 70
|
||||||
#define MAXSERVERS 50
|
#define MAXSERVERS 50
|
||||||
|
Loading…
Reference in New Issue
Block a user