Age | Commit message (Collapse) | Author |
|
|
|
transfer timeout
|
|
(closes #1994)
The clean of processes with waitpid() is now delayed after the kill(), so that
there are no more zombies.
In addition, this can be done manually if needed with `/sys waitpid`.
|
|
|
|
|
|
|
|
|
|
Completions renamed:
- "buflist_all_items" -> "buflist_items"
- "buflist_used_items" -> "buflist_items_used"
|
|
|
|
inet_pton() can return values < 0.
|
|
man pages as well as rpminspect suggest that we shouldn't be using
inet_addr().
|
|
|
|
#2020, issue #97)
|
|
(issue #2019)
|
|
script (closes #2019)
|
|
(closes #2018)
|
|
|
|
|
|
list of scripts (closes #1723)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo-message is NOT enabled (issue #2016)
|
|
echo-message is enabled (closes #2016)
|
|
echo-message is enabled (issue #2016)
|
|
`blake2s-*` in option sec.crypt.hash_algo (closes #2008)
|
|
in hash functions (issue #2008)
|
|
|
|
(closes #2013)
|
|
|
|
an IRC command (closes #1992)
|
|
version
|
|
|
|
|
|
|
|
and user's guide
|
|
(issue #1973)
|
|
(issue #2010)
|
|
Regression was introduced in commit 817d1eaf8e0be700bf9b61dcbaf9db7ab507d3af.
|
|
|
|
|
|
|
|
|
|
|
|
This commit also includes support for passive DCC RESUME.
There was also a potential segfault with calling `atoi(pos_token)` when `pos_token` is NULL, so `token` is set to be stored as a string. Although it is an integer, we don't need to store it as such. That's really more of an implementation detail.
|
|
Before making any significant changes, let's identify the existing xfer types by either active or passive.
|
|
This makes it easier to handle the optional "token" argument at the (right) end, which will be necessary to support passive DCC.
Incidentally, this is RtL parsing order is the reason why you'd get a cryptic "0" address error when attempting to do passive DCC: the "token" argument gets misinterpreted as the "size" argument. Every argument "shifts" over by one, leaving an address (port) of "0".
|