Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for debugMsg (0.2 sec)

  1. internal/grid/connection.go

    func (c *Connection) Stats() ConnectionStats {
    	return ConnectionStats{
    		IncomingStreams: c.inStream.Size(),
    		OutgoingStreams: c.outgoing.Size(),
    	}
    }
    
    func (c *Connection) debugMsg(d debugMsg, args ...any) {
    	if debugPrint {
    		fmt.Println("debug: sending message", d, args)
    	}
    
    	switch d {
    	case debugShutdown:
    		c.updateState(StateShutdown)
    	case debugKillInbound:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42.6K bytes
    - Viewed (0)
Back to top