Results 5 issues of Ryan Seipp

### Is there an existing issue for this? - [X] I have searched the existing issues ### Code of Conduct - [X] I agree to follow this project's Code of...

Type: Bug :bug:
Issue: Accepted

## Expected Behavior actix-session should provide an option to use rustls to handle TLS as an alternative to OpenSSL, to reduce surface area and allow the end user to standardize...

Adds the following setup flags: * `IORING_SETUP_NO_MMAP` - liburing 2.5, kernel 6.5 * `IORING_SETUP_REGISTERED_FD_ONLY` - liburing 2.5, kernel 6.5 Upgrades linux-raw-sys to 0.6.4 to provide the constants with the linux-raw...

io_uring utilizes a struct called `io_uring_buf_ring` to register a ring buffer of `io_uring_buf` structs that contain a reference to slices of buffers that can be filled in certain operations. One...

Closes #1143. Adds a new type `io_uring_buf_ring`, defined in the kernel [here](https://github.com/torvalds/linux/blob/v5.19/include/uapi/linux/io_uring.h#L507) as: ```c struct io_uring_buf_ring { union { /* * To avoid spilling into more pages than we need...