sip-lab 1.12.23 → 1.12.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -3
- package/index.js +1 -1
- package/install.sh +0 -7
- package/package.json +17 -7
- package/prebuilds/linux-x64/node.abi102.node +0 -0
- package/prebuilds/linux-x64/node.abi108.node +0 -0
- package/prebuilds/linux-x64/node.abi88.node +0 -0
- package/prebuilds/linux-x64/node.abi93.node +0 -0
- package/DEV.md +0 -35
- package/binding.gyp +0 -110
- package/devjournal +0 -449
- package/include/siplab_constants.h +0 -6
- package/runtests +0 -15
- package/src/Makefile +0 -42
- package/src/addon.cpp +0 -1094
- package/src/event_templates.cpp +0 -62
- package/src/event_templates.hpp +0 -29
- package/src/idmanager.cpp +0 -76
- package/src/idmanager.hpp +0 -26
- package/src/log.cpp +0 -18
- package/src/log.hpp +0 -15
- package/src/packetdumper.cpp +0 -234
- package/src/packetdumper.hpp +0 -67
- package/src/pjmedia/Makefile +0 -39
- package/src/pjmedia/devjournal +0 -26
- package/src/pjmedia/include/chainlink/README +0 -3
- package/src/pjmedia/include/chainlink/chainlink.h +0 -11
- package/src/pjmedia/include/chainlink/chainlink_dtmfdet.h +0 -56
- package/src/pjmedia/include/chainlink/chainlink_fax.h +0 -25
- package/src/pjmedia/include/chainlink/chainlink_tonegen.h +0 -178
- package/src/pjmedia/include/chainlink/chainlink_wav_port.h +0 -231
- package/src/pjmedia/include/chainlink/chainlink_wire_port.h +0 -50
- package/src/pjmedia/include/pjmedia/README +0 -3
- package/src/pjmedia/include/pjmedia/dtmfdet.h +0 -74
- package/src/pjmedia/src/chainlink/chainlink_dtmfdet.c +0 -125
- package/src/pjmedia/src/chainlink/chainlink_fax.c +0 -280
- package/src/pjmedia/src/chainlink/chainlink_tonegen.c +0 -901
- package/src/pjmedia/src/chainlink/chainlink_wav_player.c +0 -688
- package/src/pjmedia/src/chainlink/chainlink_wav_writer.c +0 -442
- package/src/pjmedia/src/chainlink/chainlink_wire_port.c +0 -93
- package/src/pjmedia/src/pjmedia/dtmfdet.c +0 -129
- package/src/pjmedia/src/pjmedia/simpleua_dtmfdet.c +0 -753
- package/src/pjmedia/src/pjmedia/tonegen_dtmfdet.c +0 -263
- package/src/sip.cpp +0 -5975
- package/src/sip.hpp +0 -107
package/runtests
DELETED
package/src/Makefile
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
#Modify this to point to the PJSIP location.
|
|
2
|
-
PJBASE=/usr/local/src/svn/pjproject
|
|
3
|
-
|
|
4
|
-
include $(PJBASE)/build.mak
|
|
5
|
-
|
|
6
|
-
CC = $(APP_CC)
|
|
7
|
-
LDFLAGS = $(APP_LDFLAGS)
|
|
8
|
-
LDLIBS = -lstdc++ $(APP_LDLIBS)
|
|
9
|
-
CFLAGS = $(APP_CFLAGS)
|
|
10
|
-
|
|
11
|
-
# CFLAGS is APP_CFLAGS that comes from /user/local/src/svn/pjproject. In it, we have -02. So since we want to disable optimization by setting -O0
|
|
12
|
-
# we set -O0 before and after it to ensure -O0 has the final say.
|
|
13
|
-
CPPFLAGS= -g -O0 ${CFLAGS} $(LDFLAGS) -O0 -I /usr/local/src/boost_1_51_0 -I pjmedia/include/chainlink
|
|
14
|
-
|
|
15
|
-
VPATH = pjmedia
|
|
16
|
-
|
|
17
|
-
.PHONY : clean install
|
|
18
|
-
|
|
19
|
-
all: sip.so
|
|
20
|
-
|
|
21
|
-
chainlink:
|
|
22
|
-
make -C pjmedia
|
|
23
|
-
|
|
24
|
-
idmanager.o: idmanager.cpp idmanager.hpp
|
|
25
|
-
$(CC) -fPIC -c -o idmanager.o idmanager.cpp $(CPPFLAGS)
|
|
26
|
-
|
|
27
|
-
packetdumper.o: packetdumper.cpp packetdumper.hpp
|
|
28
|
-
$(CC) -fPIC -c -o packetdumper.o packetdumper.cpp $(CPPFLAGS)
|
|
29
|
-
|
|
30
|
-
event_templates.o: event_templates.cpp event_templates.hpp
|
|
31
|
-
$(CC) -fPIC -c -o event_templates.o event_templates.cpp $(CPPFLAGS)
|
|
32
|
-
|
|
33
|
-
sip.o: sip.cpp sip.hpp
|
|
34
|
-
$(CC) -fPIC -c -o sip.o sip.cpp $(CPPFLAGS)
|
|
35
|
-
|
|
36
|
-
sip.so: sip.o idmanager.o packetdumper.o event_templates.o chainlink
|
|
37
|
-
$(CC) -fPIC -shared -o sip.so sip.o idmanager.o packetdumper.o event_templates.o pjmedia/libchainlink.a 3rdParty/spandsp/src/.libs/libspandsp.a -Wl,-E -lm -ldl -ltiff -lpcap $(CPPFLAGS) $(LDFLAGS) $(LDLIBS)
|
|
38
|
-
|
|
39
|
-
clean:
|
|
40
|
-
rm -f *.o *.so
|
|
41
|
-
make -C pjmedia clean
|
|
42
|
-
|