IP -> Address in public API

ICE RFC specifies this value as `Address` and not IP. We need to fix
this divergence to implement mDNS

Relates to pion/webrtc#699
This commit is contained in:
Sean DuBois
2019-06-20 14:12:59 -07:00
committed by adwpc
parent b28205a1f1
commit acbf5671b7
11 changed files with 84 additions and 54 deletions

View File

@@ -54,4 +54,7 @@ var (
// ErrPasswordEmpty indicates agent was give TURN URL with an empty Password
ErrPasswordEmpty = errors.New("password is empty")
// ErrAddressParseFailed indicates we were unable to parse a candidate address
ErrAddressParseFailed = errors.New("failed to parse address")
)