- Sort Score
- Num 10 results
- Language All
Results 1 - 2 of 2 for outgoingBytes (0.06 seconds)
-
internal/grid/connection.go
authFn: o.authFn, } if debugPrint { // Random Mux ID c.NextID = rand.Uint64() } // Record per connection stats. c.outgoingBytes = func(n int64) { if o.outgoingBytes != nil { o.outgoingBytes(n) } c.outBytes.Add(n) } c.incomingBytes = func(n int64) { if o.incomingBytes != nil { o.incomingBytes(n) } c.inBytes.Add(n) }Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 46.9K bytes - Click Count (0) -
internal/grid/manager.go
id: m.ID, local: o.Local, remote: host, handlers: &m.handlers, blockConnect: o.BlockConnect, publisher: o.TraceTo, incomingBytes: o.Incoming, outgoingBytes: o.Outgoing, dialer: o.Dialer, authFn: o.AuthFn, }) } if !found { return nil, fmt.Errorf("grid: local host (%s) not found in cluster setup", o.Local) } return m, nilCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Nov 12 20:41:41 GMT 2024 - 10.8K bytes - Click Count (0)