-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bridging smoltcp and tiny-http #240
Bridging smoltcp and tiny-http #240
Conversation
before finding the bug that requires client to sleep
minor change - double checking specific numbers in the code
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a couple small things
src/bin/test-tiny-http/src/main.rs
Outdated
handle_connection(stream); | ||
Ok(()) | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to keep this commented code around? If no, let's remove it
.gitmodules
Outdated
@@ -9,3 +9,6 @@ | |||
[submodule "src/abi"] | |||
path = src/abi | |||
url = ../../twizzler-operating-system/abi.git | |||
[submodule "src/bin/src/bin/test-tiny-http/src/tiny-http-twizzler"] | |||
path = src/bin/src/bin/test-tiny-http/src/tiny-http-twizzler | |||
url = [email protected]:ClariseTG/tiny-http-twizzler.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We'll need to update this to twizzler-operating-system/tiny-http-twizzler. I just moved the repo, so it should work.
changed submodule link and took out commented code in main.rs of tiny-http test
small changes in cargo.toml and lib.rs within tiny-http
update tiny-http cargo.toml
update cargo.toml and xtask build
Includes modified tiny-http as a submodule.
Modifications made to the following files:
Includes a shim that allows smoltcp sockets to be used using the Rust std::net::{TcpStream, TcpListener} interfaces.