mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-22 16:33:03 +01:00
core: getaddrinfo() lookup error handling
This commit is contained in:
parent
209e0d53eb
commit
3923114da4
4
prompt.c
4
prompt.c
@ -83,8 +83,8 @@ static void execute(ToxWindow* self, char* cmd) {
|
|||||||
|
|
||||||
dht.port = htons(atoi(port));
|
dht.port = htons(atoi(port));
|
||||||
|
|
||||||
int resolved_address = resolve_addr(ip);
|
uint32_t resolved_address = resolve_addr(ip);
|
||||||
if (resolved_address == -1) {
|
if (resolved_address == 0) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user