Skip to content

Commit

Permalink
[BUILD] Add headers for Windows sockets (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
sdpetrides authored and litespeedtech committed Apr 13, 2019
1 parent 7e0bd43 commit 7cf121d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/liblsquic/lsquic_qlog.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,14 @@
#include <inttypes.h>
#include <string.h>
#include <sys/queue.h>
#ifdef WIN32
#include <Ws2tcpip.h>
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#endif

#include "lsquic.h"
#include "lsquic_types.h"
Expand Down

0 comments on commit 7cf121d

Please sign in to comment.