]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[master] Add more missing includes (doesn't compile on OpenBSD otherwise)
authorMukund Sivaraman <muks@isc.org>
Thu, 15 Mar 2012 09:48:01 +0000 (15:18 +0530)
committerMukund Sivaraman <muks@isc.org>
Thu, 15 Mar 2012 11:19:43 +0000 (16:49 +0530)
src/bin/auth/auth_srv.cc
src/bin/resolver/resolver.cc
src/lib/server_common/tests/client_unittest.cc

index cb6ebfd0a3fe2d3fbfe3d5e3dec5a75eb037355a..2489945e1d5310fc40288d78a83f785e793e7a72 100644 (file)
@@ -14,6 +14,7 @@
 
 #include <config.h>
 
+#include <sys/types.h>
 #include <netinet/in.h>
 
 #include <algorithm>
index e7f242e96db8700be368d34588549687680b2ee1..711379ed3c8f808ff67252cd935c88408a3cbc24 100644 (file)
@@ -15,6 +15,7 @@
 #include <config.h>
 
 #include <stdint.h>
+#include <sys/types.h>
 #include <netinet/in.h>
 
 #include <algorithm>
index 287a92660eb56dc8dc9e7d0844f2170afde43f48..c8db846f95fcc40a1b9f1d43d4b01f6a1d53da31 100644 (file)
@@ -12,6 +12,7 @@
 // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 // PERFORMANCE OF THIS SOFTWARE.
 
+#include <sys/types.h>
 #include <sys/socket.h>
 #include <string.h>