You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/dtls.h

22 lines
370 B
C

#ifndef LLARP_DTLS_H_
#define LLARP_DTLS_H_
#include <llarp/mem.h>
#include <llarp/link.h>
#ifdef __cplusplus
extern "C" {
#endif
struct llarp_dtls_args {
struct llarp_alloc * mem;
char key_file[255];
char cert_file[255];
};
void dtls_link_init(struct llarp_link* link, struct llarp_dtls_args args,
struct llarp_msg_muxer* muxer);
#endif