Home | History | Annotate | Download | only in tipc
      1 /*
      2  * link.c	TIPC link 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 (at) ericsson.com>
     10  */
     11 
     12 #ifndef _TIPC_LINK_H
     13 #define _TIPC_LINK_H
     14 
     15 extern int help_flag;
     16 
     17 int cmd_link(struct nlmsghdr *nlh, const struct cmd *cmd, struct cmdl *cmdl,
     18 	     void *data);
     19 void cmd_link_help(struct cmdl *cmdl);
     20 
     21 #endif
     22