├── Makefile ├── include ├── audio.h ├── g711.h ├── rtp.h └── sip.h └── src ├── Makefile ├── audio.c ├── g711.c ├── rtp.c ├── sip.c └── voz.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/Makefile -------------------------------------------------------------------------------- /include/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/include/audio.h -------------------------------------------------------------------------------- /include/g711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/include/g711.h -------------------------------------------------------------------------------- /include/rtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/include/rtp.h -------------------------------------------------------------------------------- /include/sip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/include/sip.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/audio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/audio.c -------------------------------------------------------------------------------- /src/g711.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/g711.c -------------------------------------------------------------------------------- /src/rtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/rtp.c -------------------------------------------------------------------------------- /src/sip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/sip.c -------------------------------------------------------------------------------- /src/voz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hfreire/sipc/HEAD/src/voz.c --------------------------------------------------------------------------------