blob: 8d3054cd4e4fc6bcb8277ea6d999f85e9e04cf4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/* SPDX-License-Identifier: GPL-2.0
*
* iplink_virt_wifi.c A fake implementation of cfg80211_ops that can be tacked
* on to an ethernet net_device to make it appear as a
* wireless connection.
*
* Authors: Baligh Gasmi <gasmibal@gmail.com>
*/
#include <stdio.h>
#include <stdlib.h>
#include "utils.h"
#include "ip_common.h"
static void virt_wifi_print_help(struct link_util *lu,
int argc, char **argv, FILE *f)
{
fprintf(f, "Usage: ... virt_wifi \n");
}
struct link_util virt_wifi_link_util = {
.id = "virt_wifi",
.print_help = virt_wifi_print_help,
};
|