summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/webrtc/v3/ice_go.go
blob: 897ed0da37e5858d7e96b0e027d6582aeca00567 (plain)
1
2
3
4
5
6
7
8
9
10
// +build !js

package webrtc

// NewICETransport creates a new NewICETransport.
// This constructor is part of the ORTC API. It is not
// meant to be used together with the basic WebRTC API.
func (api *API) NewICETransport(gatherer *ICEGatherer) *ICETransport {
	return NewICETransport(gatherer, api.settingEngine.LoggerFactory)
}