1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-24 19:21:35 +01:00

Use absolute include paths

Fixes #250
This commit is contained in:
Matias Fontanini
2017-09-21 20:48:57 -07:00
parent a7dd867503
commit a6817528bc
220 changed files with 917 additions and 919 deletions

View File

@@ -2,7 +2,7 @@
#include <cstring>
#include <string>
#include <stdint.h>
#include "macros.h"
#include <tins/macros.h>
#ifndef _WIN32
#include <sys/socket.h>
#ifdef BSD
@@ -11,9 +11,9 @@
#include <net/ethernet.h>
#endif
#endif
#include "loopback.h"
#include "ip.h"
#include "tcp.h"
#include <tins/loopback.h>
#include <tins/ip.h>
#include <tins/tcp.h>
using namespace std;
using namespace Tins;