본문 바로가기

반응형

개발 노트/C , C++

(3)
[Socket] Get socket information by socket descriptor : getsockname() How to get the TCP Client Port number by Socket Descripter? ► getsockname() function (man_page) return the socket information on second parameter by socket descripter in frisrt parameter 1. Write test.cpp #include #include #include #include #include #include int main() { char strIP[16] = {0,}; unsigned short usPort = 0;; struct sockaddr_in server_addr, my_addr; int sockfd = -1; // default Error ..
[C++ Library] JsonCPP vs Rapid Json C++ Json Library 사용하기 위해 조사한 결과 크게 2가지가 있다.JsonCPP : http://jsoncpp.sourceforge.net/roadmap.htmlRapid Json : http://rapidjson.orgJsonCPP 와 RapidJson 라이브러리는 C++ 로 되어있는 라이브러리 중 가장 인기 있는 2가지 인것으로 보인다. 아래는 다른 사람들이 조사한 다른 라이브러리들 비교 정리해놓은 링크이다.http://jason-heo.github.io/programming/2012/03/06/jsoncpp1.htmlhttps://blog.thousandeyes.com/efficiency-comparison-c-json-libraries/ Json Library 선택 하기 위한 요소로는커..
MFC와 CppSQLite3U 연동방법 개발 환경 : MFC개발 Tool : Visual Studio 2013 Professional 1.1. SQLite 와 MFC 연동방법(1) http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite 위 사이트에서 CppSQLite 3.2 demo projects를 다운한다. http://softvoile.com/development/CppSQLite3U/위 사이트에서 CppSQLite3U를 다운한다. (2) 압축을 푼 후 Common폴더를 확인한다.Common폴더에서 CppSQLite3.cpp와 CppSQLite3.h 대신에 두 번째로 다운받은 CppSQLite3U.cpp와 CppSQLite3U.h를 사용한다. CppSQLite3U...

반응형