├── .gitignore ├── CMakeLists.txt ├── FindLibSDRplay.cmake ├── LICENSE ├── README.md ├── getopt ├── getopt.c └── getopt.h ├── packages.config ├── rsp_tcp.c ├── rsp_tcp.sln ├── rsp_tcp.vcxproj ├── rsp_tcp_api.h └── win32 └── BUILD.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | packages 3 | Release 4 | build/ 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /FindLibSDRplay.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/FindLibSDRplay.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/README.md -------------------------------------------------------------------------------- /getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/getopt/getopt.c -------------------------------------------------------------------------------- /getopt/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/getopt/getopt.h -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/packages.config -------------------------------------------------------------------------------- /rsp_tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/rsp_tcp.c -------------------------------------------------------------------------------- /rsp_tcp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/rsp_tcp.sln -------------------------------------------------------------------------------- /rsp_tcp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/rsp_tcp.vcxproj -------------------------------------------------------------------------------- /rsp_tcp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/rsp_tcp_api.h -------------------------------------------------------------------------------- /win32/BUILD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SDRplay/RSPTCPServer/HEAD/win32/BUILD.txt --------------------------------------------------------------------------------