blob: c0d099630b274b55214e0eccc1c7a3e0b7ce45f0 [file] [log] [blame]
Richard Alpef0437592015-05-07 15:07:36 +02001/*
2 * bearer.h TIPC bearer functionality.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Authors: Richard Alpe <richard.alpe@ericsson.com>
10 */
11
12#ifndef _TIPC_BEARER_H
13#define _TIPC_BEARER_H
14
15#include "cmdl.h"
16
17extern int help_flag;
18
19int cmd_bearer(struct nlmsghdr *nlh, const struct cmd *cmd, struct cmdl *cmdl, void *data);
20void cmd_bearer_help(struct cmdl *cmdl);
21
Parthasarathy Bhuvaragand2ba0b02016-09-12 17:17:19 +020022void print_bearer_media(void);
23int cmd_get_unique_bearer_name(const struct cmd *cmd, struct cmdl *cmdl,
24 struct opt *opts, char *bname,
25 const struct tipc_sup_media *sup_media);
Richard Alpef0437592015-05-07 15:07:36 +020026#endif