controla y usa los sockets con facilidad, captura o lanza peticiones a direcciones IP o en localhost! transmite informacion con facilidad por la red
control and use sockets with ease, capture or launch requests to IP addresses or localhost! transmit information with ease over the network
├── Makefile
└── src
├── client.cpp
└── server.cpp
make file=server route=folder_server
or
make file=client route=folder_client
result
── folder_server
├── app
└── objects
├── mgsockets.d
├── mgsockets.o
├── server.d
└── server.o
── folder_client
├── app
└── objects
├── client.d
├── client.o
├── mgsockets.d
└── mgsockets.o
RUN
./server/app
./client/apo