mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-14 14:24:32 +00:00
f6121c10f0
- re-enable Nim's cache globally - add a new "nimcache" subdir for the libraries - make sure Go doesn't try to link libnimbus.a in the dynamically linked wrapper example - always delete the static archive before recreating it - rename wrapper.nim/.h to libnimbus.nim/.h - better hygiene in libnimbus.h (include guards and C++ support) - remove MainnetBootnodes copy, since we do include "config.nim" after all
47 lines
941 B
C
47 lines
941 B
C
#ifndef __LIBNIMBUS_H__
|
|
#define __LIBNIMBUS_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct {
|
|
uint8_t* decoded;
|
|
size_t decodedLen;
|
|
uint32_t timestamp;
|
|
uint32_t ttl;
|
|
uint8_t topic[4];
|
|
double pow;
|
|
uint8_t hash[32];
|
|
} received_message;
|
|
|
|
typedef void (*received_msg_handler)(received_message* msg);
|
|
|
|
/** Initialize Nim and the status library */
|
|
void NimMain();
|
|
|
|
/** Start nimbus event loop, connect to bootnodes etc */
|
|
void nimbus_start(uint16_t port);
|
|
|
|
/** Add peers to connect to - must be called after nimbus_start */
|
|
void nimbus_add_peer(const char* nodeId);
|
|
|
|
/**
|
|
* Should be called in regularly - for example in a busy loop (beautiful!) on
|
|
* dedicated thread.
|
|
*/
|
|
void nimbus_poll();
|
|
|
|
void nimbus_post(const char* channel, const char* payload);
|
|
void nimbus_subscribe(const char* channel, received_msg_handler msg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //__LIBNIMBUS_H__
|
|
|