I don't know any special function on POX to do that, but you could use native python methods.
ip = '10.0.0.1'
ip_list = ip.split('.') # split() method will split values into a list.
print ip_list
Cheers,
Marcus Sandri
2014-02-18 12:26 GMT-03:00 Rizwan Jamil <[email protected]>:
> Hi All!
>
>
> I want to store the all four octets/bytes of an IP address into separate
> integer variables. Is there a way or a function to do this?
>
>
>
>
>
>
>
