aboutsummaryrefslogtreecommitdiffstats
path: root/src/fnet/fnet.h
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2018-06-09 07:57:32 -0400
committerLibravatar netblue30 <netblue30@yahoo.com>2018-06-09 07:57:32 -0400
commite62246a8a3e0e795a37535f9e41dffdfdfa9f77a (patch)
tree28b8c0b1667fd0170fa113c1bec90046a15ce6da /src/fnet/fnet.h
parentAppArmor: allow dbus access by default (diff)
downloadfirejail-e62246a8a3e0e795a37535f9e41dffdfdfa9f77a.tar.gz
firejail-e62246a8a3e0e795a37535f9e41dffdfdfa9f77a.tar.zst
firejail-e62246a8a3e0e795a37535f9e41dffdfdfa9f77a.zip
support wireless interfaces for --net
Diffstat (limited to 'src/fnet/fnet.h')
-rw-r--r--src/fnet/fnet.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fnet/fnet.h b/src/fnet/fnet.h
index 71299852d..fcbb3cd84 100644
--- a/src/fnet/fnet.h
+++ b/src/fnet/fnet.h
@@ -20,12 +20,12 @@
20#ifndef FNET_H 20#ifndef FNET_H
21#define FNET_H 21#define FNET_H
22 22
23#include "../include/common.h"
23#include <stdio.h> 24#include <stdio.h>
24#include <stdlib.h> 25#include <stdlib.h>
25#include <string.h> 26#include <string.h>
26#include <assert.h> 27#include <assert.h>
27#include <stdarg.h> 28#include <stdarg.h>
28#include "../include/common.h"
29 29
30// main.c 30// main.c
31extern int arg_quiet; 31extern int arg_quiet;
@@ -34,6 +34,7 @@ extern void fmessage(char* fmt, ...); // TODO: this function is duplicated in sr
34// veth.c 34// veth.c
35int net_create_veth(const char *dev, const char *nsdev, unsigned pid); 35int net_create_veth(const char *dev, const char *nsdev, unsigned pid);
36int net_create_macvlan(const char *dev, const char *parent, unsigned pid); 36int net_create_macvlan(const char *dev, const char *parent, unsigned pid);
37int net_create_ipvlan(const char *dev, const char *parent, unsigned pid);
37int net_move_interface(const char *dev, unsigned pid); 38int net_move_interface(const char *dev, unsigned pid);
38 39
39// interface.c 40// interface.c