特定のポートで着信接続をリッスンするために、新しいソケットをコンピューターのアドレスにバインドするように設計されたコードを作成しました。getaddrinfo を使用しています。これが最善の方法ですか?ポート整数を文字列に変換するのは無意味に思えます。sprintf を必要とせずにこれを行う方法はありますか?
bool CBSocketBind(void * socketID,u_int16_t port){
struct addrinfo hints,*res,*ptr;
int socketIDInt;
// Set hints for the computer's addresses.
memset(&hints, 0, sizeof(hints));
hints.ai_flags = AI_PASSIVE;
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
// Get host for listening
char portStr[6];
sprintf(portStr, "%u",port);
if (getaddrinfo(NULL, portStr, &hints, &res) != 0)
return false;
// Attempt to bind to one of the addresses.
for(ptr = res; ptr != NULL; ptr = ptr->ai_next) {
if ((socketIDInt = socket(ptr->ai_family, ptr->ai_socktype,ptr->ai_protocol)) == -1)
continue;
if (bind(socketIDInt, ptr->ai_addr, ptr->ai_addrlen) == -1) {
close(socketIDInt);
continue;
}
break; // Success.
}
freeaddrinfo(res);
if (ptr == NULL) // Failure
return false;
socketID = malloc(sizeof(int));
*(int *)socketID = socketIDInt; // Set socket ID
// Make socket non-blocking
fcntl(socketIDInt,F_SETFL,fcntl(socketIDInt,F_GETFL,0) | O_NONBLOCK);
return true;
}