sip-lab 1.29.0 → 1.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build_deps.sh +2 -1
- package/index.js +1 -0
- package/package.json +2 -2
- package/prebuilds/linux-x64/node.abi102.node +0 -0
- package/prebuilds/linux-x64/node.abi108.node +0 -0
- package/prebuilds/linux-x64/node.abi111.node +0 -0
- package/prebuilds/linux-x64/node.abi115.node +0 -0
- package/prebuilds/linux-x64/node.abi120.node +0 -0
- package/prebuilds/linux-x64/node.abi88.node +0 -0
- package/prebuilds/linux-x64/node.abi93.node +0 -0
- package/samples/custom_call_id.js +219 -0
- package/samples/custom_call_id_and_from_tag.js.future +224 -0
- package/samples/media_fields.js +190 -0
- package/samples/mrcp_and_audio.js +0 -12
- package/samples/send_and_receive_bfsk.js.future +171 -0
- package/samples/session_expires.update.js.future +268 -0
- package/samples/session_expires.update.with_sipjs-lab.js +312 -0
- package/samples_extra/ws_speech_server.bfsk.js +154 -0
- package/samples_extra/ws_speech_server.dtmf.js +5 -21
- package/samples_extra/ws_speech_server.google.js +8 -10
- package/samples_extra/ws_speech_server.send_bfsk.js +156 -0
- package/samples_extra/ws_speech_server.start_bfsk_detection.js.future +164 -0
- package/src/addon.cpp +35 -0
- package/src/pjmedia/include/pjmedia/bfsk_det.h +0 -2
- package/src/pjmedia/include/pjmedia/ws_speech_port.h +1 -0
- package/src/pjmedia/src/pjmedia/bfsk_det.c +153 -27
- package/src/pjmedia/src/pjmedia/ws_speech_port.cpp +8 -0
- package/src/sip.cpp +206 -82
- package/src/sip.cpp.old +9236 -0
- package/src/sip.hpp +2 -0
package/src/sip.hpp
CHANGED
|
@@ -45,6 +45,8 @@ int pjw_call_send_bfsk(long call_id, const char *json);
|
|
|
45
45
|
|
|
46
46
|
int pjw_call_reinvite(long call_id, const char *json);
|
|
47
47
|
|
|
48
|
+
int pjw_call_update(long call_id, const char *json);
|
|
49
|
+
|
|
48
50
|
int pjw_call_send_request(long call_id, const char *json);
|
|
49
51
|
|
|
50
52
|
int pjw_call_start_record_wav(long call_id, const char *file);
|