/ Published in: Python
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
def getIpAddress(self, ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) return socket.inet_ntoa(fcntl.ioctl( s.fileno(), 0x8915, struct.pack('256s', ifname[:15]) )[20:24])