1/* SPDX-License-Identifier: GPL-2.0-or-later */ 2/* 3 * peer.h TIPC peer functionality. 4 * 5 * Authors: Richard Alpe <richard.alpe@ericsson.com> 6 */ 7 8#ifndef _TIPC_PEER_H 9#define _TIPC_PEER_H 10 11extern int help_flag; 12 13int cmd_peer(struct nlmsghdr *nlh, const struct cmd *cmd, struct cmdl *cmdl, 14 void *data); 15void cmd_peer_help(struct cmdl *cmdl); 16 17#endif 18

