bneradt commented on code in PR #10743: URL: https://github.com/apache/trafficserver/pull/10743#discussion_r1385914059
########## iocore/net/Connection.cc: ########## @@ -390,6 +385,7 @@ Server::listen(bool non_blocking, const NetProcessor::AcceptOptions &opt) fd = NO_FD; } - Error("Could not bind or listen to port %d (error: %d)", ats_ip_port_host_order(&addr), res); + Fatal("Could not bind or listen to port %d, mptcp enabled: %d (error: %d) %s %d", ats_ip_port_host_order(&addr), + prot == IPPROTO_MPTCP, errno, strerror(errno), res); Review Comment: This makes sense. If you configured to listen on a port and can't, probably best to Fatal. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@trafficserver.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org