일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- System.IndexOutOfRangeException
- url 파싱
- POST
- 정보처리기사 실기
- url파싱
- drop
- WinForms
- VisualStudio2019
- restapi
- c# 클로저
- multipart/form-data
- IndexOutOfRangeException
- 정처기
- show
- Git
- HeidiSQL
- git commit vi
- C#
- postgresql
- 프로토타입
- MFC
- create
- MariaDB
- c# for
- UI
- wss 파싱
- C# sprintf
- Telerik
- 정보처리기사
- 정처기 실기
- Today
- Total
목록전체 글 (35)
달짱달짱
출처 : http://www.ktword.co.kr/abbr_view.php?m_temp1=2437 TCP 제어 플래그 [정보통신기술용어해설] www.ktword.co.kr 참고 : https://pmj0403.tistory.com/entry/TCP-flagURG-ACK-PSH-RST-SYN-FIN TCP flag(URG, ACK, PSH, RST, SYN, FIN) TCP flag(URG, ACK, PSH, RST, SYN, FIN) TCP(Transmission Control Protocol)는 3-WAY Handshake 방식을 통해 두 지점 간에 세션을 연결하여 통신을 시작 하고 4-WAY Handshake를 통해 세션을 종료하여 통신을 종.. pmj0403.tistory.com TCP(Trans..
▶ libwebsockets 다운로드 ▶ CMake 다운로드 Download | CMake Current development distribution Each night binaries are created as part of the testing process. Other than passing all of the tests in CMake, this version of CMake should not be expected to work in a production environment. It is being produced so that us cmake.org ▶ pthread 설치 wnsgml972.github.io/c/2018/05/07/c_windows_pthread/ Windows에서 pthre..
* map - 헤더 : #include - 선언 : map mapName - 삽입 : mapName[key] = value * vector - 헤더 : #include - 선언 : vector vectorName - 전체 삭제 : vectorName.clear( ) - 삽입 : push_back(값) - 사이즈 : vectorName.size( ) #include #include #include #include using namespace std; map CountryMap; string FindCountryByFood(string FoodName){ //Food가 일치하는 Country 반환 map::iterator iter; string CountryName; for (iter = CountryMap..