Transceiver: Add missing include netinet/in.h

Previous commit started using IPPROTO_UDP without including required
include. Newer versions of libosmocore's osmocom/core/socket.h include
that header so the define is present, but older versions of libosmocore
(such as 0.12.0) don't, so let's include it explicitly (the correct
thing to do).

Fixes: b9d2515704
Change-Id: I67ddf550f3a7fc6a650e1e1d9bde0bbb28785104
This commit is contained in:
Pau Espin 2019-08-07 12:45:53 +02:00
parent c7ac63afa5
commit 27424a39ee
1 changed files with 1 additions and 0 deletions

View File

@ -24,6 +24,7 @@
*/
#include <stdio.h>
#include <netinet/in.h>
#include <iomanip> // std::setprecision
#include <fstream>
#include "Transceiver.h"