2017-08-28 18:06:01 +02:00
|
|
|
#ifndef LIGHTNING_COMMON_PING_H
|
|
|
|
#define LIGHTNING_COMMON_PING_H
|
2017-04-12 18:10:10 +02:00
|
|
|
#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);
|
|
|
|
|
2018-02-22 11:01:52 +01:00
|
|
|
/* Returns error string if something wrong. */
|
|
|
|
const char *got_pong(const u8 *pong, size_t *num_pings_outstanding);
|
|
|
|
|
2017-08-28 18:06:01 +02:00
|
|
|
#endif /* LIGHTNING_COMMON_PING_H */
|