mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			138 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			138 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package sctp
 | 
						|
 | 
						|
type chunk interface {
 | 
						|
	unmarshal(raw []byte) error
 | 
						|
	marshal() ([]byte, error)
 | 
						|
	check() (bool, error)
 | 
						|
 | 
						|
	valueLength() int
 | 
						|
}
 |