├── .clang-format ├── .copr └── Makefile ├── .github └── workflows │ └── build_test.yml ├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── Dockerfile-debian11 ├── Dockerfile-debian12 ├── Dockerfile-debian13 ├── Dockerfile-rhel10 ├── Dockerfile-rhel7 ├── Dockerfile-rhel8 ├── Dockerfile-rhel9 ├── Makefile ├── Makefile.defs ├── README.md ├── VERSION ├── apps ├── CMakeLists.txt ├── Makefile ├── ann_b2b │ ├── AnnounceB2B.cpp │ ├── AnnounceB2B.h │ ├── CMakeLists.txt │ ├── Makefile │ └── etc │ │ └── ann_b2b.conf ├── announce_transfer │ ├── AnnounceTransfer.cpp │ ├── AnnounceTransfer.h │ ├── CMakeLists.txt │ ├── Makefile │ └── etc │ │ └── announce_transfer.conf ├── announcement │ ├── Announcement.cpp │ ├── Announcement.h │ ├── CMakeLists.txt │ ├── Makefile │ └── etc │ │ └── announcement.conf ├── annrecorder │ ├── AnnRecorder.cpp │ ├── AnnRecorder.h │ ├── CMakeLists.txt │ ├── Makefile │ ├── etc │ │ └── annrecorder.conf │ └── wav │ │ ├── beep.wav │ │ ├── bye.wav │ │ ├── confirm.wav │ │ ├── greeting_set.wav │ │ ├── to_record.wav │ │ ├── welcome.wav │ │ └── your_prompt.wav ├── callback │ ├── CMakeLists.txt │ ├── CallBack.cpp │ ├── CallBack.h │ ├── Makefile │ └── etc │ │ └── callback.conf ├── click2dial │ ├── CMakeLists.txt │ ├── Click2Dial.cpp │ ├── Click2Dial.h │ ├── Makefile │ ├── TODO │ ├── etc │ │ └── click2dial.conf │ └── example.py ├── conf_auth │ ├── CMakeLists.txt │ ├── Makefile │ ├── conf_auth.py │ └── etc │ │ └── conf_auth.conf ├── conference │ ├── CMakeLists.txt │ ├── Conference.cpp │ ├── Conference.h │ ├── Makefile │ ├── etc │ │ └── conference.conf │ └── wav │ │ ├── beep.wav │ │ └── first_participant.wav ├── db_reg_agent │ ├── CMakeLists.txt │ ├── DBRegAgent.cpp │ ├── DBRegAgent.h │ ├── Makefile │ ├── RegistrationTimer.cpp │ ├── RegistrationTimer.h │ └── etc │ │ └── db_reg_agent.conf ├── diameter_client │ ├── CMakeLists.txt │ ├── DiameterClient.cpp │ ├── DiameterClient.h │ ├── Makefile │ ├── ServerConnection.cpp │ ├── ServerConnection.h │ └── lib_dbase │ │ ├── Makefile │ │ ├── avp.c │ │ ├── avp.h │ │ ├── defs.h │ │ ├── diameter_client.h │ │ ├── diameter_msg.c │ │ ├── diameter_msg.h │ │ ├── mem.h │ │ ├── str.h │ │ ├── tcp_comm.c │ │ └── tcp_comm.h ├── dsm │ ├── CMakeLists.txt │ ├── DSM.cpp │ ├── DSM.h │ ├── DSMCall.cpp │ ├── DSMCall.h │ ├── DSMChartReader.cpp │ ├── DSMChartReader.h │ ├── DSMCoreModule.cpp │ ├── DSMCoreModule.h │ ├── DSMElemContainer.cpp │ ├── DSMElemContainer.h │ ├── DSMModule.cpp │ ├── DSMModule.h │ ├── DSMSession.cpp │ ├── DSMSession.h │ ├── DSMStateDiagramCollection.cpp │ ├── DSMStateDiagramCollection.h │ ├── DSMStateEngine.cpp │ ├── DSMStateEngine.h │ ├── Makefile │ ├── SystemDSM.cpp │ ├── SystemDSM.h │ ├── etc │ │ ├── dsm.conf │ │ ├── dsm_in_prompts.conf │ │ └── dsm_out_prompts.conf │ ├── fsmc │ │ ├── fsmc-1.0.4-dsm-00.patch │ │ └── readme.txt │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── inbound_call.dsm │ │ └── outbound_call.dsm │ ├── mods │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Makefile.dsm_module │ │ ├── lib │ │ │ └── .placeholder │ │ ├── mod_aws │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModAws.cpp │ │ │ ├── ModAws.h │ │ │ └── etc │ │ │ │ └── aws.conf │ │ ├── mod_conference │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModConference.cpp │ │ │ └── ModConference.h │ │ ├── mod_curl │ │ │ ├── Makefile │ │ │ ├── ModCurl.cpp │ │ │ └── ModCurl.h │ │ ├── mod_dlg │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModDlg.cpp │ │ │ └── ModDlg.h │ │ ├── mod_groups │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModGroups.cpp │ │ │ └── ModGroups.h │ │ ├── mod_monitoring │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModMonitoring.cpp │ │ │ └── ModMonitoring.h │ │ ├── mod_mysql │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModMysql.cpp │ │ │ ├── ModMysql.h │ │ │ └── test │ │ │ │ ├── test_db.mysql │ │ │ │ └── test_modmysql.dsm │ │ ├── mod_py │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModPy.cpp │ │ │ ├── ModPy.h │ │ │ ├── PyDSM.cpp │ │ │ ├── PyDSM.h │ │ │ ├── PyDSMSession.cpp │ │ │ ├── PyDSMSession.h │ │ │ ├── python_inc.py │ │ │ └── python_lib.py │ │ ├── mod_redis │ │ │ ├── CMakeLists.txt │ │ │ ├── DBTypes.h │ │ │ ├── DRedisConnection.cpp │ │ │ ├── DRedisConnection.h │ │ │ ├── Makefile │ │ │ ├── ModRedis.cpp │ │ │ └── ModRedis.h │ │ ├── mod_regex │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModRegex.cpp │ │ │ ├── ModRegex.h │ │ │ └── etc │ │ │ │ └── mod_regex.conf │ │ ├── mod_sbc │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModSbc.cpp │ │ │ └── ModSbc.h │ │ ├── mod_subscription │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModSubscription.cpp │ │ │ └── ModSubscription.h │ │ ├── mod_sys │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModSys.cpp │ │ │ └── ModSys.h │ │ ├── mod_uri │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModUri.cpp │ │ │ └── ModUri.h │ │ ├── mod_utils │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── ModUtils.cpp │ │ │ └── ModUtils.h │ │ ├── mod_xml │ │ │ ├── Makefile │ │ │ ├── ModXml.cpp │ │ │ └── ModXml.h │ │ └── mod_zrtp │ │ │ ├── Makefile │ │ │ ├── ModZrtp.cpp │ │ │ └── ModZrtp.h │ └── tools │ │ ├── Makefile │ │ └── sems-dsm-reload ├── early_announce │ ├── CMakeLists.txt │ ├── EarlyAnnounce.cpp │ ├── EarlyAnnounce.h │ ├── Makefile │ └── etc │ │ └── early_announce.conf ├── early_dbprompt │ ├── CMakeLists.txt │ ├── early_dbprompt.dsm │ └── etc │ │ └── early_dbprompt.conf ├── examples │ ├── Makefile │ ├── Readme.examples │ ├── announce_auth │ │ ├── AnnounceAuth.cpp │ │ ├── AnnounceAuth.h │ │ ├── Makefile │ │ ├── Readme.announce_auth │ │ └── etc │ │ │ └── announce_auth.conf │ ├── b2b_connect │ │ ├── Makefile │ │ ├── Readme.b2b_connect │ │ ├── b2b_connect.cpp │ │ ├── b2b_connect.h │ │ ├── etc │ │ │ └── b2b_connect.conf │ │ └── test │ │ │ ├── g711a.pcap │ │ │ └── uac_pcap_relay.xml │ ├── cacheannounce │ │ ├── CacheAnnounce.cpp │ │ ├── CacheAnnounce.h │ │ ├── Makefile │ │ ├── Readme.cacheannounce │ │ └── etc │ │ │ └── cacheannounce.conf │ ├── call_gen │ │ ├── CallGen.cpp │ │ ├── CallGen.h │ │ ├── Makefile │ │ ├── Readme.callgen │ │ ├── etc │ │ │ └── callgen.conf │ │ └── wav │ │ │ ├── 0.wav │ │ │ ├── 1.wav │ │ │ ├── 2.wav │ │ │ ├── 3.wav │ │ │ ├── 4.wav │ │ │ ├── 5.wav │ │ │ ├── 6.wav │ │ │ ├── 7.wav │ │ │ ├── 8.wav │ │ │ ├── 9.wav │ │ │ ├── p.wav │ │ │ └── s.wav │ ├── db_announce │ │ ├── Makefile │ │ ├── Readme.db_announce │ │ ├── announcement.conf │ │ └── announcement.py │ ├── di_dialer │ │ ├── DIDial.cpp │ │ ├── DIDial.h │ │ ├── Makefile │ │ ├── Readme.di_dial │ │ ├── etc │ │ │ └── di_dial.conf │ │ └── test_sh │ ├── di_log │ │ ├── DILog.cpp │ │ ├── DILog.h │ │ ├── Makefile │ │ └── Readme.di_log │ ├── dtmftester │ │ ├── DtmfTester.cpp │ │ ├── DtmfTester.h │ │ ├── Makefile │ │ ├── Readme.dtmftester │ │ ├── etc │ │ │ └── dtmf_tester.conf │ │ └── wav │ │ │ ├── 0.wav │ │ │ ├── 1.wav │ │ │ ├── 10.wav │ │ │ ├── 11.wav │ │ │ ├── 12.wav │ │ │ ├── 13.wav │ │ │ ├── 14.wav │ │ │ ├── 15.wav │ │ │ ├── 2.wav │ │ │ ├── 3.wav │ │ │ ├── 4.wav │ │ │ ├── 5.wav │ │ │ ├── 6.wav │ │ │ ├── 7.wav │ │ │ ├── 8.wav │ │ │ ├── 9.wav │ │ │ └── prompt.wav │ ├── early_record │ │ ├── EarlyRecord.cpp │ │ ├── EarlyRecord.h │ │ ├── Makefile │ │ └── Readme.earlyrecord │ ├── ivr_examples │ │ ├── Readme.ivr_examples │ │ ├── b2b_out.py │ │ ├── b2bua.py │ │ ├── call_center.py │ │ ├── db_balance.py │ │ ├── play.py │ │ ├── rec.py │ │ ├── test_mp3.py │ │ └── tmpfile.py │ ├── jukecall │ │ ├── Jukecall.cpp │ │ ├── Jukecall.h │ │ ├── Makefile │ │ ├── Readme.jukecall │ │ └── wav │ │ │ ├── 1.wav │ │ │ ├── 2.wav │ │ │ ├── 3.wav │ │ │ ├── 4.wav │ │ │ └── greeting.wav │ ├── mixin_announce │ │ ├── Makefile │ │ ├── Readme.mixin_announce │ │ ├── etc │ │ │ └── mix_announce.conf │ │ ├── mix_announce.py │ │ └── py_comp │ ├── out_of_tree │ │ ├── Makefile │ │ ├── MyApp.cpp │ │ ├── MyApp.h │ │ └── Readme.myapp │ ├── pinauthconference │ │ ├── Makefile │ │ ├── PinAuthConference.cpp │ │ ├── PinAuthConference.h │ │ ├── Readme.pinauthconference │ │ ├── etc │ │ │ └── pinauthconference.conf │ │ └── wav │ │ │ └── beep.wav │ ├── py_sems_ex │ │ ├── Makefile │ │ ├── early_media.py │ │ └── jukecall.py │ ├── serviceline │ │ ├── Makefile │ │ ├── Readme.serviceline │ │ ├── ServiceLine.cpp │ │ ├── ServiceLine.h │ │ └── etc │ │ │ └── serviceline.conf │ ├── simple_conference │ │ ├── Makefile │ │ ├── Readme.simple_conference │ │ ├── SimpleConference.cpp │ │ ├── SimpleConference.h │ │ └── wav │ │ │ └── beep.wav │ ├── tutorial │ │ ├── Makefile │ │ ├── Readme.tutorial │ │ ├── annc_service │ │ │ ├── Makefile │ │ │ ├── Readme.annc_service │ │ │ ├── annc_service.py │ │ │ └── py_comp │ │ ├── cc_acc │ │ │ ├── CCAcc.cpp │ │ │ ├── CCAcc.h │ │ │ ├── Makefile │ │ │ └── Readme.cc_acc │ │ ├── cc_acc_xmlrpc │ │ │ ├── CCAcc.cpp │ │ │ ├── CCAcc.h │ │ │ ├── Makefile │ │ │ ├── Readme.cc_acc_xmlrpc │ │ │ └── server │ │ │ │ └── xmlrpcserver.py │ │ ├── ivr_announce │ │ │ ├── Makefile │ │ │ ├── Readme.ivr_announce │ │ │ ├── etc │ │ │ │ └── ivr_announce.conf │ │ │ ├── ivr_announce.py │ │ │ └── py_comp │ │ ├── myannounceapp │ │ │ ├── Makefile │ │ │ ├── MyAnnounceApp.cpp │ │ │ ├── MyAnnounceApp.h │ │ │ ├── Readme.myannounceapp │ │ │ └── etc │ │ │ │ └── myannounceapp.conf │ │ ├── myapp │ │ │ ├── Makefile │ │ │ ├── MyApp.cpp │ │ │ ├── MyApp.h │ │ │ └── Readme.myapp │ │ ├── mycc │ │ │ ├── Makefile │ │ │ ├── MyCC.cpp │ │ │ ├── MyCC.h │ │ │ ├── Readme.mycc │ │ │ └── etc │ │ │ │ └── mycc.conf │ │ ├── myconfigurableapp │ │ │ ├── Makefile │ │ │ ├── MyConfigurableApp.cpp │ │ │ ├── MyConfigurableApp.h │ │ │ ├── Readme.myconfigurableapp │ │ │ └── etc │ │ │ │ └── myconfigurableapp.conf │ │ └── myjukebox │ │ │ ├── Makefile │ │ │ ├── MyJukebox.cpp │ │ │ ├── MyJukebox.h │ │ │ ├── Readme.myjukebox │ │ │ └── etc │ │ │ └── myjukebox.conf │ └── urlcatcher │ │ ├── Makefile │ │ ├── Readme.urlcatcher │ │ ├── UrlCatcher.cpp │ │ ├── UrlCatcher.h │ │ └── etc │ │ └── urlcatcher.conf ├── gateway │ ├── CMakeLists.txt │ ├── GWSession.cpp │ ├── GWSession.h │ ├── GatewayFactory.cpp │ ├── GatewayFactory.h │ ├── Makefile │ ├── etc │ │ └── gateway.conf │ ├── globals.h │ ├── mISDNChannel.cpp │ ├── mISDNChannel.h │ ├── mISDNNames.cpp │ ├── mISDNNames.h │ ├── mISDNStack.cpp │ └── mISDNStack.h ├── ivr-python2 │ ├── CMakeLists.txt │ ├── IVRInterface.txt │ ├── Ivr.cpp │ ├── Ivr.h │ ├── IvrAudio.cpp │ ├── IvrAudio.h │ ├── IvrAudioMixIn.cpp │ ├── IvrAudioMixIn.h │ ├── IvrDialogBase.cpp │ ├── IvrDialogBase.h │ ├── IvrEvent.h │ ├── IvrNullAudio.cpp │ ├── IvrNullAudio.h │ ├── IvrSipDialog.cpp │ ├── IvrSipDialog.h │ ├── IvrSipReply.cpp │ ├── IvrSipReply.h │ ├── IvrSipRequest.cpp │ ├── IvrSipRequest.h │ ├── IvrUAC.cpp │ ├── IvrUAC.h │ ├── Makefile │ ├── Makefile.defs │ ├── Makefile.ivr_application │ ├── etc │ │ └── ivr.conf │ ├── moc │ │ ├── ivr.py │ │ └── log.py │ ├── py │ │ └── log.py │ ├── py_comp │ ├── python_inc.py │ └── python_lib.py ├── ivr │ ├── CMakeLists.txt │ ├── IVRInterface.txt │ ├── Ivr.cpp │ ├── Ivr.h │ ├── IvrAudio.cpp │ ├── IvrAudio.h │ ├── IvrAudioMixIn.cpp │ ├── IvrAudioMixIn.h │ ├── IvrDialogBase.cpp │ ├── IvrDialogBase.h │ ├── IvrEvent.h │ ├── IvrNullAudio.cpp │ ├── IvrNullAudio.h │ ├── IvrSipDialog.cpp │ ├── IvrSipDialog.h │ ├── IvrSipReply.cpp │ ├── IvrSipReply.h │ ├── IvrSipRequest.cpp │ ├── IvrSipRequest.h │ ├── IvrUAC.cpp │ ├── IvrUAC.h │ ├── Makefile │ ├── Makefile.defs │ ├── Makefile.ivr_application │ ├── etc │ │ └── ivr.conf │ ├── moc │ │ ├── ivr.py │ │ └── log.py │ ├── py │ │ └── log.py │ ├── py_comp │ ├── python_inc.py │ └── python_lib.py ├── jsonrpc │ ├── CMakeLists.txt │ ├── JsonRPC.cpp │ ├── JsonRPC.h │ ├── JsonRPCEvents.h │ ├── JsonRPCServer.cpp │ ├── JsonRPCServer.h │ ├── Makefile │ ├── RpcPeer.cpp │ ├── RpcPeer.h │ ├── RpcServerLoop.cpp │ ├── RpcServerLoop.h │ ├── RpcServerThread.cpp │ ├── RpcServerThread.h │ └── etc │ │ └── jsonrpc.conf ├── mailbox │ ├── CMakeLists.txt │ ├── Makefile │ ├── etc │ │ ├── mailbox.conf │ │ └── mailbox_query.conf │ ├── imap_mailbox │ │ ├── MailboxURL.py │ │ ├── __init__.py │ │ └── imap4ext.py │ ├── mailbox.py │ ├── mailbox_query.py │ └── wav │ │ ├── and.wav │ │ ├── beep.wav │ │ ├── bye.wav │ │ ├── default_en.wav │ │ ├── first_msg.wav │ │ ├── msg_deleted.wav │ │ ├── msg_menu.wav │ │ ├── msg_saved.wav │ │ ├── new_msg.wav │ │ ├── next_msg.wav │ │ ├── no_msg.wav │ │ ├── saved_msg.wav │ │ └── you_have.wav ├── mobile_push │ ├── CMakeLists.txt │ ├── etc │ │ └── mobile_push.conf │ ├── load_test │ │ ├── call_gen.py │ │ ├── example_server.py │ │ ├── mobilepush_loadtest.txt │ │ ├── reg_client.py │ │ └── sems_cfg │ │ │ └── core │ │ │ └── etc │ │ │ ├── callgen.conf │ │ │ ├── db_reg_agent.conf │ │ │ ├── sems.conf │ │ │ └── xmlrpc2di.conf │ └── mobile_push.dsm ├── monitoring │ ├── CMakeLists.txt │ ├── Makefile │ ├── Monitoring.cpp │ ├── Monitoring.h │ ├── etc │ │ └── monitoring.conf │ └── tools │ │ ├── Makefile │ │ ├── sems_get_callproperties.py │ │ ├── sems_list_active_calls.py │ │ ├── sems_list_calls.py │ │ └── sems_list_finished_calls.py ├── mp3 │ ├── CMakeLists.txt │ ├── Makefile │ └── mp3.c ├── msg_storage │ ├── CMakeLists.txt │ ├── Makefile │ ├── MsgStorage.cpp │ ├── MsgStorage.h │ ├── MsgStorageAPI.h │ └── etc │ │ └── msg_storage.conf ├── mwi │ ├── CMakeLists.txt │ ├── Makefile │ ├── etc │ │ └── mwi.conf │ ├── mwi.cpp │ └── mwi.h ├── pin_collect │ ├── CMakeLists.txt │ ├── Makefile │ ├── etc │ │ └── pin_collect.conf │ ├── pin_collect.py │ ├── test │ │ └── authserver.py │ └── wav │ │ ├── enter_pin.wav │ │ └── welcome.wav ├── precoded_announce │ ├── CMakeLists.txt │ ├── Makefile │ ├── PrecodedAnnounce.cpp │ ├── PrecodedAnnounce.h │ ├── etc │ │ └── precoded_announce.conf │ └── wav │ │ └── test.predef ├── py_sems │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.defs │ ├── Makefile.py_sems_application │ ├── PySems.cpp │ ├── PySems.h │ ├── PySemsAudio.cpp │ ├── PySemsAudio.h │ ├── PySemsB2ABDialog.cpp │ ├── PySemsB2ABDialog.h │ ├── PySemsB2BDialog.cpp │ ├── PySemsB2BDialog.h │ ├── PySemsDialog.cpp │ ├── PySemsDialog.h │ ├── PySemsUtils.cpp │ ├── PySemsUtils.h │ ├── etc │ │ └── py_sems.conf │ ├── py │ │ └── py_sems_log.py │ ├── py_comp │ ├── python_inc.py │ ├── python_lib.py │ └── sip │ │ ├── AmAudio.sip │ │ ├── AmMimeBody.sip │ │ ├── AmSipDialog.sip │ │ ├── AmSipReply.sip │ │ ├── AmSipRequest.sip │ │ ├── AmUtils.sip │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── PySemsB2ABDialog.sip │ │ ├── PySemsB2BDialog.sip │ │ ├── PySemsDialog.sip │ │ ├── configure.py │ │ ├── py_sems.sip │ │ └── string.sip ├── reg_agent │ ├── CMakeLists.txt │ ├── Makefile │ ├── RegistrationAgent.cpp │ ├── RegistrationAgent.h │ └── etc │ │ └── reg_agent.conf ├── registrar_client │ ├── CMakeLists.txt │ ├── Makefile │ ├── SIPRegistrarClient.cpp │ └── SIPRegistrarClient.h ├── rtmp │ ├── CMakeLists.txt │ ├── Makefile │ ├── Rtmp.cpp │ ├── Rtmp.h │ ├── RtmpAudio.cpp │ ├── RtmpAudio.h │ ├── RtmpConnection.cpp │ ├── RtmpConnection.h │ ├── RtmpSender.cpp │ ├── RtmpSender.h │ ├── RtmpServer.cpp │ ├── RtmpServer.h │ ├── RtmpSession.cpp │ ├── RtmpSession.h │ ├── RtmpUtils.cpp │ ├── RtmpUtils.h │ ├── etc │ │ └── rtmp.conf │ ├── flash_phone │ │ ├── Makefile │ │ ├── sono.as │ │ └── sono.mxml │ ├── librtmp │ │ ├── COPYING │ │ ├── Makefile │ │ ├── amf.c │ │ ├── amf.h │ │ ├── bytes.h │ │ ├── dh.h │ │ ├── dhgroups.h │ │ ├── handshake.h │ │ ├── hashswf.c │ │ ├── http.h │ │ ├── librtmp.3 │ │ ├── librtmp.3.html │ │ ├── librtmp.pc.in │ │ ├── log.c │ │ ├── log.h │ │ ├── parseurl.c │ │ ├── rtmp.c │ │ ├── rtmp.h │ │ └── rtmp_sys.h │ ├── speex2pcm.cxx │ └── test_srv.cxx ├── sbc │ ├── CMakeLists.txt │ ├── CallLeg.cpp │ ├── CallLeg.h │ ├── CallLegEvents.h │ ├── ExtendedCCInterface.h │ ├── HeaderFilter.cpp │ ├── HeaderFilter.h │ ├── Makefile │ ├── ParamReplacer.cpp │ ├── ParamReplacer.h │ ├── RTPParameters.cpp │ ├── RTPParameters.h │ ├── RateLimit.cpp │ ├── RateLimit.h │ ├── RegexMapper.cpp │ ├── RegexMapper.h │ ├── RegisterCache.cpp │ ├── RegisterCache.h │ ├── RegisterDialog.cpp │ ├── RegisterDialog.h │ ├── ReplacesMapper.cpp │ ├── ReplacesMapper.h │ ├── SBC.cpp │ ├── SBC.h │ ├── SBCCallControlAPI.h │ ├── SBCCallLeg.cpp │ ├── SBCCallLeg.h │ ├── SBCCallProfile.cpp │ ├── SBCCallProfile.h │ ├── SBCCallRegistry.cpp │ ├── SBCCallRegistry.h │ ├── SBCEventLog.cpp │ ├── SBCEventLog.h │ ├── SBCSimpleRelay.cpp │ ├── SBCSimpleRelay.h │ ├── SDPFilter.cpp │ ├── SDPFilter.h │ ├── SessionUpdate.cpp │ ├── SessionUpdate.h │ ├── SubscriptionDialog.cpp │ ├── SubscriptionDialog.h │ ├── arg_conversion.cpp │ ├── arg_conversion.h │ ├── call_control │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── bl_redis │ │ │ ├── BLRedis.cpp │ │ │ ├── BLRedis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── RedisConnectionPool.cpp │ │ │ ├── RedisConnectionPool.h │ │ │ └── etc │ │ │ │ └── bl_redis.conf │ │ ├── call_timer │ │ │ ├── CMakeLists.txt │ │ │ ├── CallTimer.cpp │ │ │ ├── CallTimer.h │ │ │ ├── Makefile │ │ │ └── etc │ │ │ │ └── cc_call_timer.conf │ │ ├── ctl │ │ │ ├── CCCtl.cpp │ │ │ ├── CCCtl.h │ │ │ ├── CMakeLists.txt │ │ │ └── Makefile │ │ ├── dsm │ │ │ ├── CCDSM.cpp │ │ │ ├── CCDSM.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── SBCDSMInstance.cpp │ │ │ ├── SBCDSMInstance.h │ │ │ └── SBCDSMParams.h │ │ ├── parallel_calls │ │ │ ├── CCParallelCalls.cpp │ │ │ ├── CCParallelCalls.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ └── etc │ │ │ │ └── cc_pcalls.conf │ │ ├── prepaid │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Prepaid.cpp │ │ │ └── Prepaid.h │ │ ├── prepaid_xmlrpc │ │ │ ├── Makefile │ │ │ ├── PrepaidXMLRPC.cpp │ │ │ ├── PrepaidXMLRPC.h │ │ │ ├── etc │ │ │ │ └── cc_prepaid_xmlrpc.conf │ │ │ └── server │ │ │ │ └── xmlrpcserver.py │ │ ├── registrar │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Registrar.cpp │ │ │ └── Registrar.h │ │ ├── rest │ │ │ ├── Makefile │ │ │ ├── RestModule.cpp │ │ │ ├── RestModule.h │ │ │ ├── RestParams.cpp │ │ │ └── RestParams.h │ │ ├── syslog_cdr │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── SyslogCDR.cpp │ │ │ ├── SyslogCDR.h │ │ │ └── etc │ │ │ │ └── cc_syslog_cdr.conf │ │ └── template │ │ │ ├── CCTemplate.cpp │ │ │ ├── CCTemplate.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── Readme.cc_template.txt │ │ │ └── etc │ │ │ └── cc_template.conf │ ├── etc │ │ ├── auth_b2b.sbcprofile.conf │ │ ├── call_timer.sbcprofile.conf │ │ ├── codecfilter.sbcprofile.conf │ │ ├── prepaid.sbcprofile.conf │ │ ├── refuse.sbcprofile.conf │ │ ├── replytranslate.sbcprofile.conf │ │ ├── sbc.conf │ │ ├── src_ipmap.conf │ │ ├── sst_b2b.sbcprofile.conf │ │ ├── symmetricrtp.sbcprofile.conf │ │ └── transparent.sbcprofile.conf │ ├── sbc_events.h │ └── tools │ │ ├── Makefile │ │ ├── sems-sbc-get-activeprofile │ │ ├── sems-sbc-get-regex-map-names │ │ ├── sems-sbc-list-profiles │ │ ├── sems-sbc-load-callcontrol-modules │ │ ├── sems-sbc-load-profile │ │ ├── sems-sbc-reload-profile │ │ ├── sems-sbc-reload-profiles │ │ ├── sems-sbc-set-activeprofile │ │ ├── sems-sbc-set-regex-map │ │ └── sems-sbc-teardown-call ├── twit │ ├── CMakeLists.txt │ ├── Makefile │ ├── etc │ │ └── twit.conf │ ├── twit.py │ └── wav │ │ ├── twit_account_msg.wav │ │ ├── twit_err_msg.wav │ │ ├── twit_ok_msg.wav │ │ ├── twit_posting_msg.wav │ │ └── twit_welcome.wav ├── voicebox │ ├── CMakeLists.txt │ ├── Makefile │ ├── PromptOptions.h │ ├── Voicebox.cpp │ ├── Voicebox.h │ ├── VoiceboxDialog.cpp │ ├── VoiceboxDialog.h │ ├── etc │ │ └── voicebox.conf │ ├── test │ │ └── ser_main.cfg │ └── wav │ │ ├── 0.wav │ │ ├── 1.wav │ │ ├── 10.wav │ │ ├── 11.wav │ │ ├── 12.wav │ │ ├── 13.wav │ │ ├── 14.wav │ │ ├── 15.wav │ │ ├── 16.wav │ │ ├── 17.wav │ │ ├── 18.wav │ │ ├── 19.wav │ │ ├── 2.wav │ │ ├── 20.wav │ │ ├── 3.wav │ │ ├── 30.wav │ │ ├── 4.wav │ │ ├── 40.wav │ │ ├── 5.wav │ │ ├── 50.wav │ │ ├── 6.wav │ │ ├── 60.wav │ │ ├── 7.wav │ │ ├── 70.wav │ │ ├── 8.wav │ │ ├── 80.wav │ │ ├── 9.wav │ │ ├── 90.wav │ │ ├── and.wav │ │ ├── bye.wav │ │ ├── first_new_msg.wav │ │ ├── first_saved_msg.wav │ │ ├── in_your_voicebox.wav │ │ ├── msg_deleted.wav │ │ ├── msg_end_menu.wav │ │ ├── msg_menu.wav │ │ ├── msg_saved.wav │ │ ├── new_msg.wav │ │ ├── new_msgs.wav │ │ ├── next_new_msg.wav │ │ ├── next_saved_msg.wav │ │ ├── no_more_msg.wav │ │ ├── no_msg.wav │ │ ├── pin_prompt.wav │ │ ├── saved_msg.wav │ │ ├── saved_msgs.wav │ │ ├── x1.wav │ │ ├── x2.wav │ │ ├── x3.wav │ │ ├── x4.wav │ │ ├── x5.wav │ │ ├── x6.wav │ │ ├── x7.wav │ │ ├── x8.wav │ │ ├── x9.wav │ │ └── you_have.wav ├── voicemail │ ├── AmMail.cpp │ ├── AmMail.h │ ├── AmSmtpClient.cpp │ ├── AmSmtpClient.h │ ├── AnswerMachine.cpp │ ├── AnswerMachine.h │ ├── CMakeLists.txt │ ├── EmailTemplate.cpp │ ├── EmailTemplate.h │ ├── Makefile │ ├── default.template │ ├── default.template.sample │ ├── etc │ │ └── voicemail.conf │ └── wav │ │ ├── beep.wav │ │ └── default_en.wav ├── webconference │ ├── CMakeLists.txt │ ├── CallStats.cpp │ ├── CallStats.h │ ├── Makefile │ ├── RoomInfo.cpp │ ├── RoomInfo.h │ ├── WebConference.cpp │ ├── WebConference.h │ ├── WebConferenceDialog.cpp │ ├── WebConferenceDialog.h │ ├── etc │ │ └── webconference.conf │ ├── pyqtgui │ │ ├── Makefile │ │ ├── README │ │ ├── account.py │ │ ├── account.ui │ │ ├── accountconfig.py.sample │ │ ├── callbox.py │ │ ├── callbox.ui │ │ ├── conftable.py │ │ ├── conftable.ui │ │ ├── participant.py │ │ ├── participant.ui │ │ └── webconference.py │ ├── tools │ │ ├── Makefile │ │ ├── sems-webconference-addparticipant │ │ ├── sems-webconference-roomcreate │ │ └── sems-webconference-roominfo │ └── wav │ │ ├── 0.wav │ │ ├── 1.wav │ │ ├── 2.wav │ │ ├── 3.wav │ │ ├── 4.wav │ │ ├── 5.wav │ │ ├── 6.wav │ │ ├── 7.wav │ │ ├── 8.wav │ │ ├── 9.wav │ │ ├── beep.wav │ │ ├── entering_conference.wav │ │ ├── first_participant.wav │ │ ├── pin_prompt.wav │ │ ├── wrong_pin.wav │ │ └── wrong_pin_bye.wav └── xmlrpc2di │ ├── CMakeLists.txt │ ├── Makefile │ ├── MultithreadXmlRpcServer.cpp │ ├── MultithreadXmlRpcServer.h │ ├── TOXmlRpcClient.cpp │ ├── TOXmlRpcClient.h │ ├── XMLRPC2DI.cpp │ ├── XMLRPC2DI.h │ ├── etc │ └── xmlrpc2di.conf │ ├── xmlrpc++ │ ├── .cvsignore │ ├── COPYING │ ├── Makefile │ ├── README.html │ ├── XmlRpc.sln │ ├── XmlRpc.vcproj │ ├── src │ │ ├── Doxyfile │ │ ├── XmlRpc.h │ │ ├── XmlRpcClient.cpp │ │ ├── XmlRpcClient.h │ │ ├── XmlRpcDispatch.cpp │ │ ├── XmlRpcDispatch.h │ │ ├── XmlRpcException.h │ │ ├── XmlRpcMutex.cpp │ │ ├── XmlRpcMutex.h │ │ ├── XmlRpcServer.cpp │ │ ├── XmlRpcServer.h │ │ ├── XmlRpcServerConnection.cpp │ │ ├── XmlRpcServerConnection.h │ │ ├── XmlRpcServerMethod.cpp │ │ ├── XmlRpcServerMethod.h │ │ ├── XmlRpcSocket.cpp │ │ ├── XmlRpcSocket.h │ │ ├── XmlRpcSource.cpp │ │ ├── XmlRpcSource.h │ │ ├── XmlRpcThread.cpp │ │ ├── XmlRpcThread.h │ │ ├── XmlRpcThreadedServer.cpp │ │ ├── XmlRpcThreadedServer.h │ │ ├── XmlRpcUtil.cpp │ │ ├── XmlRpcUtil.h │ │ ├── XmlRpcValue.cpp │ │ ├── XmlRpcValue.h │ │ └── base64.h │ ├── test │ │ ├── .cvsignore │ │ ├── FileClient.cpp │ │ ├── FileClient.dsp │ │ ├── FileClient.vcproj │ │ ├── HelloClient.cpp │ │ ├── HelloClient.dsp │ │ ├── HelloClient.vcproj │ │ ├── HelloServer.cpp │ │ ├── HelloServer.dsp │ │ ├── HelloServer.vcproj │ │ ├── Makefile │ │ ├── TestBase64Client.cpp │ │ ├── TestBase64Client.dsp │ │ ├── TestBase64Client.vcproj │ │ ├── TestBase64Server.cpp │ │ ├── TestBase64Server.dsp │ │ ├── TestBase64Server.vcproj │ │ ├── TestEGroupwareSSLClient.cpp │ │ ├── TestValues.cpp │ │ ├── TestValues.dsp │ │ ├── TestValues.vcproj │ │ ├── TestValuesWin32.cpp │ │ ├── TestXml.cpp │ │ ├── TestXml.dsp │ │ ├── TestXml.vcproj │ │ ├── Validator.cpp │ │ ├── Validator.dsp │ │ ├── Validator.vcproj │ │ ├── arrayOfStructsTest.xml │ │ ├── countTheEntities.xml │ │ ├── easyStructTest.xml │ │ ├── echo.xml │ │ ├── echoStructTest.xml │ │ └── pngnow.png │ ├── xmlrpc.dsp │ └── xmlrpc.dsw │ └── xmlrpcpp07_sems.patch ├── beautify.sh ├── cmake ├── FindBcg729.cmake ├── FindCodec2.cmake ├── FindFlite.cmake ├── FindGsm.cmake ├── FindHiredis.cmake ├── FindIlbc.cmake ├── FindLame.cmake ├── FindLibev.cmake ├── FindLibevent2.cmake ├── FindLibrtmp.cmake ├── FindLibsamplerate.cmake ├── FindLibzrtp.cmake ├── FindMISDN.cmake ├── FindMpg123.cmake ├── FindMySQLcppconn.cmake ├── FindMySQLpp.cmake ├── FindOpus.cmake ├── FindSIP.cmake ├── FindSpandsp.cmake ├── FindSpeex.cmake ├── audio.rules.txt ├── config.rules.txt ├── doc.rules.txt ├── dsm.lib.rules.txt ├── dsm.script.rules.txt ├── module.rules.txt ├── python.rules.txt ├── sbc.call_control.rules.txt └── template.rules.txt ├── core ├── Am100rel.cpp ├── Am100rel.h ├── AmAdvancedAudio.cpp ├── AmAdvancedAudio.h ├── AmApi.cpp ├── AmApi.h ├── AmAppTimer.cpp ├── AmAppTimer.h ├── AmArg.cpp ├── AmArg.h ├── AmAudio.cpp ├── AmAudio.h ├── AmAudioFile.cpp ├── AmAudioFile.h ├── AmAudioMixIn.cpp ├── AmAudioMixIn.h ├── AmAudioMixer.cpp ├── AmAudioMixer.h ├── AmB2ABSession.cpp ├── AmB2ABSession.h ├── AmB2BMedia.cpp ├── AmB2BMedia.h ├── AmB2BSession.cpp ├── AmB2BSession.h ├── AmBasicSipDialog.cpp ├── AmBasicSipDialog.h ├── AmBufferedAudio.cpp ├── AmBufferedAudio.h ├── AmCachedAudioFile.cpp ├── AmCachedAudioFile.h ├── AmCallWatcher.cpp ├── AmCallWatcher.h ├── AmConferenceChannel.cpp ├── AmConferenceChannel.h ├── AmConferenceStatus.cpp ├── AmConferenceStatus.h ├── AmConfig.cpp ├── AmConfig.h ├── AmConfigReader.cpp ├── AmConfigReader.h ├── AmDtmfDetector.cpp ├── AmDtmfDetector.h ├── AmDtmfSender.cpp ├── AmDtmfSender.h ├── AmEvent.cpp ├── AmEvent.h ├── AmEventDispatcher.cpp ├── AmEventDispatcher.h ├── AmEventProcessingThread.cpp ├── AmEventProcessingThread.h ├── AmEventQueue.cpp ├── AmEventQueue.h ├── AmEventQueueProcessor.cpp ├── AmEventQueueProcessor.h ├── AmJitterBuffer.cpp ├── AmJitterBuffer.h ├── AmMediaProcessor.cpp ├── AmMediaProcessor.h ├── AmMimeBody.cpp ├── AmMimeBody.h ├── AmMultiPartyMixer.cpp ├── AmMultiPartyMixer.h ├── AmOfferAnswer.cpp ├── AmOfferAnswer.h ├── AmPeriodicThread.cpp ├── AmPeriodicThread.h ├── AmPlaylist.cpp ├── AmPlaylist.h ├── AmPlayoutBuffer.cpp ├── AmPlayoutBuffer.h ├── AmPlugIn.cpp ├── AmPlugIn.h ├── AmPrecodedFile.cpp ├── AmPrecodedFile.h ├── AmPromptCollection.cpp ├── AmPromptCollection.h ├── AmRingTone.cpp ├── AmRingTone.h ├── AmRtpAudio.cpp ├── AmRtpAudio.h ├── AmRtpMuxStream.cpp ├── AmRtpMuxStream.h ├── AmRtpPacket.cpp ├── AmRtpPacket.h ├── AmRtpReceiver.cpp ├── AmRtpReceiver.h ├── AmRtpStream.cpp ├── AmRtpStream.h ├── AmSdp.cpp ├── AmSdp.h ├── AmSession.cpp ├── AmSession.h ├── AmSessionContainer.cpp ├── AmSessionContainer.h ├── AmSessionEventHandler.cpp ├── AmSessionEventHandler.h ├── AmSessionProcessor.cpp ├── AmSessionProcessor.h ├── AmSipDialog.cpp ├── AmSipDialog.h ├── AmSipDispatcher.cpp ├── AmSipDispatcher.h ├── AmSipEvent.cpp ├── AmSipEvent.h ├── AmSipHeaders.h ├── AmSipMsg.cpp ├── AmSipMsg.h ├── AmSipRegistration.cpp ├── AmSipRegistration.h ├── AmSipSubscription.cpp ├── AmSipSubscription.h ├── AmSipSubscriptionContainer.cpp ├── AmSipSubscriptionContainer.h ├── AmStats.h ├── AmThread.cpp ├── AmThread.h ├── AmUAC.cpp ├── AmUAC.h ├── AmUACAuth.cpp ├── AmUACAuth.h ├── AmUriParser.cpp ├── AmUriParser.h ├── AmUtils.cpp ├── AmUtils.h ├── AmZRTP.cpp ├── AmZRTP.h ├── CMakeLists.txt ├── LowcFE.cpp ├── LowcFE.h ├── Makefile ├── SampleArray.cc ├── SampleArray.h ├── SipCtrlInterface.cpp ├── SipCtrlInterface.h ├── amci │ ├── amci.h │ └── codecs.h ├── ampi │ ├── DiameterClientAPI.h │ ├── MonitoringAPI.h │ ├── SIPRegistrarClientAPI.h │ └── UACAuthAPI.h ├── atomic_types.h ├── compat │ ├── getarch.c │ ├── getos.c │ └── solaris.h ├── config.h ├── crc4.cpp ├── crc4.h ├── etc │ ├── app_mapping.conf.sample │ ├── sems.conf.sample │ └── zrtp.conf ├── hash_table.h ├── jsonArg.cpp ├── jsonArg.h ├── jsonxx.cpp ├── jsonxx.h ├── lib │ └── .placeholder ├── log.cpp ├── log.h ├── md5.cpp ├── md5.h ├── md5global.h ├── plug-in │ ├── CMakeLists.txt │ ├── Makefile │ ├── Makefile.app_module │ ├── Makefile.audio_module │ ├── adpcm │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README_G711 │ │ ├── adpcm.c │ │ ├── g711.c │ │ ├── g711.h │ │ ├── g721.c │ │ ├── g723_16.c │ │ ├── g723_24.c │ │ ├── g723_40.c │ │ ├── g72x.c │ │ └── g72x.h │ ├── codec2 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── codec2.c │ │ └── codec2.h │ ├── echo │ │ ├── AmAudioEcho.cpp │ │ ├── AmAudioEcho.h │ │ ├── CMakeLists.txt │ │ ├── Echo.cpp │ │ ├── Echo.h │ │ ├── Makefile │ │ └── etc │ │ │ └── echo.conf │ ├── g722 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Readme.g722codec │ │ └── g722.c │ ├── g729 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Readme.g729.md │ │ └── g729.c │ ├── gsm │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── gsm.c │ ├── ilbc │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── iLBC_rfc3951 │ │ │ ├── FrameClassify.c │ │ │ ├── FrameClassify.h │ │ │ ├── LPCdecode.c │ │ │ ├── LPCdecode.h │ │ │ ├── LPCencode.c │ │ │ ├── LPCencode.h │ │ │ ├── Makefile │ │ │ ├── StateConstructW.c │ │ │ ├── StateConstructW.h │ │ │ ├── StateSearchW.c │ │ │ ├── StateSearchW.h │ │ │ ├── anaFilter.c │ │ │ ├── anaFilter.h │ │ │ ├── constants.c │ │ │ ├── constants.h │ │ │ ├── createCB.c │ │ │ ├── createCB.h │ │ │ ├── doCPLC.c │ │ │ ├── doCPLC.h │ │ │ ├── enhancer.c │ │ │ ├── enhancer.h │ │ │ ├── filter.c │ │ │ ├── filter.h │ │ │ ├── gainquant.c │ │ │ ├── gainquant.h │ │ │ ├── getCBvec.c │ │ │ ├── getCBvec.h │ │ │ ├── helpfun.c │ │ │ ├── helpfun.h │ │ │ ├── hpInput.c │ │ │ ├── hpInput.h │ │ │ ├── hpOutput.c │ │ │ ├── hpOutput.h │ │ │ ├── iCBConstruct.c │ │ │ ├── iCBConstruct.h │ │ │ ├── iCBSearch.c │ │ │ ├── iCBSearch.h │ │ │ ├── iLBC_decode.c │ │ │ ├── iLBC_decode.h │ │ │ ├── iLBC_define.h │ │ │ ├── iLBC_encode.c │ │ │ ├── iLBC_encode.h │ │ │ ├── iLBC_test │ │ │ │ └── iLBC_test.c │ │ │ ├── lsf.c │ │ │ ├── lsf.h │ │ │ ├── packing.c │ │ │ ├── packing.h │ │ │ ├── syntFilter.c │ │ │ └── syntFilter.h │ │ └── ilbc.c │ ├── isac │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── isac.c │ │ └── libisac │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── PATENTS │ │ │ ├── arith_routines.c │ │ │ ├── arith_routines.h │ │ │ ├── arith_routines_hist.c │ │ │ ├── arith_routines_logist.c │ │ │ ├── auto_corr_to_refl_coef.c │ │ │ ├── auto_correlation.c │ │ │ ├── bandwidth_estimator.c │ │ │ ├── bandwidth_estimator.h │ │ │ ├── codec.h │ │ │ ├── complex_bit_reverse.c │ │ │ ├── complex_fft.c │ │ │ ├── copy_set_operations.c │ │ │ ├── crc.c │ │ │ ├── crc.h │ │ │ ├── cross_correlation.c │ │ │ ├── decode.c │ │ │ ├── decode_bwe.c │ │ │ ├── division_operations.c │ │ │ ├── dot_product_with_scale.c │ │ │ ├── downsample_fast.c │ │ │ ├── encode.c │ │ │ ├── encode_lpc_swb.c │ │ │ ├── encode_lpc_swb.h │ │ │ ├── energy.c │ │ │ ├── entropy_coding.c │ │ │ ├── entropy_coding.h │ │ │ ├── fft.c │ │ │ ├── fft.h │ │ │ ├── filter_ar.c │ │ │ ├── filter_ar_fast_q12.c │ │ │ ├── filter_functions.c │ │ │ ├── filter_ma_fast_q12.c │ │ │ ├── filterbank_tables.c │ │ │ ├── filterbank_tables.h │ │ │ ├── filterbanks.c │ │ │ ├── get_hanning_window.c │ │ │ ├── get_scaling_square.c │ │ │ ├── ilbc_specific_functions.c │ │ │ ├── intialize.c │ │ │ ├── isac.c │ │ │ ├── isac.gypi │ │ │ ├── isac.h │ │ │ ├── lattice.c │ │ │ ├── levinson_durbin.c │ │ │ ├── lpc_analysis.c │ │ │ ├── lpc_analysis.h │ │ │ ├── lpc_gain_swb_tables.c │ │ │ ├── lpc_gain_swb_tables.h │ │ │ ├── lpc_shape_swb12_tables.c │ │ │ ├── lpc_shape_swb12_tables.h │ │ │ ├── lpc_shape_swb16_tables.c │ │ │ ├── lpc_shape_swb16_tables.h │ │ │ ├── lpc_tables.c │ │ │ ├── lpc_tables.h │ │ │ ├── lpc_to_refl_coef.c │ │ │ ├── min_max_operations.c │ │ │ ├── min_max_operations_neon.c │ │ │ ├── os_specific_inline.h │ │ │ ├── pitch_estimator.c │ │ │ ├── pitch_estimator.h │ │ │ ├── pitch_filter.c │ │ │ ├── pitch_gain_tables.c │ │ │ ├── pitch_gain_tables.h │ │ │ ├── pitch_lag_tables.c │ │ │ ├── pitch_lag_tables.h │ │ │ ├── randomization_functions.c │ │ │ ├── refl_coef_to_lpc.c │ │ │ ├── resample.c │ │ │ ├── resample_48khz.c │ │ │ ├── resample_by_2.c │ │ │ ├── resample_by_2_internal.c │ │ │ ├── resample_by_2_internal.h │ │ │ ├── resample_fractional.c │ │ │ ├── settings.h │ │ │ ├── signal_processing_library.h │ │ │ ├── spectrum_ar_model_tables.c │ │ │ ├── spectrum_ar_model_tables.h │ │ │ ├── spl_inl.h │ │ │ ├── spl_inl_armv7.h │ │ │ ├── spl_sqrt.c │ │ │ ├── spl_sqrt_floor.c │ │ │ ├── spl_version.c │ │ │ ├── splitting_filter.c │ │ │ ├── sqrt_of_one_minus_x_squared.c │ │ │ ├── structs.h │ │ │ ├── transform.c │ │ │ ├── typedefs.h │ │ │ ├── vector_scaling_operations.c │ │ │ ├── webrtc_fft_t_1024_8.c │ │ │ └── webrtc_fft_t_rad.c │ ├── l16 │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── l16.c │ ├── opus │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── opus.c │ ├── session_timer │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── SessionTimer.cpp │ │ └── SessionTimer.h │ ├── silk │ │ ├── Makefile │ │ └── silk.c │ ├── speex │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ └── speex.c │ ├── stats │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── Statistics.cpp │ │ ├── Statistics.h │ │ ├── StatsUDPServer.cpp │ │ ├── StatsUDPServer.h │ │ ├── etc │ │ │ └── stats.conf │ │ └── query_stats.cxx │ ├── uac_auth │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── UACAuth.cpp │ │ └── UACAuth.h │ └── wav │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── g711.c │ │ ├── g711.h │ │ ├── wav.c │ │ ├── wav_hdr.c │ │ └── wav_hdr.h ├── resample │ ├── Makefile │ ├── resample.cpp │ └── resample.h ├── rtp │ ├── rtp.h │ └── telephone_event.h ├── sems.cpp ├── sems.h ├── singleton.h ├── sip │ ├── Makefile │ ├── async_file.cpp │ ├── async_file.h │ ├── async_file_writer.cpp │ ├── async_file_writer.h │ ├── cstring.h │ ├── defs.h │ ├── exclusive_file.cpp │ ├── exclusive_file.h │ ├── fifo_buffer.cpp │ ├── fifo_buffer.h │ ├── hash.cpp │ ├── hash.h │ ├── ip_util.cpp │ ├── ip_util.h │ ├── msg_fline.cpp │ ├── msg_fline.h │ ├── msg_hdrs.cpp │ ├── msg_hdrs.h │ ├── msg_logger.cpp │ ├── msg_logger.h │ ├── parse_100rel.cpp │ ├── parse_100rel.h │ ├── parse_common.cpp │ ├── parse_common.h │ ├── parse_cseq.cpp │ ├── parse_cseq.h │ ├── parse_dns.cpp │ ├── parse_dns.h │ ├── parse_extensions.cpp │ ├── parse_extensions.h │ ├── parse_from_to.cpp │ ├── parse_from_to.h │ ├── parse_header.cpp │ ├── parse_header.h │ ├── parse_nameaddr.cpp │ ├── parse_nameaddr.h │ ├── parse_next_hop.cpp │ ├── parse_next_hop.h │ ├── parse_route.cpp │ ├── parse_route.h │ ├── parse_uri.cpp │ ├── parse_uri.h │ ├── parse_via.cpp │ ├── parse_via.h │ ├── pcap_logger.cpp │ ├── pcap_logger.h │ ├── raw_sender.cpp │ ├── raw_sender.h │ ├── raw_sock.cpp │ ├── raw_sock.h │ ├── resolver.cpp │ ├── resolver.h │ ├── sip_parser.cpp │ ├── sip_parser.h │ ├── sip_parser_async.cpp │ ├── sip_parser_async.h │ ├── sip_timers.cpp │ ├── sip_timers.h │ ├── sip_trans.cpp │ ├── sip_trans.h │ ├── sip_ua.h │ ├── tcp_trsp.cpp │ ├── tcp_trsp.h │ ├── tr_blacklist.cpp │ ├── tr_blacklist.h │ ├── trans_layer.cpp │ ├── trans_layer.h │ ├── trans_table.cpp │ ├── trans_table.h │ ├── transport.cpp │ ├── transport.h │ ├── udp_trsp.cpp │ ├── udp_trsp.h │ ├── wheeltimer.cpp │ └── wheeltimer.h ├── tests │ ├── .gitignore │ ├── Makefile │ ├── fct.h │ ├── sems_tests.cpp │ ├── sems_tests.h │ ├── test_auth.cpp │ ├── test_auth.h │ ├── test_headers.cpp │ ├── test_headers.h │ ├── test_jsonarg.cpp │ ├── test_jsonarg.h │ ├── test_replaces.cpp │ ├── test_replaces.h │ ├── test_sdp.cpp │ ├── test_sdp.h │ ├── test_uriparser.cpp │ └── test_uriparser.h └── wav │ ├── beep.wav │ └── default_en.wav ├── doc ├── Applications.txt ├── CHANGELOG ├── COMPILING ├── COPYING ├── ComponentModules.txt ├── Howtostart_noproxy.txt ├── Howtostart_simpleproxy.txt ├── Howtostart_voicemail.txt ├── Makefile ├── README.stats ├── Readme.ann_b2b.txt ├── Readme.announce_transfer.txt ├── Readme.announcement.txt ├── Readme.annrecorder.txt ├── Readme.auth_b2b.txt ├── Readme.call_timer.txt ├── Readme.callback.txt ├── Readme.click2dial.txt ├── Readme.conf_auth.txt ├── Readme.conference.txt ├── Readme.db_reg_agent.txt ├── Readme.diameter_client.txt ├── Readme.early_announce.txt ├── Readme.echo.txt ├── Readme.iLBC.txt ├── Readme.ivr.txt ├── Readme.jsonrpc.txt ├── Readme.mailbox.txt ├── Readme.monitoring.txt ├── Readme.mp3plugin.txt ├── Readme.msg_storage.txt ├── Readme.pin_collect.txt ├── Readme.py_sems.txt ├── Readme.reg_agent.txt ├── Readme.registrar_client.txt ├── Readme.sbc.txt ├── Readme.sbc_call_control.txt ├── Readme.sst_b2b.txt ├── Readme.sw_prepaid_sip.txt ├── Readme.twit.txt ├── Readme.uac_auth.txt ├── Readme.voicebox.txt ├── Readme.voicemail.txt ├── Readme.webconference.txt ├── Readme.xmlrpc2di.txt ├── Tuning.txt ├── ZRTP.txt ├── doxygen_fulldoc_proj ├── doxygen_proj ├── dsm │ ├── Readme.dsm.txt │ ├── dsm_errorhandling.txt │ ├── dsm_sbc_syntax.txt │ ├── dsm_syntax.txt │ ├── dsm_todo.txt │ ├── examples │ │ ├── 183_early_establish.dsm │ │ ├── b2b_connect_audio │ │ │ ├── aas_callee.dsm │ │ │ └── aas_caller.dsm │ │ ├── b2b_connect_extension │ │ │ ├── connect_extension.dsm │ │ │ └── wav │ │ │ │ ├── Makefile │ │ │ │ ├── connecting.txt │ │ │ │ ├── enter_extension.txt │ │ │ │ ├── failed_enter_extension.txt │ │ │ │ └── sorry_problems.txt │ │ ├── call │ │ │ ├── callsub.dsm │ │ │ └── calltest.dsm │ │ ├── dsm_di_monit │ │ │ ├── Readme_ddm.txt │ │ │ ├── dsm_di_monitoring.dsm │ │ │ └── wav │ │ │ │ ├── change.wav │ │ │ │ ├── taken.wav │ │ │ │ └── welcome.wav │ │ ├── early_media.dsm │ │ ├── handle_cancel.dsm │ │ ├── late_reply.dsm │ │ ├── moddlg_late_early.dsm │ │ ├── pin │ │ │ ├── main.dsm │ │ │ └── ok_pin.dsm │ │ ├── play_file.dsm │ │ ├── sbc │ │ │ └── sbc_test_app │ │ │ │ ├── howto.txt │ │ │ │ ├── profile │ │ │ │ └── sbc_test_app_profile.sbcprofile.conf │ │ │ │ ├── sbc_test_app.conf │ │ │ │ └── test_sbc.dsm │ │ ├── test.dsm │ │ ├── test_b2b.dsm │ │ ├── test_byehdr.dsm │ │ ├── test_conference.dsm │ │ ├── test_conference_mute.dsm │ │ ├── test_dbfile.dsm │ │ ├── test_exception.dsm │ │ ├── test_popen.dsm │ │ ├── test_remoteunreachable.dsm │ │ ├── test_request_events.dsm │ │ ├── test_rtptimeout.dsm │ │ ├── test_system_dsm.dsm │ │ ├── test_systemevents.dsm │ │ └── test_teeconf.dsm │ ├── mods │ │ ├── Readme.mod_aws.txt │ │ ├── Readme.mod_conference.txt │ │ ├── Readme.mod_curl.txt │ │ ├── Readme.mod_dlg.txt │ │ ├── Readme.mod_groups.txt │ │ ├── Readme.mod_monitoring.txt │ │ ├── Readme.mod_mysql.txt │ │ ├── Readme.mod_py.txt │ │ ├── Readme.mod_redis │ │ ├── Readme.mod_regex.txt │ │ ├── Readme.mod_subscription.txt │ │ ├── Readme.mod_sys.txt │ │ ├── Readme.mod_uri.txt │ │ ├── Readme.mod_utils.txt │ │ ├── Readme.mod_xml.txt │ │ └── Readme.mod_zrtp.txt │ └── tutorials │ │ └── quizconnect │ │ ├── Readme.quizconnect_tutorial.txt │ │ ├── prompts │ │ ├── Makefile │ │ ├── sorry_pin_wrong.txt │ │ ├── sorry_pin_wrong.wav │ │ ├── welcome_callee.txt │ │ ├── welcome_callee.wav │ │ ├── welcome_caller.txt │ │ └── welcome_caller.wav │ │ ├── quizconnect.conf │ │ ├── quizconnect_callee.dsm │ │ ├── quizconnect_caller.dsm │ │ ├── quizconnect_tutorial.pdf │ │ └── quizconnect_tutorial.txt ├── figures │ ├── conference.dia │ ├── png │ │ ├── conference.png │ │ ├── service_invocation.png │ │ ├── singleinstance.png │ │ ├── two_instances_app_fixed.png │ │ ├── two_instances_app_param.png │ │ ├── voicemail.png │ │ ├── webconference.png │ │ └── webconference_dialout.png │ ├── service_invocation.dia │ ├── singleinstance.dia │ ├── two_instances_app_fixed.dia │ ├── two_instances_app_param.dia │ ├── voicemail.dia │ ├── webconference.dia │ └── webconference_dialout.dia ├── index.txt ├── munin-sems-stats-monitoring.pl ├── rtp_mux │ ├── rtp_mux.txt │ └── rtp_mux_protocol.txt ├── sbc │ ├── Readme.bl_redis.txt │ ├── Readme.cc_acc_xmlrpc │ ├── Readme.cc_ctl.txt │ ├── Readme.cc_dsm.txt │ ├── Readme.cc_registrar.txt │ ├── Readme.cc_rest.txt │ └── sample_config_regcache │ │ ├── exin.sbcprofile.conf │ │ ├── inex.sbcprofile.conf │ │ ├── interface_map.conf │ │ ├── method_map.conf │ │ ├── readme.txt │ │ ├── reg.sbcprofile.conf │ │ ├── sbc.conf │ │ └── sems.conf ├── sipp │ ├── README │ ├── monitoring.conf │ ├── sbc.conf │ ├── sems.conf │ ├── stats.conf │ ├── transparent.sbcprofile.conf │ ├── uac.xml │ ├── uas.xml │ └── zrtp.conf └── src │ ├── doc_applications.h │ ├── doc_componentmods.h │ ├── doc_exampleapps.h │ ├── doc_howtostart_noproxy.h │ ├── doc_howtostart_simpleproxy.h │ ├── doc_howtostart_voicemail.h │ ├── doc_sbc.h │ ├── doc_signals.h │ ├── doc_tutorialapps.h │ ├── doc_zrtp.h │ └── doxyref.h ├── pkg ├── deb │ ├── bookworm │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── sems.service │ │ ├── sems.tmpfile │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── bullseye │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── sems.service │ │ ├── sems.tmpfile │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── buster │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── jessie │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── precise │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── trixie │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── sems.service │ │ ├── sems.tmpfile │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ ├── trusty │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ │ └── format │ └── wheezy │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── libsems1-dev.install │ │ ├── rules │ │ ├── sems.default │ │ ├── sems.init │ │ ├── sems.lintian-overrides │ │ ├── sems.postinst │ │ ├── sems.postrm │ │ ├── shlibs.local │ │ └── source │ │ └── format ├── gentoo │ ├── files │ │ ├── sems-1.0.0_pre20080412-exclude_modules_colon.patch │ │ ├── sems.confd │ │ └── sems.rc6 │ └── sems-1.0.0_pre20080412.ebuild └── rpm │ ├── README │ ├── sems.init │ ├── sems.spec │ ├── sems.sysconfig │ ├── sems.systemd.service │ └── sems.systemd.tmpfiles.d.conf └── tools ├── CMakeLists.txt ├── Makefile ├── logfile-splitter.cpp ├── sems-rtp-mux-get-max-frame-age-ms ├── sems-rtp-mux-get-mtu-threshold ├── sems-rtp-mux-set-max-frame-age-ms └── sems-rtp-mux-set-mtu-threshold /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/.clang-format -------------------------------------------------------------------------------- /.copr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/.copr/Makefile -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile-debian11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-debian11 -------------------------------------------------------------------------------- /Dockerfile-debian12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-debian12 -------------------------------------------------------------------------------- /Dockerfile-debian13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-debian13 -------------------------------------------------------------------------------- /Dockerfile-rhel10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-rhel10 -------------------------------------------------------------------------------- /Dockerfile-rhel7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-rhel7 -------------------------------------------------------------------------------- /Dockerfile-rhel8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-rhel8 -------------------------------------------------------------------------------- /Dockerfile-rhel9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Dockerfile-rhel9 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/Makefile.defs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.0.1 -------------------------------------------------------------------------------- /apps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/CMakeLists.txt -------------------------------------------------------------------------------- /apps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/Makefile -------------------------------------------------------------------------------- /apps/ann_b2b/AnnounceB2B.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ann_b2b/AnnounceB2B.cpp -------------------------------------------------------------------------------- /apps/ann_b2b/AnnounceB2B.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ann_b2b/AnnounceB2B.h -------------------------------------------------------------------------------- /apps/ann_b2b/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ann_b2b/CMakeLists.txt -------------------------------------------------------------------------------- /apps/ann_b2b/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ann_b2b/Makefile -------------------------------------------------------------------------------- /apps/ann_b2b/etc/ann_b2b.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ann_b2b/etc/ann_b2b.conf -------------------------------------------------------------------------------- /apps/announcement/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/announcement/Makefile -------------------------------------------------------------------------------- /apps/annrecorder/AnnRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/annrecorder/AnnRecorder.h -------------------------------------------------------------------------------- /apps/annrecorder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/annrecorder/Makefile -------------------------------------------------------------------------------- /apps/annrecorder/wav/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/annrecorder/wav/beep.wav -------------------------------------------------------------------------------- /apps/annrecorder/wav/bye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/annrecorder/wav/bye.wav -------------------------------------------------------------------------------- /apps/callback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/callback/CMakeLists.txt -------------------------------------------------------------------------------- /apps/callback/CallBack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/callback/CallBack.cpp -------------------------------------------------------------------------------- /apps/callback/CallBack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/callback/CallBack.h -------------------------------------------------------------------------------- /apps/callback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/callback/Makefile -------------------------------------------------------------------------------- /apps/click2dial/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/CMakeLists.txt -------------------------------------------------------------------------------- /apps/click2dial/Click2Dial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/Click2Dial.cpp -------------------------------------------------------------------------------- /apps/click2dial/Click2Dial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/Click2Dial.h -------------------------------------------------------------------------------- /apps/click2dial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/Makefile -------------------------------------------------------------------------------- /apps/click2dial/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/TODO -------------------------------------------------------------------------------- /apps/click2dial/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/click2dial/example.py -------------------------------------------------------------------------------- /apps/conf_auth/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conf_auth/CMakeLists.txt -------------------------------------------------------------------------------- /apps/conf_auth/conf_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conf_auth/conf_auth.py -------------------------------------------------------------------------------- /apps/conf_auth/etc/conf_auth.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/conference/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conference/CMakeLists.txt -------------------------------------------------------------------------------- /apps/conference/Conference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conference/Conference.cpp -------------------------------------------------------------------------------- /apps/conference/Conference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conference/Conference.h -------------------------------------------------------------------------------- /apps/conference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conference/Makefile -------------------------------------------------------------------------------- /apps/conference/wav/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/conference/wav/beep.wav -------------------------------------------------------------------------------- /apps/db_reg_agent/DBRegAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/db_reg_agent/DBRegAgent.h -------------------------------------------------------------------------------- /apps/db_reg_agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/db_reg_agent/Makefile -------------------------------------------------------------------------------- /apps/diameter_client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/diameter_client/Makefile -------------------------------------------------------------------------------- /apps/dsm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/CMakeLists.txt -------------------------------------------------------------------------------- /apps/dsm/DSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSM.cpp -------------------------------------------------------------------------------- /apps/dsm/DSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSM.h -------------------------------------------------------------------------------- /apps/dsm/DSMCall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMCall.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMCall.h -------------------------------------------------------------------------------- /apps/dsm/DSMChartReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMChartReader.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMChartReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMChartReader.h -------------------------------------------------------------------------------- /apps/dsm/DSMCoreModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMCoreModule.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMCoreModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMCoreModule.h -------------------------------------------------------------------------------- /apps/dsm/DSMElemContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMElemContainer.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMElemContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMElemContainer.h -------------------------------------------------------------------------------- /apps/dsm/DSMModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMModule.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMModule.h -------------------------------------------------------------------------------- /apps/dsm/DSMSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMSession.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMSession.h -------------------------------------------------------------------------------- /apps/dsm/DSMStateEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMStateEngine.cpp -------------------------------------------------------------------------------- /apps/dsm/DSMStateEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/DSMStateEngine.h -------------------------------------------------------------------------------- /apps/dsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/Makefile -------------------------------------------------------------------------------- /apps/dsm/SystemDSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/SystemDSM.cpp -------------------------------------------------------------------------------- /apps/dsm/SystemDSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/SystemDSM.h -------------------------------------------------------------------------------- /apps/dsm/etc/dsm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/etc/dsm.conf -------------------------------------------------------------------------------- /apps/dsm/fsmc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/fsmc/readme.txt -------------------------------------------------------------------------------- /apps/dsm/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/lib/CMakeLists.txt -------------------------------------------------------------------------------- /apps/dsm/lib/inbound_call.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/lib/inbound_call.dsm -------------------------------------------------------------------------------- /apps/dsm/lib/outbound_call.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/lib/outbound_call.dsm -------------------------------------------------------------------------------- /apps/dsm/mods/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/CMakeLists.txt -------------------------------------------------------------------------------- /apps/dsm/mods/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/lib/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/lib/.placeholder -------------------------------------------------------------------------------- /apps/dsm/mods/mod_aws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_aws/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_aws/ModAws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_aws/ModAws.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_dlg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_dlg/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_dlg/ModDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_dlg/ModDlg.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_py/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_py/ModPy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_py/ModPy.cpp -------------------------------------------------------------------------------- /apps/dsm/mods/mod_py/ModPy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_py/ModPy.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_py/PyDSM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_py/PyDSM.cpp -------------------------------------------------------------------------------- /apps/dsm/mods/mod_py/PyDSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_py/PyDSM.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_sbc/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_sbc/ModSbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_sbc/ModSbc.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_sys/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_sys/ModSys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_sys/ModSys.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_uri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_uri/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_uri/ModUri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_uri/ModUri.h -------------------------------------------------------------------------------- /apps/dsm/mods/mod_xml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_xml/Makefile -------------------------------------------------------------------------------- /apps/dsm/mods/mod_xml/ModXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/mods/mod_xml/ModXml.h -------------------------------------------------------------------------------- /apps/dsm/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/dsm/tools/Makefile -------------------------------------------------------------------------------- /apps/dsm/tools/sems-dsm-reload: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sems-stats -c "DI dsm reloadDSMs" 3 | -------------------------------------------------------------------------------- /apps/early_announce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/early_announce/Makefile -------------------------------------------------------------------------------- /apps/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/examples/Makefile -------------------------------------------------------------------------------- /apps/examples/Readme.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/examples/Readme.examples -------------------------------------------------------------------------------- /apps/examples/di_log/DILog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/examples/di_log/DILog.cpp -------------------------------------------------------------------------------- /apps/examples/di_log/DILog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/examples/di_log/DILog.h -------------------------------------------------------------------------------- /apps/examples/di_log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/examples/di_log/Makefile -------------------------------------------------------------------------------- /apps/examples/tutorial/ivr_announce/etc/ivr_announce.conf: -------------------------------------------------------------------------------- 1 | announcement=/usr/local/lib/sems/audio/default.wav 2 | -------------------------------------------------------------------------------- /apps/gateway/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/CMakeLists.txt -------------------------------------------------------------------------------- /apps/gateway/GWSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/GWSession.cpp -------------------------------------------------------------------------------- /apps/gateway/GWSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/GWSession.h -------------------------------------------------------------------------------- /apps/gateway/GatewayFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/GatewayFactory.h -------------------------------------------------------------------------------- /apps/gateway/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/Makefile -------------------------------------------------------------------------------- /apps/gateway/etc/gateway.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/etc/gateway.conf -------------------------------------------------------------------------------- /apps/gateway/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/globals.h -------------------------------------------------------------------------------- /apps/gateway/mISDNChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNChannel.cpp -------------------------------------------------------------------------------- /apps/gateway/mISDNChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNChannel.h -------------------------------------------------------------------------------- /apps/gateway/mISDNNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNNames.cpp -------------------------------------------------------------------------------- /apps/gateway/mISDNNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNNames.h -------------------------------------------------------------------------------- /apps/gateway/mISDNStack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNStack.cpp -------------------------------------------------------------------------------- /apps/gateway/mISDNStack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/gateway/mISDNStack.h -------------------------------------------------------------------------------- /apps/ivr-python2/Ivr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/Ivr.cpp -------------------------------------------------------------------------------- /apps/ivr-python2/Ivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/Ivr.h -------------------------------------------------------------------------------- /apps/ivr-python2/IvrAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrAudio.cpp -------------------------------------------------------------------------------- /apps/ivr-python2/IvrAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrAudio.h -------------------------------------------------------------------------------- /apps/ivr-python2/IvrEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrEvent.h -------------------------------------------------------------------------------- /apps/ivr-python2/IvrSipReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrSipReply.h -------------------------------------------------------------------------------- /apps/ivr-python2/IvrUAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrUAC.cpp -------------------------------------------------------------------------------- /apps/ivr-python2/IvrUAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/IvrUAC.h -------------------------------------------------------------------------------- /apps/ivr-python2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/Makefile -------------------------------------------------------------------------------- /apps/ivr-python2/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/Makefile.defs -------------------------------------------------------------------------------- /apps/ivr-python2/etc/ivr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/etc/ivr.conf -------------------------------------------------------------------------------- /apps/ivr-python2/moc/ivr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/moc/ivr.py -------------------------------------------------------------------------------- /apps/ivr-python2/moc/log.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ivr-python2/py/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/py/log.py -------------------------------------------------------------------------------- /apps/ivr-python2/py_comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/py_comp -------------------------------------------------------------------------------- /apps/ivr-python2/python_inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/python_inc.py -------------------------------------------------------------------------------- /apps/ivr-python2/python_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr-python2/python_lib.py -------------------------------------------------------------------------------- /apps/ivr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/CMakeLists.txt -------------------------------------------------------------------------------- /apps/ivr/IVRInterface.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IVRInterface.txt -------------------------------------------------------------------------------- /apps/ivr/Ivr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/Ivr.cpp -------------------------------------------------------------------------------- /apps/ivr/Ivr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/Ivr.h -------------------------------------------------------------------------------- /apps/ivr/IvrAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrAudio.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrAudio.h -------------------------------------------------------------------------------- /apps/ivr/IvrAudioMixIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrAudioMixIn.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrAudioMixIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrAudioMixIn.h -------------------------------------------------------------------------------- /apps/ivr/IvrDialogBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrDialogBase.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrDialogBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrDialogBase.h -------------------------------------------------------------------------------- /apps/ivr/IvrEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrEvent.h -------------------------------------------------------------------------------- /apps/ivr/IvrNullAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrNullAudio.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrNullAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrNullAudio.h -------------------------------------------------------------------------------- /apps/ivr/IvrSipDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipDialog.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrSipDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipDialog.h -------------------------------------------------------------------------------- /apps/ivr/IvrSipReply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipReply.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrSipReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipReply.h -------------------------------------------------------------------------------- /apps/ivr/IvrSipRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipRequest.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrSipRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrSipRequest.h -------------------------------------------------------------------------------- /apps/ivr/IvrUAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrUAC.cpp -------------------------------------------------------------------------------- /apps/ivr/IvrUAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/IvrUAC.h -------------------------------------------------------------------------------- /apps/ivr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/Makefile -------------------------------------------------------------------------------- /apps/ivr/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/Makefile.defs -------------------------------------------------------------------------------- /apps/ivr/etc/ivr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/etc/ivr.conf -------------------------------------------------------------------------------- /apps/ivr/moc/ivr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/moc/ivr.py -------------------------------------------------------------------------------- /apps/ivr/moc/log.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/ivr/py/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/py/log.py -------------------------------------------------------------------------------- /apps/ivr/py_comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/py_comp -------------------------------------------------------------------------------- /apps/ivr/python_inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/python_inc.py -------------------------------------------------------------------------------- /apps/ivr/python_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/ivr/python_lib.py -------------------------------------------------------------------------------- /apps/jsonrpc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/CMakeLists.txt -------------------------------------------------------------------------------- /apps/jsonrpc/JsonRPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/JsonRPC.cpp -------------------------------------------------------------------------------- /apps/jsonrpc/JsonRPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/JsonRPC.h -------------------------------------------------------------------------------- /apps/jsonrpc/JsonRPCEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/JsonRPCEvents.h -------------------------------------------------------------------------------- /apps/jsonrpc/JsonRPCServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/JsonRPCServer.cpp -------------------------------------------------------------------------------- /apps/jsonrpc/JsonRPCServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/JsonRPCServer.h -------------------------------------------------------------------------------- /apps/jsonrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/Makefile -------------------------------------------------------------------------------- /apps/jsonrpc/RpcPeer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/RpcPeer.cpp -------------------------------------------------------------------------------- /apps/jsonrpc/RpcPeer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/RpcPeer.h -------------------------------------------------------------------------------- /apps/jsonrpc/RpcServerLoop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/RpcServerLoop.cpp -------------------------------------------------------------------------------- /apps/jsonrpc/RpcServerLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/RpcServerLoop.h -------------------------------------------------------------------------------- /apps/jsonrpc/RpcServerThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/RpcServerThread.h -------------------------------------------------------------------------------- /apps/jsonrpc/etc/jsonrpc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/jsonrpc/etc/jsonrpc.conf -------------------------------------------------------------------------------- /apps/mailbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mailbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/Makefile -------------------------------------------------------------------------------- /apps/mailbox/etc/mailbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/etc/mailbox.conf -------------------------------------------------------------------------------- /apps/mailbox/imap_mailbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/mailbox/mailbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/mailbox.py -------------------------------------------------------------------------------- /apps/mailbox/mailbox_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/mailbox_query.py -------------------------------------------------------------------------------- /apps/mailbox/wav/and.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/and.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/beep.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/bye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/bye.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/first_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/first_msg.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/msg_menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/msg_menu.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/msg_saved.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/msg_saved.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/new_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/new_msg.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/next_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/next_msg.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/no_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/no_msg.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/saved_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/saved_msg.wav -------------------------------------------------------------------------------- /apps/mailbox/wav/you_have.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mailbox/wav/you_have.wav -------------------------------------------------------------------------------- /apps/monitoring/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/monitoring/CMakeLists.txt -------------------------------------------------------------------------------- /apps/monitoring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/monitoring/Makefile -------------------------------------------------------------------------------- /apps/monitoring/Monitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/monitoring/Monitoring.cpp -------------------------------------------------------------------------------- /apps/monitoring/Monitoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/monitoring/Monitoring.h -------------------------------------------------------------------------------- /apps/monitoring/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/monitoring/tools/Makefile -------------------------------------------------------------------------------- /apps/mp3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mp3/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mp3/Makefile -------------------------------------------------------------------------------- /apps/mp3/mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mp3/mp3.c -------------------------------------------------------------------------------- /apps/msg_storage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/msg_storage/Makefile -------------------------------------------------------------------------------- /apps/msg_storage/MsgStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/msg_storage/MsgStorage.h -------------------------------------------------------------------------------- /apps/mwi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mwi/CMakeLists.txt -------------------------------------------------------------------------------- /apps/mwi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mwi/Makefile -------------------------------------------------------------------------------- /apps/mwi/etc/mwi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mwi/etc/mwi.conf -------------------------------------------------------------------------------- /apps/mwi/mwi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mwi/mwi.cpp -------------------------------------------------------------------------------- /apps/mwi/mwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/mwi/mwi.h -------------------------------------------------------------------------------- /apps/pin_collect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/pin_collect/Makefile -------------------------------------------------------------------------------- /apps/py_sems/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/CMakeLists.txt -------------------------------------------------------------------------------- /apps/py_sems/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/Makefile -------------------------------------------------------------------------------- /apps/py_sems/Makefile.defs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/Makefile.defs -------------------------------------------------------------------------------- /apps/py_sems/PySems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySems.cpp -------------------------------------------------------------------------------- /apps/py_sems/PySems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySems.h -------------------------------------------------------------------------------- /apps/py_sems/PySemsAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsAudio.cpp -------------------------------------------------------------------------------- /apps/py_sems/PySemsAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsAudio.h -------------------------------------------------------------------------------- /apps/py_sems/PySemsB2BDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsB2BDialog.h -------------------------------------------------------------------------------- /apps/py_sems/PySemsDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsDialog.cpp -------------------------------------------------------------------------------- /apps/py_sems/PySemsDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsDialog.h -------------------------------------------------------------------------------- /apps/py_sems/PySemsUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsUtils.cpp -------------------------------------------------------------------------------- /apps/py_sems/PySemsUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/PySemsUtils.h -------------------------------------------------------------------------------- /apps/py_sems/etc/py_sems.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/etc/py_sems.conf -------------------------------------------------------------------------------- /apps/py_sems/py/py_sems_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/py/py_sems_log.py -------------------------------------------------------------------------------- /apps/py_sems/py_comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/py_comp -------------------------------------------------------------------------------- /apps/py_sems/python_inc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/python_inc.py -------------------------------------------------------------------------------- /apps/py_sems/python_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/python_lib.py -------------------------------------------------------------------------------- /apps/py_sems/sip/AmAudio.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/AmAudio.sip -------------------------------------------------------------------------------- /apps/py_sems/sip/AmUtils.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/AmUtils.sip -------------------------------------------------------------------------------- /apps/py_sems/sip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/Makefile -------------------------------------------------------------------------------- /apps/py_sems/sip/configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/configure.py -------------------------------------------------------------------------------- /apps/py_sems/sip/py_sems.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/py_sems.sip -------------------------------------------------------------------------------- /apps/py_sems/sip/string.sip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/py_sems/sip/string.sip -------------------------------------------------------------------------------- /apps/reg_agent/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/reg_agent/CMakeLists.txt -------------------------------------------------------------------------------- /apps/reg_agent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/reg_agent/Makefile -------------------------------------------------------------------------------- /apps/registrar_client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/registrar_client/Makefile -------------------------------------------------------------------------------- /apps/rtmp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/CMakeLists.txt -------------------------------------------------------------------------------- /apps/rtmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/Makefile -------------------------------------------------------------------------------- /apps/rtmp/Rtmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/Rtmp.cpp -------------------------------------------------------------------------------- /apps/rtmp/Rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/Rtmp.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpAudio.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpAudio.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpConnection.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpConnection.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpSender.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpSender.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpServer.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpServer.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpSession.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpSession.h -------------------------------------------------------------------------------- /apps/rtmp/RtmpUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpUtils.cpp -------------------------------------------------------------------------------- /apps/rtmp/RtmpUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/RtmpUtils.h -------------------------------------------------------------------------------- /apps/rtmp/etc/rtmp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/etc/rtmp.conf -------------------------------------------------------------------------------- /apps/rtmp/flash_phone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/flash_phone/Makefile -------------------------------------------------------------------------------- /apps/rtmp/flash_phone/sono.as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/flash_phone/sono.as -------------------------------------------------------------------------------- /apps/rtmp/librtmp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/COPYING -------------------------------------------------------------------------------- /apps/rtmp/librtmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/Makefile -------------------------------------------------------------------------------- /apps/rtmp/librtmp/amf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/amf.c -------------------------------------------------------------------------------- /apps/rtmp/librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/amf.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/bytes.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/dh.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/dhgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/dhgroups.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/handshake.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/hashswf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/hashswf.c -------------------------------------------------------------------------------- /apps/rtmp/librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/http.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/librtmp.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/librtmp.3 -------------------------------------------------------------------------------- /apps/rtmp/librtmp/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/log.c -------------------------------------------------------------------------------- /apps/rtmp/librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/log.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/parseurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/parseurl.c -------------------------------------------------------------------------------- /apps/rtmp/librtmp/rtmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/rtmp.c -------------------------------------------------------------------------------- /apps/rtmp/librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/rtmp.h -------------------------------------------------------------------------------- /apps/rtmp/librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /apps/rtmp/speex2pcm.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/speex2pcm.cxx -------------------------------------------------------------------------------- /apps/rtmp/test_srv.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/rtmp/test_srv.cxx -------------------------------------------------------------------------------- /apps/sbc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/CMakeLists.txt -------------------------------------------------------------------------------- /apps/sbc/CallLeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/CallLeg.cpp -------------------------------------------------------------------------------- /apps/sbc/CallLeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/CallLeg.h -------------------------------------------------------------------------------- /apps/sbc/CallLegEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/CallLegEvents.h -------------------------------------------------------------------------------- /apps/sbc/ExtendedCCInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/ExtendedCCInterface.h -------------------------------------------------------------------------------- /apps/sbc/HeaderFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/HeaderFilter.cpp -------------------------------------------------------------------------------- /apps/sbc/HeaderFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/HeaderFilter.h -------------------------------------------------------------------------------- /apps/sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/Makefile -------------------------------------------------------------------------------- /apps/sbc/ParamReplacer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/ParamReplacer.cpp -------------------------------------------------------------------------------- /apps/sbc/ParamReplacer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/ParamReplacer.h -------------------------------------------------------------------------------- /apps/sbc/RTPParameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RTPParameters.cpp -------------------------------------------------------------------------------- /apps/sbc/RTPParameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RTPParameters.h -------------------------------------------------------------------------------- /apps/sbc/RateLimit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RateLimit.cpp -------------------------------------------------------------------------------- /apps/sbc/RateLimit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RateLimit.h -------------------------------------------------------------------------------- /apps/sbc/RegexMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegexMapper.cpp -------------------------------------------------------------------------------- /apps/sbc/RegexMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegexMapper.h -------------------------------------------------------------------------------- /apps/sbc/RegisterCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegisterCache.cpp -------------------------------------------------------------------------------- /apps/sbc/RegisterCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegisterCache.h -------------------------------------------------------------------------------- /apps/sbc/RegisterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegisterDialog.cpp -------------------------------------------------------------------------------- /apps/sbc/RegisterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/RegisterDialog.h -------------------------------------------------------------------------------- /apps/sbc/ReplacesMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/ReplacesMapper.cpp -------------------------------------------------------------------------------- /apps/sbc/ReplacesMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/ReplacesMapper.h -------------------------------------------------------------------------------- /apps/sbc/SBC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBC.cpp -------------------------------------------------------------------------------- /apps/sbc/SBC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBC.h -------------------------------------------------------------------------------- /apps/sbc/SBCCallControlAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallControlAPI.h -------------------------------------------------------------------------------- /apps/sbc/SBCCallLeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallLeg.cpp -------------------------------------------------------------------------------- /apps/sbc/SBCCallLeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallLeg.h -------------------------------------------------------------------------------- /apps/sbc/SBCCallProfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallProfile.cpp -------------------------------------------------------------------------------- /apps/sbc/SBCCallProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallProfile.h -------------------------------------------------------------------------------- /apps/sbc/SBCCallRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallRegistry.cpp -------------------------------------------------------------------------------- /apps/sbc/SBCCallRegistry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCCallRegistry.h -------------------------------------------------------------------------------- /apps/sbc/SBCEventLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCEventLog.cpp -------------------------------------------------------------------------------- /apps/sbc/SBCEventLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCEventLog.h -------------------------------------------------------------------------------- /apps/sbc/SBCSimpleRelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCSimpleRelay.cpp -------------------------------------------------------------------------------- /apps/sbc/SBCSimpleRelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SBCSimpleRelay.h -------------------------------------------------------------------------------- /apps/sbc/SDPFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SDPFilter.cpp -------------------------------------------------------------------------------- /apps/sbc/SDPFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SDPFilter.h -------------------------------------------------------------------------------- /apps/sbc/SessionUpdate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SessionUpdate.cpp -------------------------------------------------------------------------------- /apps/sbc/SessionUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SessionUpdate.h -------------------------------------------------------------------------------- /apps/sbc/SubscriptionDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/SubscriptionDialog.h -------------------------------------------------------------------------------- /apps/sbc/arg_conversion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/arg_conversion.cpp -------------------------------------------------------------------------------- /apps/sbc/arg_conversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/arg_conversion.h -------------------------------------------------------------------------------- /apps/sbc/call_control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/call_control/Makefile -------------------------------------------------------------------------------- /apps/sbc/call_control/template/etc/cc_template.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/sbc/etc/sbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/etc/sbc.conf -------------------------------------------------------------------------------- /apps/sbc/etc/src_ipmap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/etc/src_ipmap.conf -------------------------------------------------------------------------------- /apps/sbc/sbc_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/sbc_events.h -------------------------------------------------------------------------------- /apps/sbc/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/sbc/tools/Makefile -------------------------------------------------------------------------------- /apps/twit/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/CMakeLists.txt -------------------------------------------------------------------------------- /apps/twit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/Makefile -------------------------------------------------------------------------------- /apps/twit/etc/twit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/etc/twit.conf -------------------------------------------------------------------------------- /apps/twit/twit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/twit.py -------------------------------------------------------------------------------- /apps/twit/wav/twit_err_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/wav/twit_err_msg.wav -------------------------------------------------------------------------------- /apps/twit/wav/twit_ok_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/wav/twit_ok_msg.wav -------------------------------------------------------------------------------- /apps/twit/wav/twit_welcome.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/twit/wav/twit_welcome.wav -------------------------------------------------------------------------------- /apps/voicebox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/CMakeLists.txt -------------------------------------------------------------------------------- /apps/voicebox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/Makefile -------------------------------------------------------------------------------- /apps/voicebox/PromptOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/PromptOptions.h -------------------------------------------------------------------------------- /apps/voicebox/Voicebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/Voicebox.cpp -------------------------------------------------------------------------------- /apps/voicebox/Voicebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/Voicebox.h -------------------------------------------------------------------------------- /apps/voicebox/VoiceboxDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/VoiceboxDialog.h -------------------------------------------------------------------------------- /apps/voicebox/wav/0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/0.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/1.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/10.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/11.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/12.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/13.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/14.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/14.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/15.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/15.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/16.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/16.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/17.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/17.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/18.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/18.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/19.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/19.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/2.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/20.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/20.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/3.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/30.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/30.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/4.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/40.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/40.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/5.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/50.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/50.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/6.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/60.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/60.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/7.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/70.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/70.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/8.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/80.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/80.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/9.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/90.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/90.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/and.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/and.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/bye.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/bye.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/msg_menu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/msg_menu.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/new_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/new_msg.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/new_msgs.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/new_msgs.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/no_msg.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/no_msg.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x1.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x2.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x3.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x4.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x5.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x6.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x7.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x8.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/x9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/x9.wav -------------------------------------------------------------------------------- /apps/voicebox/wav/you_have.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicebox/wav/you_have.wav -------------------------------------------------------------------------------- /apps/voicemail/AmMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/AmMail.cpp -------------------------------------------------------------------------------- /apps/voicemail/AmMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/AmMail.h -------------------------------------------------------------------------------- /apps/voicemail/AmSmtpClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/AmSmtpClient.h -------------------------------------------------------------------------------- /apps/voicemail/AnswerMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/AnswerMachine.h -------------------------------------------------------------------------------- /apps/voicemail/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/CMakeLists.txt -------------------------------------------------------------------------------- /apps/voicemail/EmailTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/EmailTemplate.h -------------------------------------------------------------------------------- /apps/voicemail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/Makefile -------------------------------------------------------------------------------- /apps/voicemail/wav/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/voicemail/wav/beep.wav -------------------------------------------------------------------------------- /apps/webconference/CallStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/CallStats.h -------------------------------------------------------------------------------- /apps/webconference/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/Makefile -------------------------------------------------------------------------------- /apps/webconference/RoomInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/RoomInfo.h -------------------------------------------------------------------------------- /apps/webconference/wav/0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/0.wav -------------------------------------------------------------------------------- /apps/webconference/wav/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/1.wav -------------------------------------------------------------------------------- /apps/webconference/wav/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/2.wav -------------------------------------------------------------------------------- /apps/webconference/wav/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/3.wav -------------------------------------------------------------------------------- /apps/webconference/wav/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/4.wav -------------------------------------------------------------------------------- /apps/webconference/wav/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/5.wav -------------------------------------------------------------------------------- /apps/webconference/wav/6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/6.wav -------------------------------------------------------------------------------- /apps/webconference/wav/7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/7.wav -------------------------------------------------------------------------------- /apps/webconference/wav/8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/8.wav -------------------------------------------------------------------------------- /apps/webconference/wav/9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/webconference/wav/9.wav -------------------------------------------------------------------------------- /apps/xmlrpc2di/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/xmlrpc2di/CMakeLists.txt -------------------------------------------------------------------------------- /apps/xmlrpc2di/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/xmlrpc2di/Makefile -------------------------------------------------------------------------------- /apps/xmlrpc2di/XMLRPC2DI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/xmlrpc2di/XMLRPC2DI.cpp -------------------------------------------------------------------------------- /apps/xmlrpc2di/XMLRPC2DI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/apps/xmlrpc2di/XMLRPC2DI.h -------------------------------------------------------------------------------- /beautify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/beautify.sh -------------------------------------------------------------------------------- /cmake/FindBcg729.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindBcg729.cmake -------------------------------------------------------------------------------- /cmake/FindCodec2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindCodec2.cmake -------------------------------------------------------------------------------- /cmake/FindFlite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindFlite.cmake -------------------------------------------------------------------------------- /cmake/FindGsm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindGsm.cmake -------------------------------------------------------------------------------- /cmake/FindHiredis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindHiredis.cmake -------------------------------------------------------------------------------- /cmake/FindIlbc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindIlbc.cmake -------------------------------------------------------------------------------- /cmake/FindLame.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLame.cmake -------------------------------------------------------------------------------- /cmake/FindLibev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLibev.cmake -------------------------------------------------------------------------------- /cmake/FindLibevent2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLibevent2.cmake -------------------------------------------------------------------------------- /cmake/FindLibrtmp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLibrtmp.cmake -------------------------------------------------------------------------------- /cmake/FindLibsamplerate.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLibsamplerate.cmake -------------------------------------------------------------------------------- /cmake/FindLibzrtp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindLibzrtp.cmake -------------------------------------------------------------------------------- /cmake/FindMISDN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindMISDN.cmake -------------------------------------------------------------------------------- /cmake/FindMpg123.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindMpg123.cmake -------------------------------------------------------------------------------- /cmake/FindMySQLcppconn.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindMySQLcppconn.cmake -------------------------------------------------------------------------------- /cmake/FindMySQLpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindMySQLpp.cmake -------------------------------------------------------------------------------- /cmake/FindOpus.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindOpus.cmake -------------------------------------------------------------------------------- /cmake/FindSIP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindSIP.cmake -------------------------------------------------------------------------------- /cmake/FindSpandsp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindSpandsp.cmake -------------------------------------------------------------------------------- /cmake/FindSpeex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/FindSpeex.cmake -------------------------------------------------------------------------------- /cmake/audio.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/audio.rules.txt -------------------------------------------------------------------------------- /cmake/config.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/config.rules.txt -------------------------------------------------------------------------------- /cmake/doc.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/doc.rules.txt -------------------------------------------------------------------------------- /cmake/dsm.lib.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/dsm.lib.rules.txt -------------------------------------------------------------------------------- /cmake/dsm.script.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/dsm.script.rules.txt -------------------------------------------------------------------------------- /cmake/module.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/module.rules.txt -------------------------------------------------------------------------------- /cmake/python.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/python.rules.txt -------------------------------------------------------------------------------- /cmake/template.rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/cmake/template.rules.txt -------------------------------------------------------------------------------- /core/Am100rel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/Am100rel.cpp -------------------------------------------------------------------------------- /core/Am100rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/Am100rel.h -------------------------------------------------------------------------------- /core/AmAdvancedAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAdvancedAudio.cpp -------------------------------------------------------------------------------- /core/AmAdvancedAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAdvancedAudio.h -------------------------------------------------------------------------------- /core/AmApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmApi.cpp -------------------------------------------------------------------------------- /core/AmApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmApi.h -------------------------------------------------------------------------------- /core/AmAppTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAppTimer.cpp -------------------------------------------------------------------------------- /core/AmAppTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAppTimer.h -------------------------------------------------------------------------------- /core/AmArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmArg.cpp -------------------------------------------------------------------------------- /core/AmArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmArg.h -------------------------------------------------------------------------------- /core/AmAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudio.cpp -------------------------------------------------------------------------------- /core/AmAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudio.h -------------------------------------------------------------------------------- /core/AmAudioFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioFile.cpp -------------------------------------------------------------------------------- /core/AmAudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioFile.h -------------------------------------------------------------------------------- /core/AmAudioMixIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioMixIn.cpp -------------------------------------------------------------------------------- /core/AmAudioMixIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioMixIn.h -------------------------------------------------------------------------------- /core/AmAudioMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioMixer.cpp -------------------------------------------------------------------------------- /core/AmAudioMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmAudioMixer.h -------------------------------------------------------------------------------- /core/AmB2ABSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2ABSession.cpp -------------------------------------------------------------------------------- /core/AmB2ABSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2ABSession.h -------------------------------------------------------------------------------- /core/AmB2BMedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2BMedia.cpp -------------------------------------------------------------------------------- /core/AmB2BMedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2BMedia.h -------------------------------------------------------------------------------- /core/AmB2BSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2BSession.cpp -------------------------------------------------------------------------------- /core/AmB2BSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmB2BSession.h -------------------------------------------------------------------------------- /core/AmBasicSipDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmBasicSipDialog.cpp -------------------------------------------------------------------------------- /core/AmBasicSipDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmBasicSipDialog.h -------------------------------------------------------------------------------- /core/AmBufferedAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmBufferedAudio.cpp -------------------------------------------------------------------------------- /core/AmBufferedAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmBufferedAudio.h -------------------------------------------------------------------------------- /core/AmCachedAudioFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmCachedAudioFile.cpp -------------------------------------------------------------------------------- /core/AmCachedAudioFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmCachedAudioFile.h -------------------------------------------------------------------------------- /core/AmCallWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmCallWatcher.cpp -------------------------------------------------------------------------------- /core/AmCallWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmCallWatcher.h -------------------------------------------------------------------------------- /core/AmConferenceChannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConferenceChannel.cpp -------------------------------------------------------------------------------- /core/AmConferenceChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConferenceChannel.h -------------------------------------------------------------------------------- /core/AmConferenceStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConferenceStatus.cpp -------------------------------------------------------------------------------- /core/AmConferenceStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConferenceStatus.h -------------------------------------------------------------------------------- /core/AmConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConfig.cpp -------------------------------------------------------------------------------- /core/AmConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConfig.h -------------------------------------------------------------------------------- /core/AmConfigReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConfigReader.cpp -------------------------------------------------------------------------------- /core/AmConfigReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmConfigReader.h -------------------------------------------------------------------------------- /core/AmDtmfDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmDtmfDetector.cpp -------------------------------------------------------------------------------- /core/AmDtmfDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmDtmfDetector.h -------------------------------------------------------------------------------- /core/AmDtmfSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmDtmfSender.cpp -------------------------------------------------------------------------------- /core/AmDtmfSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmDtmfSender.h -------------------------------------------------------------------------------- /core/AmEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEvent.cpp -------------------------------------------------------------------------------- /core/AmEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEvent.h -------------------------------------------------------------------------------- /core/AmEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventDispatcher.cpp -------------------------------------------------------------------------------- /core/AmEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventDispatcher.h -------------------------------------------------------------------------------- /core/AmEventProcessingThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventProcessingThread.h -------------------------------------------------------------------------------- /core/AmEventQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventQueue.cpp -------------------------------------------------------------------------------- /core/AmEventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventQueue.h -------------------------------------------------------------------------------- /core/AmEventQueueProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventQueueProcessor.cpp -------------------------------------------------------------------------------- /core/AmEventQueueProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmEventQueueProcessor.h -------------------------------------------------------------------------------- /core/AmJitterBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmJitterBuffer.cpp -------------------------------------------------------------------------------- /core/AmJitterBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmJitterBuffer.h -------------------------------------------------------------------------------- /core/AmMediaProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMediaProcessor.cpp -------------------------------------------------------------------------------- /core/AmMediaProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMediaProcessor.h -------------------------------------------------------------------------------- /core/AmMimeBody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMimeBody.cpp -------------------------------------------------------------------------------- /core/AmMimeBody.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMimeBody.h -------------------------------------------------------------------------------- /core/AmMultiPartyMixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMultiPartyMixer.cpp -------------------------------------------------------------------------------- /core/AmMultiPartyMixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmMultiPartyMixer.h -------------------------------------------------------------------------------- /core/AmOfferAnswer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmOfferAnswer.cpp -------------------------------------------------------------------------------- /core/AmOfferAnswer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmOfferAnswer.h -------------------------------------------------------------------------------- /core/AmPeriodicThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPeriodicThread.cpp -------------------------------------------------------------------------------- /core/AmPeriodicThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPeriodicThread.h -------------------------------------------------------------------------------- /core/AmPlaylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlaylist.cpp -------------------------------------------------------------------------------- /core/AmPlaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlaylist.h -------------------------------------------------------------------------------- /core/AmPlayoutBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlayoutBuffer.cpp -------------------------------------------------------------------------------- /core/AmPlayoutBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlayoutBuffer.h -------------------------------------------------------------------------------- /core/AmPlugIn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlugIn.cpp -------------------------------------------------------------------------------- /core/AmPlugIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPlugIn.h -------------------------------------------------------------------------------- /core/AmPrecodedFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPrecodedFile.cpp -------------------------------------------------------------------------------- /core/AmPrecodedFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPrecodedFile.h -------------------------------------------------------------------------------- /core/AmPromptCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPromptCollection.cpp -------------------------------------------------------------------------------- /core/AmPromptCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmPromptCollection.h -------------------------------------------------------------------------------- /core/AmRingTone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRingTone.cpp -------------------------------------------------------------------------------- /core/AmRingTone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRingTone.h -------------------------------------------------------------------------------- /core/AmRtpAudio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpAudio.cpp -------------------------------------------------------------------------------- /core/AmRtpAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpAudio.h -------------------------------------------------------------------------------- /core/AmRtpMuxStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpMuxStream.cpp -------------------------------------------------------------------------------- /core/AmRtpMuxStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpMuxStream.h -------------------------------------------------------------------------------- /core/AmRtpPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpPacket.cpp -------------------------------------------------------------------------------- /core/AmRtpPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpPacket.h -------------------------------------------------------------------------------- /core/AmRtpReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpReceiver.cpp -------------------------------------------------------------------------------- /core/AmRtpReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpReceiver.h -------------------------------------------------------------------------------- /core/AmRtpStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpStream.cpp -------------------------------------------------------------------------------- /core/AmRtpStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmRtpStream.h -------------------------------------------------------------------------------- /core/AmSdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSdp.cpp -------------------------------------------------------------------------------- /core/AmSdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSdp.h -------------------------------------------------------------------------------- /core/AmSession.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSession.cpp -------------------------------------------------------------------------------- /core/AmSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSession.h -------------------------------------------------------------------------------- /core/AmSessionContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionContainer.cpp -------------------------------------------------------------------------------- /core/AmSessionContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionContainer.h -------------------------------------------------------------------------------- /core/AmSessionEventHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionEventHandler.cpp -------------------------------------------------------------------------------- /core/AmSessionEventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionEventHandler.h -------------------------------------------------------------------------------- /core/AmSessionProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionProcessor.cpp -------------------------------------------------------------------------------- /core/AmSessionProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSessionProcessor.h -------------------------------------------------------------------------------- /core/AmSipDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipDialog.cpp -------------------------------------------------------------------------------- /core/AmSipDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipDialog.h -------------------------------------------------------------------------------- /core/AmSipDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipDispatcher.cpp -------------------------------------------------------------------------------- /core/AmSipDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipDispatcher.h -------------------------------------------------------------------------------- /core/AmSipEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipEvent.cpp -------------------------------------------------------------------------------- /core/AmSipEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipEvent.h -------------------------------------------------------------------------------- /core/AmSipHeaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipHeaders.h -------------------------------------------------------------------------------- /core/AmSipMsg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipMsg.cpp -------------------------------------------------------------------------------- /core/AmSipMsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipMsg.h -------------------------------------------------------------------------------- /core/AmSipRegistration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipRegistration.cpp -------------------------------------------------------------------------------- /core/AmSipRegistration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipRegistration.h -------------------------------------------------------------------------------- /core/AmSipSubscription.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipSubscription.cpp -------------------------------------------------------------------------------- /core/AmSipSubscription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmSipSubscription.h -------------------------------------------------------------------------------- /core/AmStats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmStats.h -------------------------------------------------------------------------------- /core/AmThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmThread.cpp -------------------------------------------------------------------------------- /core/AmThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmThread.h -------------------------------------------------------------------------------- /core/AmUAC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUAC.cpp -------------------------------------------------------------------------------- /core/AmUAC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUAC.h -------------------------------------------------------------------------------- /core/AmUACAuth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUACAuth.cpp -------------------------------------------------------------------------------- /core/AmUACAuth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUACAuth.h -------------------------------------------------------------------------------- /core/AmUriParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUriParser.cpp -------------------------------------------------------------------------------- /core/AmUriParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUriParser.h -------------------------------------------------------------------------------- /core/AmUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUtils.cpp -------------------------------------------------------------------------------- /core/AmUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmUtils.h -------------------------------------------------------------------------------- /core/AmZRTP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmZRTP.cpp -------------------------------------------------------------------------------- /core/AmZRTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/AmZRTP.h -------------------------------------------------------------------------------- /core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/CMakeLists.txt -------------------------------------------------------------------------------- /core/LowcFE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/LowcFE.cpp -------------------------------------------------------------------------------- /core/LowcFE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/LowcFE.h -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/SampleArray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/SampleArray.cc -------------------------------------------------------------------------------- /core/SampleArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/SampleArray.h -------------------------------------------------------------------------------- /core/SipCtrlInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/SipCtrlInterface.cpp -------------------------------------------------------------------------------- /core/SipCtrlInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/SipCtrlInterface.h -------------------------------------------------------------------------------- /core/amci/amci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/amci/amci.h -------------------------------------------------------------------------------- /core/amci/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/amci/codecs.h -------------------------------------------------------------------------------- /core/ampi/DiameterClientAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/ampi/DiameterClientAPI.h -------------------------------------------------------------------------------- /core/ampi/MonitoringAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/ampi/MonitoringAPI.h -------------------------------------------------------------------------------- /core/ampi/UACAuthAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/ampi/UACAuthAPI.h -------------------------------------------------------------------------------- /core/atomic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/atomic_types.h -------------------------------------------------------------------------------- /core/compat/getarch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/compat/getarch.c -------------------------------------------------------------------------------- /core/compat/getos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/compat/getos.c -------------------------------------------------------------------------------- /core/compat/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/compat/solaris.h -------------------------------------------------------------------------------- /core/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/config.h -------------------------------------------------------------------------------- /core/crc4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/crc4.cpp -------------------------------------------------------------------------------- /core/crc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/crc4.h -------------------------------------------------------------------------------- /core/etc/sems.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/etc/sems.conf.sample -------------------------------------------------------------------------------- /core/etc/zrtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/etc/zrtp.conf -------------------------------------------------------------------------------- /core/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/hash_table.h -------------------------------------------------------------------------------- /core/jsonArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/jsonArg.cpp -------------------------------------------------------------------------------- /core/jsonArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/jsonArg.h -------------------------------------------------------------------------------- /core/jsonxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/jsonxx.cpp -------------------------------------------------------------------------------- /core/jsonxx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/jsonxx.h -------------------------------------------------------------------------------- /core/lib/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/lib/.placeholder -------------------------------------------------------------------------------- /core/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/log.cpp -------------------------------------------------------------------------------- /core/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/log.h -------------------------------------------------------------------------------- /core/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/md5.cpp -------------------------------------------------------------------------------- /core/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/md5.h -------------------------------------------------------------------------------- /core/md5global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/md5global.h -------------------------------------------------------------------------------- /core/plug-in/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/CMakeLists.txt -------------------------------------------------------------------------------- /core/plug-in/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/Makefile -------------------------------------------------------------------------------- /core/plug-in/adpcm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/Makefile -------------------------------------------------------------------------------- /core/plug-in/adpcm/README_G711: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/README_G711 -------------------------------------------------------------------------------- /core/plug-in/adpcm/adpcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/adpcm.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g711.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g711.h -------------------------------------------------------------------------------- /core/plug-in/adpcm/g721.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g721.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g723_16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g723_16.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g723_24.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g723_24.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g723_40.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g723_40.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g72x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g72x.c -------------------------------------------------------------------------------- /core/plug-in/adpcm/g72x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/adpcm/g72x.h -------------------------------------------------------------------------------- /core/plug-in/codec2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/codec2/Makefile -------------------------------------------------------------------------------- /core/plug-in/codec2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/codec2/README.md -------------------------------------------------------------------------------- /core/plug-in/codec2/codec2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/codec2/codec2.c -------------------------------------------------------------------------------- /core/plug-in/codec2/codec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/codec2/codec2.h -------------------------------------------------------------------------------- /core/plug-in/echo/Echo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/echo/Echo.cpp -------------------------------------------------------------------------------- /core/plug-in/echo/Echo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/echo/Echo.h -------------------------------------------------------------------------------- /core/plug-in/echo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/echo/Makefile -------------------------------------------------------------------------------- /core/plug-in/g722/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/g722/Makefile -------------------------------------------------------------------------------- /core/plug-in/g722/g722.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/g722/g722.c -------------------------------------------------------------------------------- /core/plug-in/g729/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/g729/Makefile -------------------------------------------------------------------------------- /core/plug-in/g729/g729.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/g729/g729.c -------------------------------------------------------------------------------- /core/plug-in/gsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/gsm/Makefile -------------------------------------------------------------------------------- /core/plug-in/gsm/gsm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/gsm/gsm.c -------------------------------------------------------------------------------- /core/plug-in/ilbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/ilbc/Makefile -------------------------------------------------------------------------------- /core/plug-in/ilbc/ilbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/ilbc/ilbc.c -------------------------------------------------------------------------------- /core/plug-in/isac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/isac/Makefile -------------------------------------------------------------------------------- /core/plug-in/isac/isac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/isac/isac.c -------------------------------------------------------------------------------- /core/plug-in/l16/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/l16/Makefile -------------------------------------------------------------------------------- /core/plug-in/l16/l16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/l16/l16.c -------------------------------------------------------------------------------- /core/plug-in/opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/opus/Makefile -------------------------------------------------------------------------------- /core/plug-in/opus/opus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/opus/opus.c -------------------------------------------------------------------------------- /core/plug-in/silk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/silk/Makefile -------------------------------------------------------------------------------- /core/plug-in/silk/silk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/silk/silk.c -------------------------------------------------------------------------------- /core/plug-in/speex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/speex/Makefile -------------------------------------------------------------------------------- /core/plug-in/speex/speex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/speex/speex.c -------------------------------------------------------------------------------- /core/plug-in/stats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/stats/Makefile -------------------------------------------------------------------------------- /core/plug-in/uac_auth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/uac_auth/Makefile -------------------------------------------------------------------------------- /core/plug-in/wav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/Makefile -------------------------------------------------------------------------------- /core/plug-in/wav/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/g711.c -------------------------------------------------------------------------------- /core/plug-in/wav/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/g711.h -------------------------------------------------------------------------------- /core/plug-in/wav/wav.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/wav.c -------------------------------------------------------------------------------- /core/plug-in/wav/wav_hdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/wav_hdr.c -------------------------------------------------------------------------------- /core/plug-in/wav/wav_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/plug-in/wav/wav_hdr.h -------------------------------------------------------------------------------- /core/resample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/resample/Makefile -------------------------------------------------------------------------------- /core/resample/resample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/resample/resample.cpp -------------------------------------------------------------------------------- /core/resample/resample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/resample/resample.h -------------------------------------------------------------------------------- /core/rtp/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/rtp/rtp.h -------------------------------------------------------------------------------- /core/rtp/telephone_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/rtp/telephone_event.h -------------------------------------------------------------------------------- /core/sems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sems.cpp -------------------------------------------------------------------------------- /core/sems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sems.h -------------------------------------------------------------------------------- /core/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/singleton.h -------------------------------------------------------------------------------- /core/sip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/Makefile -------------------------------------------------------------------------------- /core/sip/async_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/async_file.cpp -------------------------------------------------------------------------------- /core/sip/async_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/async_file.h -------------------------------------------------------------------------------- /core/sip/async_file_writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/async_file_writer.cpp -------------------------------------------------------------------------------- /core/sip/async_file_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/async_file_writer.h -------------------------------------------------------------------------------- /core/sip/cstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/cstring.h -------------------------------------------------------------------------------- /core/sip/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/defs.h -------------------------------------------------------------------------------- /core/sip/exclusive_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/exclusive_file.cpp -------------------------------------------------------------------------------- /core/sip/exclusive_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/exclusive_file.h -------------------------------------------------------------------------------- /core/sip/fifo_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/fifo_buffer.cpp -------------------------------------------------------------------------------- /core/sip/fifo_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/fifo_buffer.h -------------------------------------------------------------------------------- /core/sip/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/hash.cpp -------------------------------------------------------------------------------- /core/sip/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/hash.h -------------------------------------------------------------------------------- /core/sip/ip_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/ip_util.cpp -------------------------------------------------------------------------------- /core/sip/ip_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/ip_util.h -------------------------------------------------------------------------------- /core/sip/msg_fline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_fline.cpp -------------------------------------------------------------------------------- /core/sip/msg_fline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_fline.h -------------------------------------------------------------------------------- /core/sip/msg_hdrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_hdrs.cpp -------------------------------------------------------------------------------- /core/sip/msg_hdrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_hdrs.h -------------------------------------------------------------------------------- /core/sip/msg_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_logger.cpp -------------------------------------------------------------------------------- /core/sip/msg_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/msg_logger.h -------------------------------------------------------------------------------- /core/sip/parse_100rel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_100rel.cpp -------------------------------------------------------------------------------- /core/sip/parse_100rel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_100rel.h -------------------------------------------------------------------------------- /core/sip/parse_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_common.cpp -------------------------------------------------------------------------------- /core/sip/parse_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_common.h -------------------------------------------------------------------------------- /core/sip/parse_cseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_cseq.cpp -------------------------------------------------------------------------------- /core/sip/parse_cseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_cseq.h -------------------------------------------------------------------------------- /core/sip/parse_dns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_dns.cpp -------------------------------------------------------------------------------- /core/sip/parse_dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_dns.h -------------------------------------------------------------------------------- /core/sip/parse_extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_extensions.cpp -------------------------------------------------------------------------------- /core/sip/parse_extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_extensions.h -------------------------------------------------------------------------------- /core/sip/parse_from_to.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_from_to.cpp -------------------------------------------------------------------------------- /core/sip/parse_from_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_from_to.h -------------------------------------------------------------------------------- /core/sip/parse_header.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_header.cpp -------------------------------------------------------------------------------- /core/sip/parse_header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_header.h -------------------------------------------------------------------------------- /core/sip/parse_nameaddr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_nameaddr.cpp -------------------------------------------------------------------------------- /core/sip/parse_nameaddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_nameaddr.h -------------------------------------------------------------------------------- /core/sip/parse_next_hop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_next_hop.cpp -------------------------------------------------------------------------------- /core/sip/parse_next_hop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_next_hop.h -------------------------------------------------------------------------------- /core/sip/parse_route.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_route.cpp -------------------------------------------------------------------------------- /core/sip/parse_route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_route.h -------------------------------------------------------------------------------- /core/sip/parse_uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_uri.cpp -------------------------------------------------------------------------------- /core/sip/parse_uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_uri.h -------------------------------------------------------------------------------- /core/sip/parse_via.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_via.cpp -------------------------------------------------------------------------------- /core/sip/parse_via.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/parse_via.h -------------------------------------------------------------------------------- /core/sip/pcap_logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/pcap_logger.cpp -------------------------------------------------------------------------------- /core/sip/pcap_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/pcap_logger.h -------------------------------------------------------------------------------- /core/sip/raw_sender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/raw_sender.cpp -------------------------------------------------------------------------------- /core/sip/raw_sender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/raw_sender.h -------------------------------------------------------------------------------- /core/sip/raw_sock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/raw_sock.cpp -------------------------------------------------------------------------------- /core/sip/raw_sock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/raw_sock.h -------------------------------------------------------------------------------- /core/sip/resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/resolver.cpp -------------------------------------------------------------------------------- /core/sip/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/resolver.h -------------------------------------------------------------------------------- /core/sip/sip_parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_parser.cpp -------------------------------------------------------------------------------- /core/sip/sip_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_parser.h -------------------------------------------------------------------------------- /core/sip/sip_parser_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_parser_async.cpp -------------------------------------------------------------------------------- /core/sip/sip_parser_async.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_parser_async.h -------------------------------------------------------------------------------- /core/sip/sip_timers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_timers.cpp -------------------------------------------------------------------------------- /core/sip/sip_timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_timers.h -------------------------------------------------------------------------------- /core/sip/sip_trans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_trans.cpp -------------------------------------------------------------------------------- /core/sip/sip_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_trans.h -------------------------------------------------------------------------------- /core/sip/sip_ua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/sip_ua.h -------------------------------------------------------------------------------- /core/sip/tcp_trsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/tcp_trsp.cpp -------------------------------------------------------------------------------- /core/sip/tcp_trsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/tcp_trsp.h -------------------------------------------------------------------------------- /core/sip/tr_blacklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/tr_blacklist.cpp -------------------------------------------------------------------------------- /core/sip/tr_blacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/tr_blacklist.h -------------------------------------------------------------------------------- /core/sip/trans_layer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/trans_layer.cpp -------------------------------------------------------------------------------- /core/sip/trans_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/trans_layer.h -------------------------------------------------------------------------------- /core/sip/trans_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/trans_table.cpp -------------------------------------------------------------------------------- /core/sip/trans_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/trans_table.h -------------------------------------------------------------------------------- /core/sip/transport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/transport.cpp -------------------------------------------------------------------------------- /core/sip/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/transport.h -------------------------------------------------------------------------------- /core/sip/udp_trsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/udp_trsp.cpp -------------------------------------------------------------------------------- /core/sip/udp_trsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/udp_trsp.h -------------------------------------------------------------------------------- /core/sip/wheeltimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/wheeltimer.cpp -------------------------------------------------------------------------------- /core/sip/wheeltimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/sip/wheeltimer.h -------------------------------------------------------------------------------- /core/tests/.gitignore: -------------------------------------------------------------------------------- 1 | sems_tests 2 | -------------------------------------------------------------------------------- /core/tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/Makefile -------------------------------------------------------------------------------- /core/tests/fct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/fct.h -------------------------------------------------------------------------------- /core/tests/sems_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/sems_tests.cpp -------------------------------------------------------------------------------- /core/tests/sems_tests.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/tests/test_auth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_auth.cpp -------------------------------------------------------------------------------- /core/tests/test_auth.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/tests/test_headers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_headers.cpp -------------------------------------------------------------------------------- /core/tests/test_headers.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/tests/test_jsonarg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_jsonarg.cpp -------------------------------------------------------------------------------- /core/tests/test_jsonarg.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/tests/test_replaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_replaces.cpp -------------------------------------------------------------------------------- /core/tests/test_replaces.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/tests/test_sdp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_sdp.cpp -------------------------------------------------------------------------------- /core/tests/test_sdp.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /core/tests/test_uriparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/tests/test_uriparser.cpp -------------------------------------------------------------------------------- /core/tests/test_uriparser.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/wav/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/wav/beep.wav -------------------------------------------------------------------------------- /core/wav/default_en.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/core/wav/default_en.wav -------------------------------------------------------------------------------- /doc/Applications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Applications.txt -------------------------------------------------------------------------------- /doc/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/CHANGELOG -------------------------------------------------------------------------------- /doc/COMPILING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/COMPILING -------------------------------------------------------------------------------- /doc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/COPYING -------------------------------------------------------------------------------- /doc/ComponentModules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/ComponentModules.txt -------------------------------------------------------------------------------- /doc/Howtostart_noproxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Howtostart_noproxy.txt -------------------------------------------------------------------------------- /doc/Howtostart_simpleproxy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Howtostart_simpleproxy.txt -------------------------------------------------------------------------------- /doc/Howtostart_voicemail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Howtostart_voicemail.txt -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/README.stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/README.stats -------------------------------------------------------------------------------- /doc/Readme.ann_b2b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.ann_b2b.txt -------------------------------------------------------------------------------- /doc/Readme.announcement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.announcement.txt -------------------------------------------------------------------------------- /doc/Readme.annrecorder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.annrecorder.txt -------------------------------------------------------------------------------- /doc/Readme.auth_b2b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.auth_b2b.txt -------------------------------------------------------------------------------- /doc/Readme.call_timer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.call_timer.txt -------------------------------------------------------------------------------- /doc/Readme.callback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.callback.txt -------------------------------------------------------------------------------- /doc/Readme.click2dial.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.click2dial.txt -------------------------------------------------------------------------------- /doc/Readme.conf_auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.conf_auth.txt -------------------------------------------------------------------------------- /doc/Readme.conference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.conference.txt -------------------------------------------------------------------------------- /doc/Readme.db_reg_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.db_reg_agent.txt -------------------------------------------------------------------------------- /doc/Readme.diameter_client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.diameter_client.txt -------------------------------------------------------------------------------- /doc/Readme.echo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.echo.txt -------------------------------------------------------------------------------- /doc/Readme.iLBC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.iLBC.txt -------------------------------------------------------------------------------- /doc/Readme.ivr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.ivr.txt -------------------------------------------------------------------------------- /doc/Readme.jsonrpc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.jsonrpc.txt -------------------------------------------------------------------------------- /doc/Readme.mailbox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.mailbox.txt -------------------------------------------------------------------------------- /doc/Readme.monitoring.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.monitoring.txt -------------------------------------------------------------------------------- /doc/Readme.mp3plugin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.mp3plugin.txt -------------------------------------------------------------------------------- /doc/Readme.msg_storage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.msg_storage.txt -------------------------------------------------------------------------------- /doc/Readme.pin_collect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.pin_collect.txt -------------------------------------------------------------------------------- /doc/Readme.py_sems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.py_sems.txt -------------------------------------------------------------------------------- /doc/Readme.reg_agent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.reg_agent.txt -------------------------------------------------------------------------------- /doc/Readme.sbc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.sbc.txt -------------------------------------------------------------------------------- /doc/Readme.sst_b2b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.sst_b2b.txt -------------------------------------------------------------------------------- /doc/Readme.twit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.twit.txt -------------------------------------------------------------------------------- /doc/Readme.uac_auth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.uac_auth.txt -------------------------------------------------------------------------------- /doc/Readme.voicebox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.voicebox.txt -------------------------------------------------------------------------------- /doc/Readme.voicemail.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.voicemail.txt -------------------------------------------------------------------------------- /doc/Readme.webconference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.webconference.txt -------------------------------------------------------------------------------- /doc/Readme.xmlrpc2di.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Readme.xmlrpc2di.txt -------------------------------------------------------------------------------- /doc/Tuning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/Tuning.txt -------------------------------------------------------------------------------- /doc/ZRTP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/ZRTP.txt -------------------------------------------------------------------------------- /doc/doxygen_fulldoc_proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/doxygen_fulldoc_proj -------------------------------------------------------------------------------- /doc/doxygen_proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/doxygen_proj -------------------------------------------------------------------------------- /doc/dsm/Readme.dsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/dsm/Readme.dsm.txt -------------------------------------------------------------------------------- /doc/dsm/dsm_sbc_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/dsm/dsm_sbc_syntax.txt -------------------------------------------------------------------------------- /doc/dsm/dsm_syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/dsm/dsm_syntax.txt -------------------------------------------------------------------------------- /doc/dsm/dsm_todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/dsm/dsm_todo.txt -------------------------------------------------------------------------------- /doc/dsm/examples/b2b_connect_extension/wav/connecting.txt: -------------------------------------------------------------------------------- 1 | Now connecting to your party 2 | -------------------------------------------------------------------------------- /doc/dsm/examples/test.dsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/dsm/examples/test.dsm -------------------------------------------------------------------------------- /doc/figures/conference.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/figures/conference.dia -------------------------------------------------------------------------------- /doc/figures/voicemail.dia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/figures/voicemail.dia -------------------------------------------------------------------------------- /doc/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/index.txt -------------------------------------------------------------------------------- /doc/rtp_mux/rtp_mux.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/rtp_mux/rtp_mux.txt -------------------------------------------------------------------------------- /doc/sbc/Readme.bl_redis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sbc/Readme.bl_redis.txt -------------------------------------------------------------------------------- /doc/sbc/Readme.cc_acc_xmlrpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sbc/Readme.cc_acc_xmlrpc -------------------------------------------------------------------------------- /doc/sbc/Readme.cc_ctl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sbc/Readme.cc_ctl.txt -------------------------------------------------------------------------------- /doc/sbc/Readme.cc_dsm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sbc/Readme.cc_dsm.txt -------------------------------------------------------------------------------- /doc/sbc/Readme.cc_rest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sbc/Readme.cc_rest.txt -------------------------------------------------------------------------------- /doc/sbc/sample_config_regcache/inex.sbcprofile.conf: -------------------------------------------------------------------------------- 1 | enable_reg_caching=yes -------------------------------------------------------------------------------- /doc/sbc/sample_config_regcache/method_map.conf: -------------------------------------------------------------------------------- 1 | REGISTER=>reg -------------------------------------------------------------------------------- /doc/sipp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/README -------------------------------------------------------------------------------- /doc/sipp/monitoring.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/monitoring.conf -------------------------------------------------------------------------------- /doc/sipp/sbc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/sbc.conf -------------------------------------------------------------------------------- /doc/sipp/sems.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/sems.conf -------------------------------------------------------------------------------- /doc/sipp/stats.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/stats.conf -------------------------------------------------------------------------------- /doc/sipp/uac.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/uac.xml -------------------------------------------------------------------------------- /doc/sipp/uas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/uas.xml -------------------------------------------------------------------------------- /doc/sipp/zrtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/sipp/zrtp.conf -------------------------------------------------------------------------------- /doc/src/doc_applications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_applications.h -------------------------------------------------------------------------------- /doc/src/doc_componentmods.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_componentmods.h -------------------------------------------------------------------------------- /doc/src/doc_exampleapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_exampleapps.h -------------------------------------------------------------------------------- /doc/src/doc_sbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_sbc.h -------------------------------------------------------------------------------- /doc/src/doc_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_signals.h -------------------------------------------------------------------------------- /doc/src/doc_tutorialapps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_tutorialapps.h -------------------------------------------------------------------------------- /doc/src/doc_zrtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doc_zrtp.h -------------------------------------------------------------------------------- /doc/src/doxyref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/doc/src/doxyref.h -------------------------------------------------------------------------------- /pkg/deb/bookworm/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bookworm/changelog -------------------------------------------------------------------------------- /pkg/deb/bookworm/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/bookworm/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bookworm/control -------------------------------------------------------------------------------- /pkg/deb/bookworm/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bookworm/copyright -------------------------------------------------------------------------------- /pkg/deb/bookworm/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bookworm/rules -------------------------------------------------------------------------------- /pkg/deb/bookworm/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/bookworm/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bookworm/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/bookworm/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/bookworm/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/bullseye/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bullseye/changelog -------------------------------------------------------------------------------- /pkg/deb/bullseye/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/bullseye/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bullseye/control -------------------------------------------------------------------------------- /pkg/deb/bullseye/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bullseye/copyright -------------------------------------------------------------------------------- /pkg/deb/bullseye/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bullseye/rules -------------------------------------------------------------------------------- /pkg/deb/bullseye/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/bullseye/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/bullseye/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/bullseye/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/bullseye/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/buster/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/changelog -------------------------------------------------------------------------------- /pkg/deb/buster/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/deb/buster/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/control -------------------------------------------------------------------------------- /pkg/deb/buster/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/copyright -------------------------------------------------------------------------------- /pkg/deb/buster/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/rules -------------------------------------------------------------------------------- /pkg/deb/buster/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/sems.default -------------------------------------------------------------------------------- /pkg/deb/buster/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/sems.init -------------------------------------------------------------------------------- /pkg/deb/buster/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/buster/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/buster/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/buster/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/buster/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/buster/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/changelog -------------------------------------------------------------------------------- /pkg/deb/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/control -------------------------------------------------------------------------------- /pkg/deb/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/copyright -------------------------------------------------------------------------------- /pkg/deb/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/rules -------------------------------------------------------------------------------- /pkg/deb/debian/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/sems.default -------------------------------------------------------------------------------- /pkg/deb/debian/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/sems.init -------------------------------------------------------------------------------- /pkg/deb/debian/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/debian/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/debian/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/debian/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/debian/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/jessie/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/changelog -------------------------------------------------------------------------------- /pkg/deb/jessie/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/deb/jessie/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/control -------------------------------------------------------------------------------- /pkg/deb/jessie/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/copyright -------------------------------------------------------------------------------- /pkg/deb/jessie/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/rules -------------------------------------------------------------------------------- /pkg/deb/jessie/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/sems.default -------------------------------------------------------------------------------- /pkg/deb/jessie/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/sems.init -------------------------------------------------------------------------------- /pkg/deb/jessie/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/jessie/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/jessie/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/jessie/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/jessie/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/jessie/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/precise/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/changelog -------------------------------------------------------------------------------- /pkg/deb/precise/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/deb/precise/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/control -------------------------------------------------------------------------------- /pkg/deb/precise/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/copyright -------------------------------------------------------------------------------- /pkg/deb/precise/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/rules -------------------------------------------------------------------------------- /pkg/deb/precise/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/sems.default -------------------------------------------------------------------------------- /pkg/deb/precise/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/sems.init -------------------------------------------------------------------------------- /pkg/deb/precise/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/precise/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/precise/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/precise/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/precise/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/trixie/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/changelog -------------------------------------------------------------------------------- /pkg/deb/trixie/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /pkg/deb/trixie/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/control -------------------------------------------------------------------------------- /pkg/deb/trixie/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/copyright -------------------------------------------------------------------------------- /pkg/deb/trixie/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/rules -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/sems.default -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/sems.service -------------------------------------------------------------------------------- /pkg/deb/trixie/sems.tmpfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trixie/sems.tmpfile -------------------------------------------------------------------------------- /pkg/deb/trixie/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/trixie/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/trusty/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/changelog -------------------------------------------------------------------------------- /pkg/deb/trusty/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/deb/trusty/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/control -------------------------------------------------------------------------------- /pkg/deb/trusty/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/copyright -------------------------------------------------------------------------------- /pkg/deb/trusty/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/rules -------------------------------------------------------------------------------- /pkg/deb/trusty/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/sems.default -------------------------------------------------------------------------------- /pkg/deb/trusty/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/sems.init -------------------------------------------------------------------------------- /pkg/deb/trusty/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/trusty/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/trusty/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/trusty/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/trusty/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/trusty/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/deb/wheezy/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/changelog -------------------------------------------------------------------------------- /pkg/deb/wheezy/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /pkg/deb/wheezy/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/control -------------------------------------------------------------------------------- /pkg/deb/wheezy/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/copyright -------------------------------------------------------------------------------- /pkg/deb/wheezy/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/rules -------------------------------------------------------------------------------- /pkg/deb/wheezy/sems.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/sems.default -------------------------------------------------------------------------------- /pkg/deb/wheezy/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/sems.init -------------------------------------------------------------------------------- /pkg/deb/wheezy/sems.lintian-overrides: -------------------------------------------------------------------------------- 1 | sems: possible-gpl-code-linked-with-openssl 2 | -------------------------------------------------------------------------------- /pkg/deb/wheezy/sems.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/sems.postinst -------------------------------------------------------------------------------- /pkg/deb/wheezy/sems.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/deb/wheezy/sems.postrm -------------------------------------------------------------------------------- /pkg/deb/wheezy/shlibs.local: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pkg/deb/wheezy/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /pkg/gentoo/files/sems.confd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/gentoo/files/sems.confd -------------------------------------------------------------------------------- /pkg/gentoo/files/sems.rc6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/gentoo/files/sems.rc6 -------------------------------------------------------------------------------- /pkg/rpm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/rpm/README -------------------------------------------------------------------------------- /pkg/rpm/sems.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/rpm/sems.init -------------------------------------------------------------------------------- /pkg/rpm/sems.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/rpm/sems.spec -------------------------------------------------------------------------------- /pkg/rpm/sems.sysconfig: -------------------------------------------------------------------------------- 1 | OPTIONS="" 2 | -------------------------------------------------------------------------------- /pkg/rpm/sems.systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/pkg/rpm/sems.systemd.service -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/logfile-splitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sems-server/sems/HEAD/tools/logfile-splitter.cpp -------------------------------------------------------------------------------- /tools/sems-rtp-mux-get-max-frame-age-ms: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | sems-stats -c "get_rtp_mux_max_frame_age_ms" 3 | -------------------------------------------------------------------------------- /tools/sems-rtp-mux-get-mtu-threshold: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | sems-stats -c "get_rtp_mux_mtu_threshold" 3 | --------------------------------------------------------------------------------