gtp: Add missing headers

Those headers are using types defined in other places (like sockaddr_in)
and don't explicitly include them, which makes future queue_test fail.

Change-Id: I65e12a067d89ef71be3719636b64f4d93ea73cc4
This commit is contained in:
Pau Espin 2019-06-20 17:06:13 +02:00
parent f0829ff34b
commit 8b90bce962
2 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@
#define _PDP_H
#include <stdbool.h>
#include <netinet/in.h>
#include <osmocom/core/defs.h>

View File

@ -17,6 +17,8 @@
#ifndef _QUEUE_H
#define _QUEUE_H
#include "gtp.h"
#define QUEUE_DEBUG 0 /* Print debug information */
#define QUEUE_SIZE 1024 /* Size of retransmission queue */