mirror of
				https://github.com/pion/webrtc.git
				synced 2025-10-31 18:52:55 +08:00 
			
		
		
		
	 2838b1a836
			
		
	
	2838b1a836
	
	
	
		
			
			Users are unable to use the callbacks inside `internal/ice`. Even though we alias things like OnSelectedCandidatePairChange are unusable since in the package they use `ice.Candidate` instead of `ICECandidate`
		
			
				
	
	
		
			10 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			284 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package webrtc
 | |
| 
 | |
| // ICEParameters includes the ICE username fragment
 | |
| // and password and other ICE-related parameters.
 | |
| type ICEParameters struct {
 | |
| 	UsernameFragment string `json:"usernameFragment"`
 | |
| 	Password         string `json:"password"`
 | |
| 	ICELite          bool   `json:"iceLite"`
 | |
| }
 |