I needed to use if_nametoindex, if_indextoname functions for one of my packet capturing programs. So, here is my python wrapper for those functions using ctypes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
import ctypes.util | |
libc = ctypes.CDLL(ctypes.util.find_library('c')) | |
def if_nametoindex (name): | |
if not isinstance (name, str): | |
raise TypeError ('name must be a string.') | |
ret = libc.if_nametoindex (name) | |
if not ret: | |
raise RunTimeError ("Invalid Name") | |
return ret | |
def if_indextoname (index): | |
if not isinstance (index, int): | |
raise TypeError ('index must be an int.') | |
libc.if_indextoname.argtypes = [ctypes.c_uint32, ctypes.c_char_p] | |
libc.if_indextoname.restype = ctypes.c_char_p | |
ifname = ctypes.create_string_buffer (32) | |
ifname = libc.if_indextoname (index, ifname) | |
if not ifname: | |
raise RuntimeError ("Inavlid Index") | |
return ifname |
No comments:
Post a Comment