lokinet/include/llarp/quic.h

22 lines
296 B
C
Raw Normal View History

2018-05-16 13:56:51 +00:00
#ifndef LLARP_QUIC_H_
#define LLARP_QUIC_H_
#include <llarp/link.h>
#ifdef __cplusplus
extern "C" {
#endif
struct llarp_quic_args
{
2018-05-16 13:56:51 +00:00
};
bool
quic_link_init(struct llarp_link* link, struct llarp_quic_args args,
struct llarp_msg_muxer* muxer);
2018-05-16 13:56:51 +00:00
#ifdef __cplusplus
}
#endif
#endif