gtpie: Add missing #include of <arpa/inet.h> for htonl() and friends

Change-Id: Id69d957d0860ee49e7f0db5c64ab8ba976f8c8d6
This commit is contained in:
Harald Welte 2017-10-13 15:57:48 +02:00
parent a964027344
commit 8376972050
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,8 @@
#ifndef _GTPIE_H
#define _GTPIE_H
#include <arpa/inet.h>
/* Macroes for conversion between host and network byte order */
#define hton8(x) (x)
#define ntoh8(x) (x)