Skip to content

Commit a5c8126

Browse files
committed
Add tcptype to Candidate toString method
1 parent c266797 commit a5c8126

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/org/ice4j/ice/Candidate.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -776,6 +776,10 @@ public String toString()
776776
buff.append(" rport ").append(relAddr.getPort());
777777
}
778778

779+
if(getTcpType() != null) {
780+
buff.append(" tcptype ").append(getTcpType());
781+
}
782+
779783
return buff.toString();
780784
}
781785

0 commit comments

Comments
 (0)