The encryption key subfield of the media description field is not
logged when it should be.
Ticket #7305
"optional": true,
"description": "Connection data per media description"
},
+ "encryption_key": {
+ "type": "string",
+ "optional": true,
+ "description":
+ "Field used to convey encryption keys if SDP is used over a secure channel"
+ },
"attributes": {
"type": "array",
"description":
if let Some(conn_data) = &m.connection_data {
log_connection_data(conn_data, js)?;
}
+ if let Some(enc_key) = &m.encryption_key {
+ js.set_string("encryption_key", enc_key)?;
+ }
if let Some(attrs) = &m.attributes {
log_attributes(attrs, js)?;
}