Replies: 2 comments
-
No, because io_uring has no setsockopt opcode. You can however |
Beta Was this translation helpful? Give feedback.
0 replies
-
io_uring will have set/getsockopt shortly, it's staged for the 6.7 kernel: https://git.kernel.dk/cgit/linux/log/?h=for-6.7/io_uring-sockopt until that is in, the solution is indeed to do all of that first and then register the file. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm looking into kernel TLS and I'm wondering if it works with the io_uring stuff like direct descriptors and
io_uring_prep_connect()
and such.I see from the API docs that one does a lot of this stuff via
setsockopt()
. Is there a way to make this async with io_uring so I can do a SQE chain of:?
Beta Was this translation helpful? Give feedback.
All reactions