-
Notifications
You must be signed in to change notification settings - Fork 0
/
message.h
36 lines (28 loc) · 929 Bytes
/
message.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
/* Univerdidad:Universidad de La Laguna.
Grado: Grado de ingeniería informática.
Asignatura: Asignatura Sistemas Operativos (SSOO).
Autor: Alejandro Lugo Fumero.
Correo: [email protected]
Práctica nº: 2
Comentario: Este programa mediante un socket envía la información de un .txt
a otro socket guardando el mensaje en otro .txt.
Compilar: g++ -g -pthread -o Netcp file.cc netcp.cc socket.cc
Ejecutar: ./Netcp 'port' 'ip_address'
*/
#ifndef MESSAGE_H
#define MESSAGE_H
#include <netinet/in.h>
#include <sys/socket.h>
#include <array>
struct Message {
// Nuestra estructura va a poder almacenar 1024 caracteres.
std::array<char, 1024> text;
// Metodo que limpia nuestra estructura.
void clear () {
for (int travel = 0; travel < 1024; travel ++)
text[travel] = '\0';
}
uint32_t remote_ip;
in_port_t remote_port;
};
#endif