Skip to content

Commit a471054

Browse files
authored
Merge pull request #193 from CESNET/openwrt_fix
openwrt: add missing include of time.h
2 parents cfc02c2 + 5ce7859 commit a471054

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

include/ipfixprobe/packet.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434

3535
#include <stdint.h>
3636
#include <stdlib.h>
37+
#include <sys/time.h>
3738

3839
#include <ipfixprobe/ipaddr.hpp>
3940
#include <ipfixprobe/flowifc.hpp>

include/ipfixprobe/rtp.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include <inttypes.h>
22
#include <limits>
3+
#include "byte-utils.hpp"
34

45
struct __attribute__((packed)) rtp_header {
56
union {

include/ipfixprobe/utils.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#include <algorithm>
3939
#include <stdexcept>
4040
#include <cstdint>
41+
#include <sys/time.h>
4142

4243
namespace ipxp {
4344

0 commit comments

Comments
 (0)