Remove completely unused structs

This commit is contained in:
Sean Chittenden 2016-05-15 09:14:36 -07:00
parent b20f86b4c7
commit d25ab4440d
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 0 additions and 23 deletions

View File

@ -91,12 +91,6 @@ type handshakeRequest struct {
Version int32
}
type eventRequest struct {
Name string
Payload []byte
Coalesce bool
}
type forceLeaveRequest struct {
Node string
}
@ -149,10 +143,6 @@ type monitorRequest struct {
LogLevel string
}
type streamRequest struct {
Type string
}
type stopRequest struct {
Stop uint64
}
@ -161,14 +151,6 @@ type logRecord struct {
Log string
}
type userEventRecord struct {
Event string
LTime serf.LamportTime
Name string
Payload []byte
Coalesce bool
}
type Member struct {
Name string
Addr net.IP
@ -183,11 +165,6 @@ type Member struct {
DelegateCur uint8
}
type memberEventRecord struct {
Event string
Members []Member
}
type AgentRPC struct {
sync.Mutex
agent *Agent