-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient.cpp
68 lines (50 loc) · 2.05 KB
/
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
//https://causeyourestuck.io/2016/01/17/socket-cc-windows/
#include <iostream>
#include <winsock2.h>
using namespace std;
int main()
{
//==================*/
WSADATA WSAData;
SOCKET server;
SOCKADDR_IN addr;
//hostent *host = gethostbyname(HOSTNAME_CSTR);
WSAStartup(MAKEWORD(2,0), &WSAData);
server = socket(AF_INET, SOCK_STREAM, 0);
char addresser[16];
cout << "IP: ";
cin.clear();
cin >> addresser;
if(addresser[0]=='m'&&addresser[1]=='e')
addr.sin_addr.s_addr = inet_addr("127.0.0.1"); // replace the ip with your futur server ip address. If server AND client are running on the same computer, you can use the local ip 127.0.0.1
else
addr.sin_addr.s_addr = inet_addr(addresser); // replace the ip with your futur server ip address. If server AND client are running on the same computer, you can use the local ip 127.0.0.1
//sock.sin_addr.s_addr = ((struct in_addr *)(host->h_addr))->s_addr;
addr.sin_family = AF_INET;
addr.sin_port = htons(55555);
if(!connect(server, (SOCKADDR *)&addr, sizeof(addr))){
cout << "Connected to server!" << endl;
cout << "What is your Message?" << endl;
char buffer[1024];
cin.ignore();
cin.get(buffer, 1024);
send(server, buffer, sizeof(buffer), 0);
while(strcmp(buffer,"/quit")){
cout << "Message sent!" << endl;
recv(server, buffer, sizeof(buffer), 0);
if(strcmp(buffer,"/quit")){
cout << "Server says:\n" << buffer << endl;
cout << "\nWhat is your Message?" << endl;
memset(&buffer[0], 0, sizeof(buffer));
cin.ignore();
cin.get(buffer, 1024);
send(server, buffer, sizeof(buffer), 0);
}
}
memset(buffer, 0, sizeof(buffer));
}
closesocket(server);
WSACleanup();
cout << "Socket closed." << endl << endl;
system("pause");
}