Socket bind failed errno = 99
问题 I'm trying to bind the server socket so I can receive and listen for incoming messages from other clients. But I can't bind, it returns an error - Socket bind failed: 99. I read up what does it mean and it says that errno 99 indicates that the socket does not exist? Any ideas? Thanks UDP_socketID = socket(AF_INET, SOCK_DGRAM, 0); if (UDP_socketID < 0) { printf("Socket creation failed! Error = %d\n\n", errno); exit(0); } //specify server address, port and IP bzero((char *)&serverAddr, sizeof