diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-08-09 12:04:49 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-08-09 12:04:49 +0200 |
commit | a2e70ae5b06ac6fa09cce3848c2ed795967b174f (patch) | |
tree | 214b9c1e15a502f4cb57939fceec371c1a970f83 /promisc.c | |
parent | af0c1f5f89750f16054c988937e180764c411c20 (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 'promisc.c')
-rw-r--r-- | promisc.c | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/promisc.c b/promisc.c deleted file mode 100644 index 56f6e4b..0000000 --- a/promisc.c +++ /dev/null @@ -1,27 +0,0 @@ -#include <string.h> -#include <sys/socket.h> -#include <linux/if.h> - -#include "promisc.h" -#include "dev.h" - -short enter_promiscuous_mode(const char *ifname) -{ - short ifflags; - - if (!strncmp("any", ifname, strlen("any"))) - return 0; - - ifflags = device_get_flags(ifname); - device_set_flags(ifname, ifflags | IFF_PROMISC); - - return ifflags; -} - -void leave_promiscuous_mode(const char *ifname, short oldflags) -{ - if (!strncmp("any", ifname, strlen("any"))) - return; - - device_set_flags(ifname, oldflags); -} |