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.
14 lines
459 B
14 lines
459 B
8 years ago
|
#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 */
|