2024-01-03 21:57:33 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2022-03-10 09:44:48 +00:00
|
|
|
// Package ice ...
|
2024-01-03 21:57:33 +00:00
|
|
|
//
|
2022-03-10 09:44:48 +00:00
|
|
|
//nolint:dupl
|
|
|
|
package ice
|
|
|
|
|
|
|
|
import "net"
|
|
|
|
|
|
|
|
// CandidatePeerReflexive ...
|
|
|
|
type CandidatePeerReflexive struct {
|
|
|
|
candidateBase
|
|
|
|
}
|
|
|
|
|
|
|
|
// CandidatePeerReflexiveConfig is the config required to create a new CandidatePeerReflexive
|
|
|
|
type CandidatePeerReflexiveConfig struct {
|
|
|
|
CandidateID string
|
|
|
|
Network string
|
|
|
|
Address string
|
|
|
|
Port int
|
|
|
|
Component uint16
|
|
|
|
Priority uint32
|
|
|
|
Foundation string
|
|
|
|
RelAddr string
|
|
|
|
RelPort int
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewCandidatePeerReflexive creates a new peer reflective candidate
|
|
|
|
func NewCandidatePeerReflexive(config *CandidatePeerReflexiveConfig) (*CandidatePeerReflexive, error) {
|
|
|
|
ip := net.ParseIP(config.Address)
|
|
|
|
if ip == nil {
|
|
|
|
return nil, ErrAddressParseFailed
|
|
|
|
}
|
|
|
|
|
|
|
|
networkType, err := determineNetworkType(config.Network, ip)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
candidateID := config.CandidateID
|
|
|
|
candidateIDGenerator := newCandidateIDGenerator()
|
|
|
|
if candidateID == "" {
|
|
|
|
candidateID = candidateIDGenerator.Generate()
|
|
|
|
}
|
|
|
|
|
|
|
|
return &CandidatePeerReflexive{
|
|
|
|
candidateBase: candidateBase{
|
|
|
|
id: candidateID,
|
|
|
|
networkType: networkType,
|
|
|
|
candidateType: CandidateTypePeerReflexive,
|
|
|
|
address: config.Address,
|
|
|
|
port: config.Port,
|
|
|
|
resolvedAddr: createAddr(networkType, ip, config.Port),
|
|
|
|
component: config.Component,
|
|
|
|
foundationOverride: config.Foundation,
|
|
|
|
priorityOverride: config.Priority,
|
|
|
|
relatedAddress: &CandidateRelatedAddress{
|
|
|
|
Address: config.RelAddr,
|
|
|
|
Port: config.RelPort,
|
|
|
|
},
|
2024-01-03 21:57:33 +00:00
|
|
|
remoteCandidateCaches: map[AddrPort]Candidate{},
|
2022-03-10 09:44:48 +00:00
|
|
|
},
|
|
|
|
}, nil
|
|
|
|
}
|