Allow binding to v4 and v6 addresses always

master
Dirk Engling 6 months ago
parent 2afc4893bf
commit 7c3279a028

@ -331,16 +331,6 @@ static void * server_mainloop( void * args ) {
static int64_t ot_try_bind( ot_ip6 ip, uint16_t port, PROTO_FLAG proto ) {
int64 sock = proto == FLAG_TCP ? socket_tcp6( ) : socket_udp6( );
#ifndef WANT_V6
if( !ip6_isv4mapped(ip) ) {
exerr( "V4 Tracker is V4 only!" );
}
#else
if( ip6_isv4mapped(ip) ) {
exerr( "V6 Tracker is V6 only!" );
}
#endif
#ifdef _DEBUG
{
char *protos[] = {"TCP","UDP","UDP mcast"};

Loading…
Cancel
Save