From 55d7f000cdf9d4683caff71aea4f9d0cc0d13729 Mon Sep 17 00:00:00 2001 From: Josuah Demangeon Date: Mon, 12 Feb 2018 20:29:51 +0100 Subject: [PATCH] add headers to make it compile under OpenBSD - 'struct in6_addr' is defined in - 'AF_INET6' is defined in --- LICENSE | 1 + http.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/LICENSE b/LICENSE index b316f39..90778ad 100644 --- a/LICENSE +++ b/LICENSE @@ -6,6 +6,7 @@ Copyright 2004 Ted Unangst Copyright 2004 Todd C. Miller Copyright 2017 Hiltjo Posthuma Copyright 2017 Quentin Rameau +Copyright 2018 Josuah Demangeon Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/http.c b/http.c index 6f2b7c2..13a77b6 100644 --- a/http.c +++ b/http.c @@ -3,11 +3,13 @@ #include #include #include +#include #include #include #include #include #include +#include #include #include #include