mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-01-11 19:42:29 +08:00
11 lines
151 B
Go
11 lines
151 B
Go
|
package protocol
|
||
|
|
||
|
// Base information for protocol
|
||
|
type Base struct {
|
||
|
IV []byte
|
||
|
Key []byte
|
||
|
TCPMss int
|
||
|
Overhead int
|
||
|
Param string
|
||
|
}
|