├── .gitignore ├── README.md ├── code ├── include │ ├── buffers.h │ ├── librtp.h │ ├── rtpmessages.h │ └── sockets.h └── src │ ├── buffers.cpp │ ├── info.txt │ ├── linux │ ├── info.txt │ └── sockets.cpp │ └── win32 │ ├── info.txt │ └── sockets.cpp └── conf ├── info.txt └── vs2012 ├── librtp.sln └── librtp ├── librtp.vcxproj ├── librtp.vcxproj.filters └── librtp.vcxproj.user /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/README.md -------------------------------------------------------------------------------- /code/include/buffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/include/buffers.h -------------------------------------------------------------------------------- /code/include/librtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/include/librtp.h -------------------------------------------------------------------------------- /code/include/rtpmessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/include/rtpmessages.h -------------------------------------------------------------------------------- /code/include/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/include/sockets.h -------------------------------------------------------------------------------- /code/src/buffers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/buffers.cpp -------------------------------------------------------------------------------- /code/src/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/info.txt -------------------------------------------------------------------------------- /code/src/linux/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/linux/info.txt -------------------------------------------------------------------------------- /code/src/linux/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/linux/sockets.cpp -------------------------------------------------------------------------------- /code/src/win32/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/win32/info.txt -------------------------------------------------------------------------------- /code/src/win32/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/code/src/win32/sockets.cpp -------------------------------------------------------------------------------- /conf/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/conf/info.txt -------------------------------------------------------------------------------- /conf/vs2012/librtp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/conf/vs2012/librtp.sln -------------------------------------------------------------------------------- /conf/vs2012/librtp/librtp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/conf/vs2012/librtp/librtp.vcxproj -------------------------------------------------------------------------------- /conf/vs2012/librtp/librtp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/conf/vs2012/librtp/librtp.vcxproj.filters -------------------------------------------------------------------------------- /conf/vs2012/librtp/librtp.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/logisticpeach/librtp/HEAD/conf/vs2012/librtp/librtp.vcxproj.user --------------------------------------------------------------------------------