| 254 | |
| 255 | |
| 256 | void SDP::SendNewCandidate(Writer& writer,SDPCandidate& candidate) { |
| 257 | DataWriter& packet = writer.writeInvocation("__ice"); |
| 258 | packet.beginObject(); |
| 259 | packet.writeStringProperty("candidate",candidate.candidate); |
| 260 | // TODO add? packet.writeStringProperty("sdpMid",candidate.mid); |
| 261 | packet.writeNumberProperty("sdpMLineIndex",(double)candidate.mLineIndex); |
| 262 | packet.endObject(); |
| 263 | } |
| 264 | |
| 265 | } // namespace Mona |
nothing calls this directly
no test coverage detected