actix-net icon indicating copy to clipboard operation
actix-net copied to clipboard

A collection of lower-level libraries for composable network services.

Results 26 actix-net issues
Sort by recently updated
recently updated
newest added

## PR Type Bug Fix ## PR Checklist Check your PR fulfills the following: - [x] Tests for the changes have been added / updated. - [x] Documentation comments have...

Is there a way to run the server again after stopping it by ``` ServerHandle::stop() ```?

Please consider adding new feature `rustls-native-certs` which uses rustls but instead of `webpki-roots` it uses `rustls-native-certs`.

enhancement
good first issue

Right now the codec supports only IO that has both `AsyncRead` and `AsyncWrite`. I have a situation where the incoming codec != outgoing codec (different messages and I'd like to...

`System::with_tokio_rt` currently takes a `Fn`, which is quite restricting, since it does not allow moving ownership of captured variables into the closure (at least not in a clean way). This...

Add second generic param for the receive argument for new_service method. Default to () because it's all service factory uses at last. actix-server only accept it. Remove InitError type and...

## PR Type Feature ## PR Checklist Check your PR fulfills the following: - [x] Tests for the changes have been added / updated. - [x] Documentation comments have been...

...perhaps only on interactive terminals. from a [discord poll](https://canary.discord.com/channels/771444961383153695/771447545154371646/901268392185569290):

enhancement

actix-server runs https://github.com/actix/actix-net/blob/605ec251432786b169490aac60679388aa902d95/actix-server/src/socket.rs#L74-L84 This `deregister` function can be called as part of flow control as response to `Pause` command https://github.com/actix/actix-net/blob/605ec251432786b169490aac60679388aa902d95/actix-server/src/accept.rs#L286-L292 When resuming operations, the socket file is gone and clients...

bug

I'm using `actix-rt 1.0.0` through `actix 0.9.0` and observing that system does not stop on panic. It seems like task panics get caught by tokio runtime `0.2.6`. Relevant tokio issue:...

needs-investigation