Changeset 17 in Main for trunk/Server/http.c


Ignore:
Timestamp:
Sep 14, 2024, 2:41:07 AM (2 months ago)
Author:
Nishi
Message:

module system kinda works

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/http.c

    r16 r17  
    1212#include <stdbool.h>
    1313#include <stdlib.h>
    14 #include <sys/socket.h>
     14#include <string.h>
     15
     16#ifdef __MINGW32__
     17#include <winsock2.h>
     18#else
     19#include <sys/select.h>
     20#endif
    1521
    1622void tw_free_request(struct tw_http_request* req) {
Note: See TracChangeset for help on using the changeset viewer.