-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPEX2Client.h
More file actions
36 lines (28 loc) · 748 Bytes
/
PEX2Client.h
File metadata and controls
36 lines (28 loc) · 748 Bytes
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
/** PEX2Client.h
* ===========================================================
* Name: CS468, Fall 2019
* Project: PEX1_Client
* Purpose: Implementation of Client Server Music Streaming
* Communication
* Of note: Dr. Coffman said to never include a name so
* ===========================================================
*/
#ifndef PEX2_PEX2_H
#define PEX2_PEX2_H
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdbool.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <netinet/in.h>
#include <errno.h>
#include <sys/time.h>
#include "tcp_funcitons.h"
#define PORT 4240
#define MAXLINE 600
#define PAUSE 5
#endif //PEX2_PEX2_H