6
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 23 hours ago. based on code collected 1 day ago.
Dec 13, 2024 — Dec 13, 2025
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix logic inversion that can lead to the out-of-the-bounds write and subsequent corryption of the refcounter, causing memory leak with oss-fuzz. More... over 1 year ago
Verify that the refcounter has a correct value after command run. More... over 1 year ago
Add peek() debug method to fetch current counter value for debug purposes. More... over 1 year ago
Fix compiler warnings. More... over 1 year ago
Set RTPP_DEBUG_refcnt, enable tracing for the cmd->reply->rcnt and check that both cmd->reply and cmd->reply->rcnt are intact after running a test case. This is to debug fuzzer-triggered memory leaks. More... over 1 year ago
Allow RTPP_DEBUG_refcnt to be used separately from RTPP_DEBUG. More... over 1 year ago
Move functions from fuzz_rtpp_utils.h into its own TUs. More... over 1 year ago
Add missing semicolons. More... over 1 year ago
Export rtpp_weakref methods. More... over 1 year ago
Fix warning. More... over 1 year ago
Fix a race condition still present between destruction of the stream and the execution of the timer, which might lead to us trying to do use-afrer-free. Solve it hopefully by saving the stream uid and resolving that into a stream on as needed basis. More... over 1 year ago
Move reply before after_success array, so if we for some reason overflow the latter that would trigger asan and not just trash reply. More... over 1 year ago
Add a passive DTLS session too. More... over 1 year ago
Don't just grab bunch of references at various levels to schedule a timer. This leads of a bunch of circular references all over the place. Instead, let timer grab reference to us and only us and provide upper layer(s) an API to notify us about destruction, so that timer can be cancelled and rtpp_dtls_conn() deallocated in the due course. More... over 1 year ago
Don't run apt upgrade. More... over 1 year ago
Re-gen. More... over 1 year ago
Use rtpc_reply_reserve() to make sure we have enough space to complete the command. More... over 1 year ago
Add reserved lengh support. More... over 1 year ago
Fix pushing to dockerhub. More... over 1 year ago
Disconnect all sessions before exiting LLVMFuzzerTestOneInput(). More... over 1 year ago
Don't copy response into the cache, just store a reference to it. More... over 1 year ago
Don't redefine _GNU_SOURCE if it's already set. More... over 1 year ago
Parse IPv6 address correctly. More... over 1 year ago
Enable IPv6. More... over 1 year ago
Bump RTPC_MAX_ARGC so it has enough to fit the longest ICE candidates. More... over 1 year ago
Bump ccache size. More... over 1 year ago
Split out reply generation routines into its own TU / class. This is allowing for proper length and other sanity checking. Also, having a separate lifecycle and such. More... over 1 year ago
Re-gen. More... over 1 year ago
Make rtpp_cmd_rcache.lookup() method return refcounted rtpp_cmd_rcache_entry, so that it can be sent directly without doing copy operation. More... over 1 year ago
Add rtpp_wi_malloc_na() a new API to allocate a refcounted buffer. More... over 1 year ago