일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- QTcpServer
- 등록임대주택
- lua for windows
- 엑스퍼트2주년
- 청량리역한양수자인192
- file open
- QT TCP
- C++ API
- object
- 찾다죽는줄
- lua interpreter
- file read
- 국토교통부
- 티몬삼겹살데이
- 월세
- 엑스퍼트생일축하해
- FILE TRANSFER
- 프리미어 영상변환
- 중소규모택지
- #신혼부부 #결혼준비 #신혼부부희망타운신혼부부특별공급
- TCP/IP
- #부동산전자거래 #부동산전자계약 #부동산계약 #부동산전자계약방법 #부동산전자계약하는법 #부동산계약방법 #부동산중개수수료 #부동산중개수수료아끼기 #부동산복비아끼기
- C API
- file write
- lua install
- Lua
- lua setup
- meta table
- 수도권주택공급
- 프리미어 영상저장
- Today
- Total
목록1. 프로그래밍 (95)
Value Creator의 IT(프로그래밍 / 전자제품)
1. TCP 서버 함수 호출 순서 socket() --> bind() --> listen() --> accept() --> read()/write() --> close() 소켓 생성 --> 소켓 주소 할당 --> 연결요청 대기 --> 연결 허용 --> 데이터 송,수신 --> 연결 종료 #include int listen(int sock, int backlog); 성공시 0, 실패시 -1 반환 연결요청도 일종의 데이터 전송이다. 따라서 연결요청을 받아들이기 위해서도 하나의 소켓이필요하다. 그리고 이 소켓을 가리켜 서버소켓 또는 리스닝 소켓이다. listen 함수의 호출은소켓을 리스닝 소켓이 되게 한다. #include int accept(int sock, struct sockaddr * addr, sock..
#include #include #include int main(int argc, char *argv[]) { struct sockaddr_in addr1, addr2; char *str_ptr; char str_arr[20]; addr1.sin_addr.s_addr=htonl(0x1020304); addr2.sin_addr.s_addr=htonl(0x1010101); str_ptr=inet_ntoa(addr1.sin_addr); strcpy(str_arr, str_ptr); printf("Dotted-Decimal notation1: %s \n", str_ptr); inet_ntoa(addr2.sin_addr); printf("Dotted-Decimal notation2: %s \n", str_ptr)..
tcp_server.c #include #include #include #include #include #include #include void error_handling(char *message); int main(int argc, char *argv[]) { int serv_sock; int clnt_sock; struct sockaddr_in serv_addr; //서버의 소켓 구조체 생성 struct sockaddr_in clnt_addr; //클라이언트의 소켓 구조체 생성 socklen_t clnt_addr_size; //클라이언트 주소의 소켓 길이 char message[]="Hello World!"; if(argc!=2){ printf("Usage : %s \n", argv[0]); exit..
low_open.c #include #include #include #include void error_handling(char* message); int main(void) { int fd; //파일 디스크립터 선언 char buf[]="Let's go!\n";//문자열 선언 fd=open("data.txt", O_CREAT|O_WRONLY|O_TRUNC);//data.txt라는 파일생성, 쓰기only if(fd==-1) //읽기 에러 표시 error_handling("open() error!"); printf("file descriptor: %d \n", fd); //파일디스크립터 번호 출력 if(write(fd, buf, sizeof(buf))==-1) //쓰기 에러 표시 error_handling..
hello_server.c #include #include #include #include #include #include void error_handling(char *message); //에러 핸들링 함수 int main(int argc, char* argv[]) { int sock; //소켓이 반환하는 정수값 struct sockaddr_in serv_addr; //소켓 주소 구조체 선언 char message[30]; //메세지를 30개 크기의 문자열로 받는다. int str_len; //문자열의 길이 정수값 if(argc!=3){ printf("Usage : %s \n", argv[0]); exit(1); } //프로그램 IP Port
가장 완전한 main문은 main (int argc, char* argv[], char* env[]) 의 형식을 가지며 뒤에서부터 생략이 가능하다. argc - argument count argv - argument value env - environmental (variable?) 먼저 대충 이런 뜻으로 생각하면 의미가 잘 맞아 떨어지는 듯 하다. 각각의 역할을 알아보면 argc 프로그램을 시작했을 때 전해지는 인자의 갯수. 함수 호출시에 인자를 넘기는 것 처럼 프로그램을 시작할 때 인자를 넘길 수 있다. 첫번째 인수는 실행파일의 경로로 고정되어 있어서 인자가 하나도 전달되지 않았을때의 값이 1이다. argv 프로그램이 시작되었을때 넘겨받은 인자. 데이터 타입에서 알 수 있듯이 모든 정보를 문자열로 처..
super는 윈도우 키 인가? 창 옮기기 컨트롤 알트 방향키 (상하좌우) Ubuntu 16.04 LTS Desktop을 기준으로 기본으로 설정되어 있는 단축키를 정리한다. 이것만 알아두어도 꽤나 편리하게 데스크탑을 사용할 수 있다. 참고로 KP0는 숫자패드(keypad) 0를 의미한다. System ctrl alt l: 화면 잠금 ctrl alt del: 로그 아웃 Windows alt tab: 다른 창 활성화 alt `: 같은 프로그램 내의 다른 창 활성화 ctrl super up: 창 크기 최대화 ctrl super down: 창 크기를 최소화하거나, 최대화된 창의 크기를 되돌리기 ctrl alt KP5: 창의 최대화 on/off ctrl alt KP0: 창 크기 최소화 ctrl alt s: 쉐이드 ..
https://www.slideshare.net/einsub/svn-git-17386752