mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2025-09-20 12:35:59 +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
|
||
|
}
|