mirror of
https://github.com/threefoldtech/mycelium.git
synced 2026-08-29 07:08:42 +00:00
Fix various typos
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# Mycelium
|
||||
|
||||
Mycelium is an IPv6 overlay network writing in Rust. Each node that joins the overlay network will receive an overlay network IP in the 400::/7 range.
|
||||
Mycelium is an IPv6 overlay network written in Rust. Each node that joins the overlay network will receive an overlay network IP in the 400::/7 range.
|
||||
|
||||
## Features
|
||||
|
||||
|
||||
+1
-1
@@ -104,7 +104,7 @@ paths:
|
||||
$ref: '#/components/schemas/PushMessageBody'
|
||||
responses:
|
||||
'200':
|
||||
description: We received a reply withing the specified timeout
|
||||
description: We received a reply within the specified timeout
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#
|
||||
# A simple shell script to setup a local network using network namespaces. This relies on the presence of the `ip` tool, part of `iproute2` packge on linux.
|
||||
# A simple shell script to setup a local network using network namespaces. This relies on the presence of the `ip` tool, part of `iproute2` package on linux.
|
||||
#
|
||||
# Note: this script requires root privilege
|
||||
|
||||
|
||||
+1
-1
@@ -156,7 +156,7 @@ impl SharedSecret {
|
||||
data.buf
|
||||
}
|
||||
|
||||
/// Decrypt a message previously encrytped with an equivalent `SharedSecret`. In other words, a
|
||||
/// Decrypt a message previously encrypted with an equivalent `SharedSecret`. In other words, a
|
||||
/// message that was previously created by the [`SharedSecret::encrypt`] method.
|
||||
///
|
||||
/// Internally, this messages assumes that a 12 byte nonce is present at the end of the data.
|
||||
|
||||
+1
-1
@@ -503,7 +503,7 @@ impl MessageStack {
|
||||
let src_pubkey = if let Some(pk) = dp.router().get_pubkey(message.src) {
|
||||
pk
|
||||
} else {
|
||||
warn!("No publick key entry for IP we just received a message chunk from");
|
||||
warn!("No public key entry for IP we just received a message chunk from");
|
||||
return;
|
||||
};
|
||||
// This always is our own key as we are receiving.
|
||||
|
||||
Reference in New Issue
Block a user