mirror of
				https://github.com/aler9/gortsplib
				synced 2025-11-01 02:52:36 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			159 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package gortsplib
 | |
| 
 | |
| // StatsConn are connection statistics.
 | |
| type StatsConn struct {
 | |
| 	// received bytes
 | |
| 	BytesReceived uint64
 | |
| 	// sent bytes
 | |
| 	BytesSent uint64
 | |
| }
 | 
