mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-01-08 14:50:26 +01:00
191798bb56
The new ones are slightly different. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
12 lines
366 B
C
12 lines
366 B
C
#ifndef LIGHTNING_LIGHTNINGD_ONION_MESSAGE_H
|
|
#define LIGHTNING_LIGHTNINGD_ONION_MESSAGE_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct lightningd;
|
|
|
|
void handle_obs_onionmsg_to_us(struct lightningd *ld, const u8 *msg);
|
|
void handle_obs_onionmsg_forward(struct lightningd *ld, const u8 *msg);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_ONION_MESSAGE_H */
|