fix compile issue

This commit is contained in:
Simon Morlat 2015-02-05 01:37:29 +01:00
parent 2003ca847a
commit 06fb5da198

View file

@ -21,6 +21,9 @@ MediaEncryptionResponse::MediaEncryptionResponse(LinphoneCore *core) : Response(
case LinphoneMediaEncryptionZRTP: case LinphoneMediaEncryptionZRTP:
ost << "zrtp\n"; ost << "zrtp\n";
break; break;
case LinphoneMediaEncryptionDTLS:
ost << "DTLS\n";
break;
} }
setBody(ost.str().c_str()); setBody(ost.str().c_str());
} }