Peter Saveliev
Peter Saveliev
Thanks, investigating
Can a configurable signal on the library side help in this situation?
Thanks, investigating
@ohashemzadeh pls check if we can close the issue
Here we go: ```python import select from pyroute2 import IPRoute print('create poll object') poll = select.poll() print('create IPRoute object') with IPRoute(nlm_generator=True) as ipr: print('register IPRoute for select.POLLIN') poll.register(ipr, select.POLLIN) print('bind...
Yes, I hope it is possible :) Right now I'm a bit busy porting the compat code to the master branch, so almost all the tickets are on «hold», but...
Yep, it is possible. Give me some time to make a proof-of-concept, I hope it'll be ready the next week.
The initial commit. I managed to get the AF_UNIX socket info response (see comments in the code). More functions will follow the next week, but you can already start to...
`get_sock_stats()` is working (but only `unix_diag_req/unix_diag_msg` are implemented yet) You're welcome to try it out. Tcp diag structures will follow soon — as I said, the next week.
Sounds reasonable, so I would merge it one day when the [WIP] will be cleared.