]> git.proxmox.com Git - mirror_iproute2.git/blame - ip/iplink_team.c
ip: link: Add missing link type help texts
[mirror_iproute2.git] / ip / iplink_team.c
CommitLineData
9fd7b86c
PS
1#include <stdio.h>
2#include <stdlib.h>
3
4#include "utils.h"
5#include "ip_common.h"
6
7static void team_print_help(struct link_util *lu,
8 int argc, char **argv, FILE *f)
9{
10 fprintf(f, "Usage: ... team\n");
11}
12
13static void team_slave_print_help(struct link_util *lu,
14 int argc, char **argv, FILE *f)
15{
16 fprintf(f, "Usage: ... team_slave\n");
17}
18
19struct link_util team_link_util = {
20 .id = "team",
21 .print_help = team_print_help,
22}, team_slave_link_util = {
23 .id = "team_slave",
24 .print_help = team_slave_print_help,
25};