mirror of
https://github.com/ElementsProject/lightning.git
synced 2024-11-19 09:54:16 +01:00
704d30edce
We would never complete further ping commands if we had < responses than pings. Oops. Fixes: #1928 Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
10 lines
241 B
C
10 lines
241 B
C
#ifndef LIGHTNING_LIGHTNINGD_PING_H
|
|
#define LIGHTNING_LIGHTNINGD_PING_H
|
|
#include "config.h"
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
struct subd;
|
|
void ping_reply(struct subd *subd, const u8 *msg);
|
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_PING_H */
|