IP 썸네일형 리스트형 내 컴퓨터의 아이피주소를 얻는 함수 CString GetMyIP() { CString ipAddr; WSADATA wsaData; WORD wVersionRequested = MAKEWORD( 2, 0 ); if( WSAStartup( wVersionRequested, &wsaData ) == 0 ) { char name[256]; if( gethostname( name, sizeof( name ) ) == 0 ) { PHOSTENT hostinfo = gethostbyname( name ); if( hostinfo != NULL) { ipAddr = inet_ntoa( *( struct in_addr* ) *hostinfo->h_addr_list ); } } WSACleanup(); } return ipAddr; } 출처 : http:/.. 더보기 이전 1 2 3 다음