2018-11-22 12:47:29 +10:30
|
|
|
#ifndef LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
|
|
|
#define LIGHTNING_LIGHTNINGD_MEMDUMP_H
|
|
|
|
|
#include "config.h"
|
|
|
|
|
#include <ccan/short_types/short_types.h>
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
struct command;
|
|
|
|
|
struct subd;
|
|
|
|
|
|
|
|
|
|
void opening_memleak_done(struct command *cmd, struct subd *leaker);
|
2018-11-22 12:47:29 +10:30
|
|
|
void peer_memleak_done(struct command *cmd, struct subd *leaker);
|
2018-11-22 12:47:29 +10:30
|
|
|
#endif /* LIGHTNING_LIGHTNINGD_MEMDUMP_H */
|