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.
Files changed (45) hide show
  1. package/README.md +0 -3
  2. package/index.js +1 -1
  3. package/install.sh +0 -7
  4. package/package.json +17 -7
  5. package/prebuilds/linux-x64/node.abi102.node +0 -0
  6. package/prebuilds/linux-x64/node.abi108.node +0 -0
  7. package/prebuilds/linux-x64/node.abi88.node +0 -0
  8. package/prebuilds/linux-x64/node.abi93.node +0 -0
  9. package/DEV.md +0 -35
  10. package/binding.gyp +0 -110
  11. package/devjournal +0 -449
  12. package/include/siplab_constants.h +0 -6
  13. package/runtests +0 -15
  14. package/src/Makefile +0 -42
  15. package/src/addon.cpp +0 -1094
  16. package/src/event_templates.cpp +0 -62
  17. package/src/event_templates.hpp +0 -29
  18. package/src/idmanager.cpp +0 -76
  19. package/src/idmanager.hpp +0 -26
  20. package/src/log.cpp +0 -18
  21. package/src/log.hpp +0 -15
  22. package/src/packetdumper.cpp +0 -234
  23. package/src/packetdumper.hpp +0 -67
  24. package/src/pjmedia/Makefile +0 -39
  25. package/src/pjmedia/devjournal +0 -26
  26. package/src/pjmedia/include/chainlink/README +0 -3
  27. package/src/pjmedia/include/chainlink/chainlink.h +0 -11
  28. package/src/pjmedia/include/chainlink/chainlink_dtmfdet.h +0 -56
  29. package/src/pjmedia/include/chainlink/chainlink_fax.h +0 -25
  30. package/src/pjmedia/include/chainlink/chainlink_tonegen.h +0 -178
  31. package/src/pjmedia/include/chainlink/chainlink_wav_port.h +0 -231
  32. package/src/pjmedia/include/chainlink/chainlink_wire_port.h +0 -50
  33. package/src/pjmedia/include/pjmedia/README +0 -3
  34. package/src/pjmedia/include/pjmedia/dtmfdet.h +0 -74
  35. package/src/pjmedia/src/chainlink/chainlink_dtmfdet.c +0 -125
  36. package/src/pjmedia/src/chainlink/chainlink_fax.c +0 -280
  37. package/src/pjmedia/src/chainlink/chainlink_tonegen.c +0 -901
  38. package/src/pjmedia/src/chainlink/chainlink_wav_player.c +0 -688
  39. package/src/pjmedia/src/chainlink/chainlink_wav_writer.c +0 -442
  40. package/src/pjmedia/src/chainlink/chainlink_wire_port.c +0 -93
  41. package/src/pjmedia/src/pjmedia/dtmfdet.c +0 -129
  42. package/src/pjmedia/src/pjmedia/simpleua_dtmfdet.c +0 -753
  43. package/src/pjmedia/src/pjmedia/tonegen_dtmfdet.c +0 -263
  44. package/src/sip.cpp +0 -5975
  45. package/src/sip.hpp +0 -107
@@ -1,6 +0,0 @@
1
- #ifndef __SIPLAB_CONSTANTS_H__
2
- #define __SIPLAB_CONSTANTS_H__
3
-
4
- #define FAX_FLAG_TRANSMIT_ON_IDLE 1
5
-
6
- #endif /* __SIPLAB_CONSTANTS_H__ */
package/runtests DELETED
@@ -1,15 +0,0 @@
1
- #!/bin/bash
2
-
3
- for i in $(ls samples/*.js)
4
- do
5
- node $i
6
- if [[ $? -ne 0 ]]
7
- then
8
- echo "$i failed"
9
- exit 1
10
- fi
11
- done
12
-
13
- echo
14
- echo "Success. All tests passed"
15
-
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
-