host = gethostbyname(gethostname())
NameError: name 'gethostbyname' is not defined
我需要一些帮助,无法弄清楚是什么意思
以下是代码:
conn = socket.socket(socket.AF_PACKET, socket.SOCK_RAW, socket.ntohs(3)) host = gethostbyname(gethostname()) conn.bind((host, 80)).
我正在尝试用Python编写一个简单的数据包嗅探器。