update documentation links

This commit is contained in:
Hayden Parker
2016-06-16 23:17:21 -07:00
parent cfe8807215
commit 89b9e418c2
13 changed files with 15 additions and 15 deletions

View File

@ -1,10 +1,10 @@
# go-i2p # go-i2p
A pure go implementation of the I2P router A pure Go implementation of the I2P router.
## Status ## Status
go-i2p is in early development. The common data structures are starting to get go-i2p is in early development.
## Contributing ## Contributing

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Certificate I2P Certificate
https://geti2p.net/spec/common-structures#type-certificate https://geti2p.net/spec/common-structures#certificate
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+-// +----+----+----+----+----+-//

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Date I2P Date
https://geti2p.net/en/docs/spec/common-structures#type_Date https://geti2p.net/spec/common-structures#date
Accurate for version 0.9.24 Accurate for version 0.9.24
*/ */

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Destination I2P Destination
https://geti2p.net/en/docs/spec/common-structures#struct_Destination https://geti2p.net/spec/common-structures#destination
Accurate for version 0.9.24 Accurate for version 0.9.24
Identical to KeysAndCert Identical to KeysAndCert

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Integer I2P Integer
https://geti2p.net/en/docs/spec/common-structures#type_Integer https://geti2p.net/spec/common-structures#integer
Accurate for version 0.9.24 Accurate for version 0.9.24
*/ */

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Key Certificate I2P Key Certificate
https://geti2p.net/en/docs/spec/common-structures#type_Certificate https://geti2p.net/spec/common-structures#certificate
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+-// +----+----+----+----+----+-//

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Lease I2P Lease
https://geti2p.net/en/docs/spec/common-structures#struct_Lease https://geti2p.net/spec/common-structures#lease
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P LeaseSet I2P LeaseSet
https://geti2p.net/en/docs/spec/common-structures#struct_LeaseSet https://geti2p.net/spec/common-structures#leaseset
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P Mapping I2P Mapping
https://geti2p.net/en/docs/spec/common-structures#type_Mapping https://geti2p.net/spec/common-structures#mapping
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P RouterAddress I2P RouterAddress
https://geti2p.net/en/docs/spec/common-structures#struct_RouterAddress https://geti2p.net/spec/common-structures#routeraddress
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P RouterIdentity I2P RouterIdentity
https://geti2p.net/en/docs/spec/common-structures#struct_RouterIdentity https://geti2p.net/spec/common-structures#routeridentity
Accurate for version 0.9.24 Accurate for version 0.9.24
Identical to KeysAndCert Identical to KeysAndCert

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P RouterInfo I2P RouterInfo
https://geti2p.net/en/docs/spec/common-structures#struct_RouterInfo https://geti2p.net/spec/common-structures#routerinfo
Accurate for version 0.9.24 Accurate for version 0.9.24
+----+----+----+----+----+----+----+----+ +----+----+----+----+----+----+----+----+
@ -167,7 +167,7 @@ func (router_info RouterInfo) RouterAddresses() (router_addresses []RouterAddres
// //
func (router_info RouterInfo) PeerSize() int { func (router_info RouterInfo) PeerSize() int {
// Peer size is unused: // Peer size is unused:
// https://geti2p.net/en/docs/spec/common-structures#struct_RouterAddress // https://geti2p.net/spec/common-structures#routeraddress
return 0 return 0
} }

View File

@ -2,7 +2,7 @@ package common
/* /*
I2P String I2P String
https://geti2p.net/en/docs/spec/common-structures#type_String https://geti2p.net/spec/common-structures#string
Accurate for version 0.9.24 Accurate for version 0.9.24
*/ */