Skip to content

Commit c48fb0a

Browse files
committed
BSD compatibility fixes
1 parent e7459ff commit c48fb0a

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

context.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#include <getdns/getdns_extra.h>
3131
#include <arpa/inet.h>
3232
#include <sys/wait.h>
33+
#include <sys/socket.h>
3334
#include "pygetdns.h"
3435

3536
int
@@ -630,7 +631,7 @@ context_set_dns_root_servers(getdns_context *context, PyObject *py_value)
630631
PyObject *str;
631632
getdns_dict *addr_dict;
632633
int domain;
633-
unsigned char buf[sizeof(struct in6_addr)];
634+
unsigned char buf[IPv6_ADDR_SIZE];
634635

635636
if (!PyList_Check(py_value)) {
636637
PyErr_SetString(getdns_error, GETDNS_RETURN_INVALID_PARAMETER_TEXT);

pygetdns.h

+2
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838
#define GETDNS_STR_IPV4 "IPv4"
3939
#define GETDNS_STR_IPV6 "IPv6"
4040

41+
#define IPv6_ADDR_SIZE 16
42+
4143
#if !defined(UNUSED_PARAM)
4244
# define UNUSED_PARAM(x) ((void)(x))
4345
#endif

pygetdns_util.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@
3535
#include <arpa/inet.h>
3636
#include <stdio.h>
3737
#include <string.h>
38+
#include <sys/types.h>
39+
#include <sys/socket.h>
40+
#include <netinet/in.h>
41+
#include <arpa/inet.h>
3842
#include <getdns/getdns.h>
3943
#include <getdns/getdns_extra.h>
4044
#include "pygetdns.h"
@@ -369,7 +373,7 @@ getdns_dict *
369373
getdns_bindata addr_data;
370374
getdns_bindata addr_type;
371375
PyObject *str;
372-
unsigned char buf[sizeof(struct in6_addr)];
376+
unsigned char buf[IPv6_ADDR_SIZE];
373377
int domain;
374378
getdns_bindata tls_auth_name;
375379
getdns_bindata scope_id;

0 commit comments

Comments
 (0)