mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-04 11:58:52 +00:00
docs: Add version information to configObject and configOption XML elements
Most of the configObjects and configOptions that are implemented with ACO or Sorcery now have `<since>/<version>` elements added. There are probably some that the script I used didn't catch. The version tags were determined by the following... * Do a git blame on the API call that created the object or option. * From the commit hash, grab the summary line. * Do a `git log --grep <summary>` to find the cherry-pick commits in all branches that match. * Do a `git patch-id` to ensure the commits are all related and didn't get a false match on the summary. * Do a `git tag --contains <commit>` to find the tags that contain each commit. * Weed out all tags not <major>.<minor>.0. * Sort and discard any <major>.0.0 and following tags where the commit appeared in an earlier branch. * The result is a single tag for each branch where the API was last touched. configObjects and configOptions elements implemented with the base ast_config APIs were just not possible to find due to the non-deterministic way they are accessed. Also note that if the API call was on modified after it was added, the version will be the one it was last modified in. Final note: The configObject and configOption elements were introduced in 12.0.0 so options created before then may not have any XML documentation.
This commit is contained in:
committed by
asterisk-org-access-app[bot]
parent
ff0fb401ae
commit
316693ded9
@@ -81,29 +81,38 @@
|
||||
<configInfo name="udptl" language="en_US">
|
||||
<configFile name="udptl.conf">
|
||||
<configObject name="global">
|
||||
<since><version>12.0.0</version></since>
|
||||
<synopsis>Global options for configuring UDPTL</synopsis>
|
||||
<configOption name="udptlstart">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>The start of the UDPTL port range</synopsis>
|
||||
</configOption>
|
||||
<configOption name="udptlend">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>The end of the UDPTL port range</synopsis>
|
||||
</configOption>
|
||||
<configOption name="udptlchecksums">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>Whether to enable or disable UDP checksums on UDPTL traffic</synopsis>
|
||||
</configOption>
|
||||
<configOption name="udptlfecentries">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>The number of error correction entries in a UDPTL packet</synopsis>
|
||||
</configOption>
|
||||
<configOption name="udptlfecspan">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>The span over which parity is calculated for FEC in a UDPTL packet</synopsis>
|
||||
</configOption>
|
||||
<configOption name="use_even_ports">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>Whether to only use even-numbered UDPTL ports</synopsis>
|
||||
</configOption>
|
||||
<configOption name="t38faxudpec">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>Removed</synopsis>
|
||||
</configOption>
|
||||
<configOption name="t38faxmaxdatagram">
|
||||
<since><version>11.0.0</version></since>
|
||||
<synopsis>Removed</synopsis>
|
||||
</configOption>
|
||||
</configObject>
|
||||
|
Reference in New Issue
Block a user