├── Makefile ├── README.md ├── doc └── README ├── docker ├── Dockerfile └── run.sh └── src ├── channels.cpp ├── channels.h ├── commands.cpp ├── commands.h ├── includes.h ├── main.cpp ├── main.h └── state.h /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/README.md -------------------------------------------------------------------------------- /doc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/doc/README -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/docker/run.sh -------------------------------------------------------------------------------- /src/channels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/channels.cpp -------------------------------------------------------------------------------- /src/channels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/channels.h -------------------------------------------------------------------------------- /src/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/commands.cpp -------------------------------------------------------------------------------- /src/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/commands.h -------------------------------------------------------------------------------- /src/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/includes.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/main.h -------------------------------------------------------------------------------- /src/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmakkonen/sipcmd/HEAD/src/state.h --------------------------------------------------------------------------------