Confirmed users
69
edits
| Line 13: | Line 13: | ||
* And <code>media/webrtc/signaling/src/softphonewrapper/CC_SIPCCCall.cpp</code>. Note that this is just calling a wrapper and this is where the C++/C transition takes place: | * And <code>media/webrtc/signaling/src/softphonewrapper/CC_SIPCCCall.cpp</code>. Note that this is just calling a wrapper and this is where the C++/C transition takes place: | ||
void CC_SIPCCCall::setPeerConnection(const std::string& handle) | |||
{ | { | ||
CSFLogDebug(logTag, "setPeerConnection"); | CSFLogDebug(logTag, "setPeerConnection"); | ||
| Line 49: | Line 49: | ||
"SETPEERCONNECTION", | "SETPEERCONNECTION", | ||
* Implement the feature send which is a wrapper around a CPR send. The declaration goes in | * Implement the feature send which is a wrapper around a CPR send. The declaration goes in: <code>media/webrtc/signaling/src/sipcc/include/cc_call_feature.h</code> | ||
<code>media/webrtc/signaling/src/sipcc/include/cc_call_feature.h</code> | |||
cc_return_t CC_CallFeature_SetPeerConnection(cc_call_handle_t call_handle, cc_peerconnection_t pc); | cc_return_t CC_CallFeature_SetPeerConnection(cc_call_handle_t call_handle, cc_peerconnection_t pc); | ||