rkimball commented on pull request #7766: URL: https://github.com/apache/tvm/pull/7766#issuecomment-809740846
On Windows where I am having issues 0.0.0.0, or really IN_ADDRANY in the sockaddr structure, is needed for a server socket, one that is listening for connections. This address will bind to all local address. This works on windows and I am able to connect from both local and remote machines to a windows tracker bound to 0.0.0.0. For client connections, any connection to a listening socket, on windows we can't use 0.0.0.0 as the target address. This works on linux but not on windows. So we are going to have a mix of addresses. For servers we must use 0.0.0.0 but clients we can't use that. For client connections we can use either 127.0.0.1 or localhost for any self-hosted server. -- 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. For queries about this service, please contact Infrastructure at: [email protected]
