Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- snmp
- telegraf
- centos pyhon 설치
- python os
- c3 second
- InfluxDB
- 1697
- semanage
- 정규식 활용
- subporcess path
- c++ 정규식
- 백준
- gcc regex
- gcc 업데이트
- python subprocess
- snmp test
- 정규식 문자열 출력
- linux시간으로 변경
- selinux port 등록
- CentOS7
- c3 축 없애기
- regex_search
- g++ 업데이트
- python popen
- grafana dashboard
- 정규식 컴파일
- c3 step graph
- c3 초
- influxdb 설치
- c3 축 가리기
Archives
- Today
- Total
리셋 되지 말자
파일 디스크립터와 소켓 본문
파일 생성, 소켓 생성과 반환되는 파일 디스크립터의 값 비교
fd_seri.c
#include<stdio.h>
#include<fcntl.h>
#include<unistd.h>
#include<sys/socket.h>
int main(void){
int fd1, fd2, fd3;
fd1=socket(PF_INET, SOCK_STREAM, 0);
fd2=open("test.dat", O_CREAT|O_WRONLY|O_TRUNC);
fd3=socket(PF_INET, SOCK_DGRAM, 0);
printf("file descriptor 1: %d\n", fd1);
printf("file descriptor 2: %d\n", fd2);
printf("file descriptor 3: %d\n", fd3);
close(fd1); close(fd2); close(fd3);
return 0;
}
결과화면
파일 디스크립터가 3부터 순서대로 할당되는것을 확인할 수 있다.
0, 1, 2는 표준 입출력에 이미 할당되었기 때문에 3부터 할당이 된다.
'socket' 카테고리의 다른 글
[windows] WORD, LPWSADATA (0) | 2020.04.03 |
---|---|
[window] socket 종속성 추가(visual studio) (0) | 2020.04.03 |
file write, read (linux gcc) (0) | 2020.04.03 |
[함수 설명]계속 업데이트 됨 (0) | 2020.04.03 |
socket 기본 server, client 소스 (0) | 2020.04.02 |
Comments