Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 798 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 798 Bytes

Remote-Command-Server

Remote command server using TCP and UDP as transport protocol. Client interact with server sending some specifics commands and server hold that, process, and send back to client an response. The server logs all the commands that were sent by the client.

Differences between TCP and UDP

alt text

File structure

--udp
|---cliente.c
|---local.h
|---servidor.c

--tcp
|---cliente.c
|---local.h
|---servidor.c

Structure description

local.h

Header file that include another headers and specify port and buffer size configurations.

servidor.h

Server that receive commands and execute then.

cliente.h

Client that send commands to the server.