lib/protocol: Remove support for v0.13 hello messages (#5461)

This commit is contained in:
Jakob Borg
2019-01-17 20:48:43 +01:00
committed by GitHub
parent c2cc1dadea
commit 76af0cf07b
5 changed files with 37 additions and 255 deletions

View File

@@ -17,8 +17,9 @@ import (
)
const (
SyntheticDirectorySize = 128
HelloMessageMagic = uint32(0x2EA7D90B)
SyntheticDirectorySize = 128
HelloMessageMagic uint32 = 0x2EA7D90B
Version13HelloMagic uint32 = 0x9F79BC40 // old
)
func (m Hello) Magic() uint32 {