mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-20 02:27:51 +01:00
14 lines
459 B
C
14 lines
459 B
C
|
#ifndef LIGHTNING_LIGHTNINGD_PING_H
|
||
|
#define LIGHTNING_LIGHTNINGD_PING_H
|
||
|
#include "config.h"
|
||
|
#include <ccan/short_types/short_types.h>
|
||
|
#include <ccan/tal/tal.h>
|
||
|
|
||
|
/* Returns false on error, otherwise *pong set if reply needed. */
|
||
|
bool check_ping_make_pong(const tal_t *ctx, const u8 *ping, u8 **pong);
|
||
|
|
||
|
/* Make a ping packet requesting num_pong_bytes */
|
||
|
u8 *make_ping(const tal_t *ctx, u16 num_pong_bytes, u16 padlen);
|
||
|
|
||
|
#endif /* LIGHTNING_LIGHTNINGD_PING_H */
|