-
Notifications
You must be signed in to change notification settings - Fork 0
/
socket.h
33 lines (25 loc) · 851 Bytes
/
socket.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
/* 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'
*/
#pragma once
#include "message.h"
#include <arpa/inet.h>
#include <unistd.h>
#include <iostream>
class Socket {
public:
Socket(const sockaddr_in& address);
~Socket();
void SendTo(const Message& message, const sockaddr_in& address);
void ReceiveFrom(Message& message, sockaddr_in& address);
private:
int fd_;
};