lameferret
lameferret
Sorry @mrinalwadhwa for being so late, notifications were turned off. I will look into it asap.
Updated instructions. 1. `python3 -m http.server --bind 127.0.0.1 5000` 2. `for i in (seq 1 3); ./target/debug/ockam node create "n$i" --tcp-listener-address "127.0.0.1:600$i"; end` 3. `./target/debug/ockam tcp-outlet create --at n3 --from...
Hey @mrinalwadhwa, how should I submit PR, for [add inlet/outlet to registry](https://github.com/build-trust/ockam/blob/43a041ab65b18b80eae66ac104d108ab39e21aa1/implementations/rust/ockam/ockam_api/src/nodes/service/portals.rs#L81), inlet/outlet show, and similar smaller issues. 1. One PR with multiple commits, which can individually be merged into...
Sorry, but can I get some help with option 2: Multiple smaller PR's - Let's say in PR1 I add inlet and outlet to registry, and I push this branch...
Thanks for your kind words @mrinalwadhwa, but I can't remember how in my head this made any sense: ``` Response::ok(req.id()).body(TransportList::new( self.transports .iter() .map(|(tid, (tt, tm, addr))| match tm { TransportMode::Listen...
Can I take this? Also, cam fixing [get_transports](https://github.com/build-trust/ockam/blob/365f91191b2ce35228a10d5932fa08099b1f6fb8/implementations/rust/ockam/ockam_api/src/nodes/service/transport.rs#L11) to return `ResponseBuilder` be part of this PR, if I'm able to fix it?
What does dynamic means here? I imagine something like: ```rust struct NodeOutput(String); impl NodeOutput { fn new() -> NodeOutput { NodeOutput(String::new()) } fn name(mut self, name: &str) -> Self {...
Alright then, I would create a PR based on the sketch in `ockam_commad/util`.
Hey @mrinalwadhwa, what is the scope of this issue? Should it be limited to `node create | list` or be a companion to #3241 's output, part and replace `println!`...
Hey, I was looking into other major rust projects like tokio, most of them use current format: ```toml [dependencies] "crate-name" = "major version" "crate-name" = "*" ``` This format also...