summaryrefslogtreecommitdiff
path: root/dev.h
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2015-07-01 10:28:43 +0200
committerTobias Klauser <tklauser@distanz.ch>2015-07-01 10:30:06 +0200
commite3bd65b7eaa5b47b4029f92e909a6aae4fbdb152 (patch)
tree7ece8f21e7f63dbec3e32ba4ba1bee30f4a9b614 /dev.h
parentf6b2b535d482084e49ba8787973d8586ed51f563 (diff)
netsniff-ng: dev: Rename device_ifindex_get to __device_ifindex
Make the function name more in line with the scheme we use for other similar functions: the function prefixed with __ returns a negative error code, the function without prefix panic()'s on error. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'dev.h')
-rw-r--r--dev.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev.h b/dev.h
index 3c12d8c..a9e4ccf 100644
--- a/dev.h
+++ b/dev.h
@@ -6,8 +6,8 @@
extern size_t device_mtu(const char *ifname);
extern int device_address(const char *ifname, int af, struct sockaddr_storage *ss);
+extern int __device_ifindex(const char *ifname);
extern int device_ifindex(const char *ifname);
-extern int device_ifindex_get(const char *ifname);
extern int device_type(const char *ifname);
extern short device_get_flags(const char *ifname);
extern void device_set_flags(const char *ifname, const short flags);