lokinet/include/llarp/obmd.h

30 lines
653 B
C
Raw Normal View History

2018-01-27 01:18:10 +00:00
#ifndef LLARP_OBMD_H_
#define LLARP_OBMD_H_
#include <llarp/buffer.h>
#include <llarp/crypto.h>
#include <stdbool.h>
#ifdef __cplusplus
extern "C" {
#endif
2018-01-29 14:27:24 +00:00
// forward declair
struct llarp_link;
struct llarp_link_dispatcher;
struct llarp_link_dispatcher *llarp_init_link_dispatcher();
void llarp_free_link_dispatcher(struct llarp_link_dispatcher **dispatcher);
void llarp_link_sendto(struct llarp_link_dispatcher *dispatcher,
llarp_pubkey_t pubkey, llarp_buffer_t msg);
void llarp_link_register(struct llarp_link_dispatcher *dispatcher,
struct llarp_link *link);
2018-01-27 01:18:10 +00:00
#ifdef __cplusplus
}
#endif
#endif