-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Commands: sample uds message exchange
- Loading branch information
1 parent
22e7c2e
commit 0e42db0
Showing
5 changed files
with
361 additions
and
21 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
## Compile | ||
To compile this crate, you will need protobuf compiler. On debian-like you can run: | ||
|
||
apt-get install protobuf-compiler | ||
apt-get install protobuf-compiler | ||
|
||
|
||
## TODOs: | ||
* do I need to https://docs.rs/tokio/latest/tokio/net/struct.UnixStream.html | ||
`let ready = stream.ready(Interest::READABLE | Interest::WRITABLE).await?;` | ||
|
||
|
||
https://docs.rs/tokio/latest/tokio/net/struct.UnixListener.html#method.accept |
Oops, something went wrong.