1 2 3 4 5 6 7 8 9 | CString GetIPFromSocket(SOCKET hSocket) { int nClientLength = sizeof ( struct sockaddr_in); SOCKADDR_IN clientAddress; getpeername(hSocket, ( struct sockaddr *)&clientAddress, &nClientLength); CString strClientIP(inet_ntoa(clientAddress.sin_addr)); return strClientIP; } |
320x100
'Windows > MFC' 카테고리의 다른 글
MFC, FileDialog를 호출하는 클래스. CFileDialog (0) | 2015.11.24 |
---|---|
MFC 리치에디터2.0 컨트롤의 내용을 txt파일로 저장 (0) | 2015.01.23 |
MFC 리치에디터2.0 자동 스크롤 함수 (0) | 2015.01.23 |
MFC 리치에디터2.0 마지막 줄에 텍스트 추가하기 (0) | 2015.01.23 |
MFC 리치에디터2.0 다이얼로그에서 사용시 주의 할 것. (0) | 2015.01.23 |
댓글