Removed protocol spec as white paper is sufficient for now

This commit is contained in:
David Vennik
2022-12-10 11:29:41 +01:00
parent 3a81ca3421
commit 84cd46bbc1
2 changed files with 4 additions and 6 deletions

View File

@@ -10,8 +10,6 @@ Lightning powered distributed virtual private network for anonymising traffic on
[White Paper](doc/whitepaper.md)
[Protocol Specification](doc/protocol.md)
## About
The ubiquitous use of encryption on the internet took some time to happen,

View File

@@ -13,11 +13,11 @@ var (
// GitRef is the gitref, as in refs/heads/branchname.
GitRef = "refs/heads/main"
// ParentGitCommit is the commit hash of the parent HEAD.
ParentGitCommit = "b545a33f88f32ca87ab7fd5d98acc2ea965eb158"
ParentGitCommit = "4576b89aed4b27f134ec3e9e399ae91b5adbf29a"
// BuildTime stores the time when the current binary was built.
BuildTime = "2022-12-10T11:27:56+01:00"
BuildTime = "2022-12-10T11:29:41+01:00"
// SemVer lists the (latest) git tag on the build.
SemVer = "v0.0.172"
SemVer = "v0.0.173"
// PathBase is the path base returned from runtime caller.
PathBase = "/home/loki/src/github.com/Indra-Labs/indra/"
// Major is the major number from the tag.
@@ -25,7 +25,7 @@ var (
// Minor is the minor number from the tag.
Minor = 0
// Patch is the patch version number from the tag.
Patch = 172
Patch = 173
)
// Version returns a pretty printed version information string.