blob: a2ddb4e172d0ddf2db57f20d9d0e7e7d76edd440 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-License-Identifier: ISC
/*
* Copyright (c) 2024 David Lamparter, for NetDEF, Inc.
*/
#ifndef _FRR_ZLOG_RECIRCULATE_H
#define _FRR_ZLOG_RECIRCULATE_H
/* fd should be one end of a socketpair() */
extern void zlog_recirculate_subscribe(struct event_loop *tm, int fd);
#endif
|