mirror of https://github.com/status-im/consul.git
Remove completely unused structs
This commit is contained in:
parent
92298e3d02
commit
0e34cc3486
|
@ -91,12 +91,6 @@ type handshakeRequest struct {
|
||||||
Version int32
|
Version int32
|
||||||
}
|
}
|
||||||
|
|
||||||
type eventRequest struct {
|
|
||||||
Name string
|
|
||||||
Payload []byte
|
|
||||||
Coalesce bool
|
|
||||||
}
|
|
||||||
|
|
||||||
type forceLeaveRequest struct {
|
type forceLeaveRequest struct {
|
||||||
Node string
|
Node string
|
||||||
}
|
}
|
||||||
|
@ -149,10 +143,6 @@ type monitorRequest struct {
|
||||||
LogLevel string
|
LogLevel string
|
||||||
}
|
}
|
||||||
|
|
||||||
type streamRequest struct {
|
|
||||||
Type string
|
|
||||||
}
|
|
||||||
|
|
||||||
type stopRequest struct {
|
type stopRequest struct {
|
||||||
Stop uint64
|
Stop uint64
|
||||||
}
|
}
|
||||||
|
@ -161,14 +151,6 @@ type logRecord struct {
|
||||||
Log string
|
Log string
|
||||||
}
|
}
|
||||||
|
|
||||||
type userEventRecord struct {
|
|
||||||
Event string
|
|
||||||
LTime serf.LamportTime
|
|
||||||
Name string
|
|
||||||
Payload []byte
|
|
||||||
Coalesce bool
|
|
||||||
}
|
|
||||||
|
|
||||||
type Member struct {
|
type Member struct {
|
||||||
Name string
|
Name string
|
||||||
Addr net.IP
|
Addr net.IP
|
||||||
|
@ -183,11 +165,6 @@ type Member struct {
|
||||||
DelegateCur uint8
|
DelegateCur uint8
|
||||||
}
|
}
|
||||||
|
|
||||||
type memberEventRecord struct {
|
|
||||||
Event string
|
|
||||||
Members []Member
|
|
||||||
}
|
|
||||||
|
|
||||||
type AgentRPC struct {
|
type AgentRPC struct {
|
||||||
sync.Mutex
|
sync.Mutex
|
||||||
agent *Agent
|
agent *Agent
|
||||||
|
|
Loading…
Reference in New Issue