We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c266797 commit b63b1d6Copy full SHA for b63b1d6
src/main/java/org/ice4j/ice/Candidate.java
@@ -776,6 +776,10 @@ public String toString()
776
buff.append(" rport ").append(relAddr.getPort());
777
}
778
779
+ if(getTcpType() != null) {
780
+ buff.append(" tcptype ").append(getTcpType());
781
+ }
782
+
783
return buff.toString();
784
785
src/main/java/org/ice4j/ice/sdp/CandidateAttribute.java
@@ -137,6 +137,10 @@ public String getValue()
137
138
139
140
+ if(candidate.getTcpType() != null) {
141
+ buff.append(" tcptype ").append(candidate.getTcpType());
142
143
144
145
146
0 commit comments