http://mf34jlghauz5pxjcmdymdqbe5pva4v24logeys446tdrgd5lpsrocmqd.onion/_modules/stem/util/proc.html
:param int pid: process id of the process to be queried :returns: **set** with inodes for its sockets :raises: **IOError** if it can ' t be determined " " " inodes = set () try : fd_contents = os . listdir ( ' /proc/ %s /fd ' % pid ) except OSError as exc : raise IOError ( ' Unable to read our file descriptors: %s ' % exc ) for fd in fd_contents : fd_path = ' /proc/ %s /fd/ %s ' % ( pid , fd ) try : # File descriptor link, such as ' socket:[30899] ' fd_name = os . readlink...