mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-06 03:44:00 +00: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
|
||
|
}
|