-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicslab2_net.h
38 lines (34 loc) · 1.31 KB
/
icslab2_net.h
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
32
33
34
35
36
37
38
/* -*- mode: c; coding: utf-8-unix; ##: nil; -*- */
/* */
/* FILENAME : ics_lab2_net.h */
/* DESCRIPTION : UDP/TCP common header */
/* DATE : Sep. 01, 2020 */
/* UPDATE : */
/* */
/*-------------------------- <include> ----------------------------*/
#ifndef ICSLAB2_NET_H
#define ICSLAB2_NET_H
#include <arpa/inet.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/epoll.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <unistd.h>
/*-------------------------- <define> ----------------------------*/
/* UDP Echo Serverのポート番号 */
#define UDP_SERVER_PORT (unsigned short)10000
#define UDP_SERVER_PORT_STR "10000"
/* TCP Echo Serverのポート番号 */
#define TCP_SERVER_PORT (unsigned short)10000
#define TCP_SERVER_PORT_STR "10000"
/* Server名 暫定的に自ホストとしている */
#define SERVER_HOSTNAME "localhost"
#define SERVER_IP_ADDR_STR "127.0.0.1"
/* バッファ長 */
#define BUF_LEN 1000
#endif