Changeset 781 in code for trunk/user.go
- Timestamp:
- Feb 11, 2022, 6:41:46 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/user.go
r777 r781 304 304 } 305 305 306 func (net *network) attach(c h *Channel) {306 func (net *network) attach(ctx context.Context, ch *Channel) { 307 307 if !ch.Detached { 308 308 return … … 330 330 331 331 if uch != nil { 332 forwardChannel( dc, uch)332 forwardChannel(ctx, dc, uch) 333 333 } 334 334 335 335 if detachedMsgID != "" { 336 dc.sendTargetBacklog(c ontext.TODO(), net, ch.Name, detachedMsgID)336 dc.sendTargetBacklog(ctx, net, ch.Name, detachedMsgID) 337 337 } 338 338 })
Note:
See TracChangeset
for help on using the changeset viewer.