bomberstudent_server.c 438 B

1234567891011121314151617181920212223242526
  1. /*
  2. * File: bomberstudent_server.c
  3. * Author: Arthur Brandao
  4. *
  5. * Created on 14 novembre 2018
  6. */
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <pthread.h>
  10. #include "arraylist.h"
  11. #include "bomberstudent_server.h"
  12. /* --- Globale --- */
  13. arraylist get;
  14. arraylist post;
  15. /* --- Fonctions publiques --- */
  16. void ini_server(){
  17. arraylist_ini(&get);
  18. arraylist_ini(&post);
  19. }
  20. boolean launch_udp_server(int port){
  21. return false;
  22. }