Skip to content

Commit

Permalink
Added ws2tcpip.h for inet_ntop
Browse files Browse the repository at this point in the history
  • Loading branch information
Benoit authored and Benoit committed Dec 20, 2023
1 parent 7ce9d4b commit 1c76da5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion wirego_plugin/packet-wirego.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
#include <wsutil/str_util.h>
#include <wsutil/report_message.h>
#include <wsutil/wslog.h>
#include <arpa/inet.h>
#ifdef WIN32
#include <ws2tcpip.h>
#else
#include <arpa/inet.h>
#endif
#include "plugin-loader.h"
#include "packet-wirego.h"

Expand Down

0 comments on commit 1c76da5

Please sign in to comment.