mirror of
https://github.com/fatedier/frp.git
synced 2025-02-08 19:44:21 +00:00
14 lines
121 B
Go
14 lines
121 B
Go
package consts
|
|
|
|
// server status
|
|
const (
|
|
Idle = iota
|
|
Working
|
|
)
|
|
|
|
// connection type
|
|
const (
|
|
CtlConn = iota
|
|
WorkConn
|
|
)
|