diff options
Diffstat (limited to 'lib/radius/client.h')
-rw-r--r-- | lib/radius/client.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/lib/radius/client.h b/lib/radius/client.h index 6c1526d..aefb40d 100644 --- a/lib/radius/client.h +++ b/lib/radius/client.h @@ -35,21 +35,31 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. /* * System-specific header files. */ +#include <config.h> #include <errno.h> #include <stdio.h> +#ifdef HAVE_STDINT_H #include <stdint.h> +#endif +#ifdef HAVE_STDLIB_H #include <stdlib.h> +#endif +#ifdef HAVE_STRING_H #include <string.h> +#endif #include <stdarg.h> +#ifdef HAVE_NETDB_H #include <netdb.h> +#endif +#ifdef HAVE_NETINET_IN_H #include <netinet/in.h> +#endif +#ifdef HAVE_SYS_TIME_H #include <sys/time.h> +#endif #include <radsec/radsec.h> - -/* - * Definitions of attributes. - */ +#include <radsec/radsec-impl.h> #include <radsec/radius.h> /** \defgroup build Build Helpers |