aboutsummaryrefslogtreecommitdiffstats
path: root/src/firejail/firejail.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/firejail/firejail.h')
-rw-r--r--src/firejail/firejail.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/firejail/firejail.h b/src/firejail/firejail.h
index 5fd978f51..b90c8d8ed 100644
--- a/src/firejail/firejail.h
+++ b/src/firejail/firejail.h
@@ -446,6 +446,7 @@ void shut(pid_t pid);
446int restricted_shell(const char *user); 446int restricted_shell(const char *user);
447 447
448// arp.c 448// arp.c
449void arp_announce(const char *dev, Bridge *br);
449// returns 0 if the address is not in use, -1 otherwise 450// returns 0 if the address is not in use, -1 otherwise
450int arp_check(const char *dev, uint32_t destaddr); 451int arp_check(const char *dev, uint32_t destaddr);
451// assign an IP address using arp scanning 452// assign an IP address using arp scanning
@@ -672,6 +673,7 @@ enum {
672void sandboxfs(int op, pid_t pid, const char *path1, const char *path2); 673void sandboxfs(int op, pid_t pid, const char *path1, const char *path2);
673 674
674// checkcfg.c 675// checkcfg.c
676#define DEFAULT_ARP_PROBES 2
675enum { 677enum {
676 CFG_FILE_TRANSFER = 0, 678 CFG_FILE_TRANSFER = 0,
677 CFG_X11, 679 CFG_X11,
@@ -694,6 +696,7 @@ enum {
694 CFG_FOLLOW_SYMLINK_PRIVATE_BIN, 696 CFG_FOLLOW_SYMLINK_PRIVATE_BIN,
695 CFG_DISABLE_MNT, 697 CFG_DISABLE_MNT,
696 CFG_JOIN, 698 CFG_JOIN,
699 CFG_ARP_PROBES,
697 CFG_MAX // this should always be the last entry 700 CFG_MAX // this should always be the last entry
698}; 701};
699extern char *xephyr_screen; 702extern char *xephyr_screen;