Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
config/ | 03-May-2024 | - | 7 | 0 | ||
srtp/ | 03-May-2024 | - | 31,596 | 18,193 | ||
.gitignore | D | 03-May-2024 | 12 | 2 | 1 | |
README.chromium | D | 03-May-2024 | 697 | 25 | 18 | |
libsrtp.gyp | D | 03-May-2024 | 10.9 KiB | 387 | 382 | |
libsrtp.target.darwin-arm.mk | D | 03-May-2024 | 8.5 KiB | 315 | 274 | |
libsrtp.target.darwin-arm64.mk | D | 03-May-2024 | 7.9 KiB | 289 | 248 | |
libsrtp.target.darwin-mips.mk | D | 03-May-2024 | 8.2 KiB | 301 | 260 | |
libsrtp.target.darwin-mips64.mk | D | 03-May-2024 | 8.1 KiB | 299 | 258 | |
libsrtp.target.darwin-x86.mk | D | 03-May-2024 | 8.2 KiB | 303 | 262 | |
libsrtp.target.darwin-x86_64.mk | D | 03-May-2024 | 8.1 KiB | 299 | 258 | |
libsrtp.target.linux-arm.mk | D | 03-May-2024 | 8.5 KiB | 315 | 274 | |
libsrtp.target.linux-arm64.mk | D | 03-May-2024 | 7.9 KiB | 289 | 248 | |
libsrtp.target.linux-mips.mk | D | 03-May-2024 | 8.2 KiB | 301 | 260 | |
libsrtp.target.linux-mips64.mk | D | 03-May-2024 | 8.1 KiB | 299 | 258 | |
libsrtp.target.linux-x86.mk | D | 03-May-2024 | 8.2 KiB | 303 | 262 | |
libsrtp.target.linux-x86_64.mk | D | 03-May-2024 | 8.1 KiB | 299 | 258 |
README.chromium
1Name: libsrtp 2URL: http://srtp.sourceforge.net/srtp.html 3Version: 1.4.4 4License: 3-clause BSD 5License File: srtp/LICENSE 6Security Critical: Yes 7 8Description: 9 Libsrtp provides secure media transmission in a real 10 time communication. It's used with libjingle which 11 provides the p2p session setup. 12 13 Libsrtp is distributed under the following BSD-based license, detailed info 14 in srtp/LICENSE. 15 16Local Modifications: 17 18Replace 'inline' with 'INLINE' and #define to either 'inline' or '__inline'. 19This is required because VS2012 does not allow redefinition of keywords via 20macros, but also does not support 'inline' in C files. 21 22Adding additional RTP header check 23 24Added gyp support to __arm64__ 25