Tagged Questions
3
votes
1answer
490 views
Mac + Ruby: Can't access ioctl of Socket? How to fix?
Good time of day.
Ruby Code:
def hw_address(iface)
sock = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM,0)
buf = [iface,""].pack('a16h16')
sock.ioctl(SIOCGIFHWADDR, buf);
...
1
vote
2answers
962 views
How can i use RAW Sockets in Ruby?
i'm trying to create a raw sockets using ruby .... the problem is there isn't any thing called raw socket there ,and on the other hand the socket class itself is not fully documented .... do any body ...