diff options
author | Luke Howard <lukeh@padl.com> | 2011-11-14 16:59:55 +1100 |
---|---|---|
committer | Luke Howard <lukeh@padl.com> | 2011-11-14 16:59:55 +1100 |
commit | ac17a556bd50969c8157d50761449b702afa4af8 (patch) | |
tree | 61900a1a4746f20c2debae948322ea07330a2d44 /lib/radius/client.h | |
parent | d6e790ddd52c0aa09af6e515d79d3a676c01fdad (diff) |
port new RADIUS library to Windows
Conflicts:
lib/configure.ac
lib/include/radsec/radsec.h
lib/radius/client.h
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 |