You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_NOTIFICATION_H
|
|
|
|
#define LIGHTNING_LIGHTNINGD_NOTIFICATION_H
|
|
|
|
#include "config.h"
|
|
|
|
#include <lightningd/jsonrpc.h>
|
|
|
|
#include <lightningd/lightningd.h>
|
|
|
|
#include <lightningd/plugin.h>
|
|
|
|
|
|
|
|
bool notifications_have_topic(const char *topic);
|
|
|
|
|
|
|
|
void notify_connect(struct lightningd *ld, struct pubkey *nodeid,
|
|
|
|
struct wireaddr_internal *addr);
|
|
|
|
void notify_disconnect(struct lightningd *ld, struct pubkey *nodeid);
|
|
|
|
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_NOTIFICATION_H */
|