diff options
author | venaas <venaas> | 2008-08-21 07:11:59 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-08-21 07:11:59 +0000 |
commit | 230b3daa9734ba0c62f24e606137a3bdbc8ec340 (patch) | |
tree | 927bb31e3e0d224826f063cab8a474a39e070c4a /dtls.h | |
parent | 7f07d072c89ee15fe828f6586d05d1ad07d3ba2c (diff) |
separated dtls into a separate file
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@347 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'dtls.h')
-rw-r--r-- | dtls.h | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +/* + * Copyright (C) 2008 Stig Venaas <venaas@uninett.no> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + */ + +void *udpdtlsserverrd(void *arg); +int dtlsconnect(struct server *server, struct timeval *when, int timeout, char *text); +void *dtlsservernew(void *arg); +void *dtlsclientrd(void *arg); +void *udpdtlsclientrd(void *arg); +int clientradputdtls(struct server *server, unsigned char *rad); |