mirror of
https://github.com/duanhf2012/origin.git
synced 2026-02-04 06:54:45 +08:00
15 lines
292 B
Go
15 lines
292 B
Go
package event
|
|
|
|
type EventType int
|
|
|
|
//大于Sys_Event_User_Define给用户定义
|
|
const (
|
|
Sys_Event_Tcp_Connected EventType= 1
|
|
Sys_Event_Tcp_DisConnected EventType= 2
|
|
Sys_Event_Tcp_RecvPack EventType = 3
|
|
Sys_Event_Tcp_PackException EventType = 4
|
|
|
|
Sys_Event_User_Define EventType = 1000
|
|
)
|
|
|