Bottler Proxy
Go to file
Santiago Lo Coco 23ee49e49f Add socks5 authentication, UDP config, cmd (parser) and client
Co-authored-by: Ezequiel Bellver <ebellver@itba.edu.ar>
Co-authored-by: Juan Barmasch <jbarmasch@itba.edu.ar>
2022-06-14 15:57:53 -03:00
docs Add socks5 authentication, UDP config, cmd (parser) and client 2022-06-14 15:57:53 -03:00
include Add socks5 authentication, UDP config, cmd (parser) and client 2022-06-14 15:57:53 -03:00
src Add socks5 authentication, UDP config, cmd (parser) and client 2022-06-14 15:57:53 -03:00
.gitignore Add socks5 authentication, UDP config, cmd (parser) and client 2022-06-14 15:57:53 -03:00
LICENSE.md Add initial files 2022-05-28 15:34:03 -03:00
Makefile Add socks5 authentication, UDP config, cmd (parser) and client 2022-06-14 15:57:53 -03:00
README.md Add initial files 2022-05-28 15:34:03 -03:00

README.md

BProxy

BProxy (Bottler Proxy)

Tabla de contenidos

Requisitos

Debe instalar gcc y make. Estos se encuentran disponibles en el repositorio de la vasta mayoría de distribuciones de Linux/macOS.

Compilación

Para compilar todos los archivos se debe hacer:

make all

Ejecución

Ahora, tendrá dos ejecutables: client y server. Note que primero debe correr el server y luego conectarse con el client.

./server

y en otra terminal

./client

Testeos

En orden de realizar un análisis estático del sistema usted debe tener instalado cppcheck y pvs-studio. Luego, puede correrlos con:

make test

Por último, si quiere hacer un análisis dinámico (usando valgrind) puede hacerlo mediante:

valgrind ./server

y en otra terminal

valgrind ./client

Limpieza

Si desea borrar los archivos creados luego de la compilación debe correr:

make clean

Note que si, además, quiere borrar el output de los tests (de PVS-Studio específicamente), lo puede hacer con:

make cleanTest

Autores

  • Barmasch, Juan Martín (61033)
  • Bellver, Ezequiel (61268)
  • Lo Coco, Santiago (61301)