-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsend_binary_client.cpp
103 lines (71 loc) · 1.74 KB
/
send_binary_client.cpp
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
* NCYU 109 Network Programming
* Exercise 6: tcp send binary client
* Created by linwebs on 2021/5/3.
*/
#include <iostream>
#include <cstdio>
#include <winsock.h>
#define MAXSIZE 1024
using namespace std;
int main() {
SOCKET sd;
WSADATA wsadata;
struct sockaddr_in serv{};
FILE *file_in;
char buffer[MAXSIZE];
// server's ip address
const char server_ip[16] = "127.0.0.1";
// server's port number
u_short server_port = 5678;
// connect status
int conn_status;
// serv bytes
int serv_len;
// send bytes
int send_len;
// file size
int file_size = 0;
// Include sockaddr_ing struct (serv)
serv.sin_family = AF_INET;
// server's ip address
serv.sin_addr.s_addr = inet_addr(server_ip);
// server's port number
// htons: host to network
serv.sin_port = htons(server_port);
// read file
file_in = fopen("in.jpg", "rb");
// Call WSAStartup() to Register "WinSock DLL"
WSAStartup(0x101, (LPWSADATA) &wsadata);
// Open a TCP socket
sd = socket(AF_INET, SOCK_STREAM, 0);
cout << "sd: " << sd << endl;
serv_len = sizeof(serv);
// connect to server
conn_status = connect(sd, (struct sockaddr *) &serv, serv_len);
if (conn_status == SOCKET_ERROR) {
cout << "connect function failed with error: " << WSAGetLastError() << endl;
closesocket(sd);
WSACleanup();
return 1;
}
cout << "connect: " << conn_status << endl;
// loop get string from file
while (true) {
file_size = fread(buffer, 1, MAXSIZE, file_in);
if (file_size <= 0) {
break;
}
// send to server
send_len = send(sd, buffer, file_size, 0);
cout << "send: " << send_len << " bytes" << endl;
}
// close file
fclose(file_in);
// close TCP socket
closesocket(sd);
// finish "WinSock DLL"
WSACleanup();
//system("pause");
return 0;
}