Skip to content

Firefox required tcptype in tcp ICE candidate #282

@Horcrux7

Description

@Horcrux7

The Firefox can't parse a tcp ICE candidate if the attribute tcptype is missing. The class TcpHostCandidate contains a value of CandidateTcpType but the toString() method does not add it.

The follow Code should be added to the method Candidate.toString()

        CandidateTcpType tcpType= getTcpType();
        if (tcpType!= null)
        {
            buff.append(" tcptype ").append(tcpType);
        }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions