12345678910111213141516171819202122 |
- /*
- * File: bomberstudent_server.h
- * Author: Arthur Brandao
- *
- * Created on 14 novembre 2018
- */
- #ifndef BOMBERSTUDENT_SERVER_H
- #define BOMBERSTUDENT_SERVER_H
- /* --- Include --- */
- #include "constante.h"
- /* --- Constantes --- */
- #define PORT_UDP 18624
- #define PORT_TCP 18642
- /* --- Fonctions --- */
- boolean launch_udp_server(int);
- #endif /* BOMBERSTUDENT_SERVER_H */
|