struct addrinfo *myAddrinfo, *curMyAddrinfo, hint;
memset(&hint, 0, sizeof(struct addrinfo));
hint.ai_family = AF_INET;
hint.ai_protocol = AI_PASSIVE;
hint.ai_socktype = SOCK_STREAM;
const int code = getaddrinfo(NULL, SERVER_PORT, &hint, &myAddrinfo);
if ((code) != 0) {
printf("getaddrinfo error occours: %s ",
gai_strerror(code));
return 1;
}
これにより、「ai_socktypeがサポートされていません」というエラーが表示されますが、コメントアウトするとうまくいきますhint.ai_protocol = AI_PASSIVE;
が、なぜそれが起こるのでしょうか?
御時間ありがとうございます