Changeset 204 in code for trunk/user.go
- Timestamp:
- Apr 1, 2020, 2:02:31 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user.go
r203 r204 42 42 stopped chan struct{} 43 43 44 lock sync.Mutex45 conn *upstreamConn46 44 history map[string]uint64 45 46 lock sync.Mutex 47 conn *upstreamConn 47 48 } 48 49 … … 236 237 case eventDownstreamDisconnected: 237 238 dc := e.dc 239 240 for net, rc := range dc.ringConsumers { 241 seq := rc.Close() 242 net.history[dc.clientName] = seq 243 } 244 238 245 for i := range u.downstreamConns { 239 246 if u.downstreamConns[i] == dc {
Note:
See TracChangeset
for help on using the changeset viewer.