티스토리 뷰
#include <stdio.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#define ECHOMAX 255
void DieWithError(char *errorMessage);
int main(int argc, char *argv[])
{
int sock;
struct sockaddr_in echoServAddr;
struct sockaddr_in echoClntAddr;
unsigned int cliAddrLen;
char echoBuffer[ECHOMAX];
unsigned short echoServPort;
int recvMsgSize;
if (argc != 2)
{
fprintf(stderr,"Usage: %s <UDP SERVER PORT> \n", argv[0]);
exit(1);
}
echoServPort = atoi(argv[1]);
if ((sock = socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP)) < 0)
DieWithError("socket() failed");
memset(&echoServAddr, 0, sizeof(echoServAddr));
echoServAddr.sin_family = AF_INET;
echoServAddr.sin_addr.s_addr = htonl(INADDR_ANY);
echoServAddr.sin_port = htons(echoServPort);
if (bind(sock, (struct sockaddr *) &echoServAddr, sizeof(echoServAddr)) < 0)
DieWithError("bind() failed");
for (;;)
{
cliAddrLen = sizeof(echoClntAddr);
if ((recvMsgSize = recvfrom(sock, echoBuffer, ECHOMAX, 0,
(struct sockaddr *) &echoClntAddr, &cliAddrLen)) < 0)
DieWithError("recvfrom() failed");
printf("Handling client %s \n", inet_ntoa(echoClntAddr.sin_addr));
if (sendto(sock, echoBuffer, recvMsgSize, 0,
(struct sockaddr *) &echoClntAddr, sizeof(echoClntAddr)) != recvMsgSize)
DieWithError("sendto() sent a different number of bytes than expected");
}
}
'Web & Network' 카테고리의 다른 글
자바스크립트 자동 새로고침 (984) | 2015.09.29 |
---|---|
멀티태스킹(Multi tasking) (1366) | 2013.11.11 |
신호(Signals) (1329) | 2013.11.04 |
소켓옵션들 (1081) | 2013.10.28 |
tcp/ip 소켓 프로그래밍 함수 소개 (1097) | 2013.09.16 |
- Total
- Today
- Yesterday
- Sublime Text 2
- 사이버테러
- 파이썬
- 자바스크립트
- www
- hackerschool
- 웹
- FTZ
- exploit
- python
- 해커스쿨
- 문제풀이
- writeup
- 분석
- DoH
- 프로그래밍
- CloudFlare
- DNSOverHTTPS
- BOF
- 악성코드
- CK Exploit Kit
- CODEGATE 2014
- TISTORY
- 웨일브라우저
- 스크립트
- Wargame
- network
- 티스토리
- 프로그래밍 언어
- 개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |