This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
151 B
Go

package obfs
// Base information for obfs
type Base struct {
IVSize int
Key []byte
HeadLen int
Host string
Port int
Param string
}