mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-27 05:33:26 +01:00
Fix fall-back from IPv6 to IPv4
Professionalism edits
This commit is contained in:
parent
2f473300cd
commit
2ae478d546
@ -117,8 +117,10 @@ static Tox *init_tox(int ipv4)
|
|||||||
int ipv6 = !ipv4;
|
int ipv6 = !ipv4;
|
||||||
Tox *m = tox_new(ipv6);
|
Tox *m = tox_new(ipv6);
|
||||||
|
|
||||||
// TOX_ENABLE_IPV6_DEFAULT is always 1.
|
/*
|
||||||
// Fuck checking it, this *should* be doing ipv4 fallback, no?
|
* TOX_ENABLE_IPV6_DEFAULT is always 1.
|
||||||
|
* Checking it is redundant, this *should* be doing ipv4 fallback
|
||||||
|
*/
|
||||||
if (ipv6 && m == NULL) {
|
if (ipv6 && m == NULL) {
|
||||||
fprintf(stderr, "IPv6 didn't initialize, trying IPv4\n");
|
fprintf(stderr, "IPv6 didn't initialize, trying IPv4\n");
|
||||||
m = tox_new(0);
|
m = tox_new(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user