summaryrefslogtreecommitdiff
path: root/dev.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-08-09 12:04:49 +0200
committerTobias Klauser <tklauser@distanz.ch>2013-08-09 12:04:49 +0200
commita2e70ae5b06ac6fa09cce3848c2ed795967b174f (patch)
tree214b9c1e15a502f4cb57939fceec371c1a970f83 /dev.h
parentaf0c1f5f89750f16054c988937e180764c411c20 (diff)
dev: Integrate `promisc' module into `dev' module
Since entering/leaving promiscuous mode also is a device specific function and all users of the `promisc' module also use `dev', integrate it there. Also rename the functions to have a `device_' prefix like the other functions in the module. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'dev.h')
-rw-r--r--dev.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev.h b/dev.h
index 4bfc3f0..2d5f056 100644
--- a/dev.h
+++ b/dev.h
@@ -12,5 +12,7 @@ extern short device_get_flags(const char *ifname);
extern void device_set_flags(const char *ifname, const short flags);
extern int device_up_and_running(const char *ifname);
extern u32 device_bitrate(const char *ifname);
+extern short device_enter_promiscuous_mode(const char *ifname);
+extern void device_leave_promiscuous_mode(const char *ifname, short oldflags);
#endif /* DEV_H */