mirror of
https://github.com/number571/go-peer.git
synced 2026-09-14 11:05:42 +05:00
12 lines
219 B
Go
12 lines
219 B
Go
// Package conn makes it possible to hide the structure of the true message by encrypting and adding random bytes.
|
|
//
|
|
/*
|
|
NETWORK CONN FORMAT
|
|
|
|
L(M) || M
|
|
where
|
|
L - length (uint64)
|
|
M - message bytes
|
|
*/
|
|
package conn
|