전체보기51 asio 타이머 핸들링 예제 #include #include #include #include #include #include #include std::mutex global_stream_lock; void WorkerThread(std::shared_ptr iosvc, int counter){global_stream_lock.lock();std::cout 2018. 4. 17. asio io_service 한방이해 #include #include #include #include #include asio::io_service io_svc;int a = 0; void WorkerThread(){std::cout 2018. 4. 15. 네트워크 트러블슈팅 - 깨알 팁 윈도우 기준으로 깨알 팁을 생각날 때 마다 적도록 한다. ">" 명령 구문으로 출력 위치를 지정할 수 있다. 예시) C:\Users\jwqe764241>tree > ./Desktop/ddd.txt - 실행하게 되면 바탕화면에 ddd.txt 파일 안에 tree의 출력데이터가 작성되어 있다. C:\Users\jwqe764241>ipconfig > ./Desktop/ddd.txt - 실행하게 되면 ipconfig 프로그램의 출력 데이터가 ddd.txt에 출력된다. findstr로 문자열을 찾을 수 있다. C:\Users\jwqe764241>netstat -an | findstr "1900" UDP 127.0.0.1:1900 *:* UDP 172.18.155.145:1900 *:* UDP 172.30.1.33:.. 2018. 4. 10. 네트워크 트러블슈팅 - netstat netstat도 아주 많이쓰이는 프로그램이다. netstat은 network statistics 이고, 해석하자면 네트워크 통계라고 할 수 있다. netstat은 네트워크의 통계를 볼 때 사용하는 프로그램이다. 기본적인 실행은 다음과 같다. netstat 활성 연결 프로토콜 로컬 주소 외부 주소 상태 TCP 127.0.0.1:20325 www:65001 ESTABLISHED TCP 127.0.0.1:20382 www:20397 ESTABLISHED TCP 127.0.0.1:20397 www:20382 ESTABLISHED TCP 127.0.0.1:65001 www:20325 ESTABLISHED TCP 172.30.1.33:20346 52.230.80.159:https ESTABLISHED TCP 172.. 2018. 4. 9. 이전 1 ··· 6 7 8 9 10 11 12 13 다음