include: get netinet/in.h before linux/tcp.h

... to allow build on older Linux dists (specifically CentOS 4.8 on gcc
4.8.5)

Closes #2160
This commit is contained in:
Per Malmberg 2017-12-06 09:11:05 +01:00 коммит произвёл Daniel Stenberg
Родитель 00cda0f9b3
Коммит c103cac3c8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
2 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -22,6 +22,10 @@
#include "curl_setup.h"
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_LINUX_TCP_H
#include <linux/tcp.h>
#endif

Просмотреть файл

@ -26,6 +26,10 @@
#include <limits.h>
#endif
#ifdef HAVE_NETINET_IN_H
#include <netinet/in.h>
#endif
#ifdef HAVE_LINUX_TCP_H
#include <linux/tcp.h>
#endif