- Fix header comment for doxygen for authextstrtoaddr.

This commit is contained in:
W.C.A. Wijngaards 2022-02-02 13:20:46 +01:00
parent ee3c478239
commit e656be63f9
2 changed files with 3 additions and 2 deletions

View File

@ -10,6 +10,7 @@
2 February 2022: Wouter
- Update version number in repo to 1.15.0 for upcoming release,
since it changes the aggressive-nsec default and the ratelimit change.
- Fix header comment for doxygen for authextstrtoaddr.
1 February 2022: George
- Merge PR #603 from fobser: Use OpenSSL 1.1 API to access DSA and RSA

View File

@ -211,7 +211,7 @@ int netblockstrtoaddr(const char* ip, int port, struct sockaddr_storage* addr,
* Convert address string, with "@port" appendix, to sockaddr.
* It can also have an "#tls-auth-name" appendix (after the port).
* The returned auth_name string is a pointer into the input string.
* Uses DNS port by default; TLS port when a '#tls-auth-name' is configured.
* Uses DNS port by default; TLS port when a "#tls-auth-name" is configured.
* @param str: the string
* @param addr: where to store sockaddr.
* @param addrlen: length of stored sockaddr is returned.
@ -225,7 +225,7 @@ int authextstrtoaddr(char* str, struct sockaddr_storage* addr,
* Convert domain string, with "@port" appendix, to dname.
* It can also have an "#tls-auth-name" appendix (after the port).
* The return port is the parsed port.
* Uses DNS port by default; TLS port when a '#tls-auth-name' is configured.
* Uses DNS port by default; TLS port when a "#tls-auth-name" is configured.
* The returned auth_name string is a pointer into the input string.
* @param str: the string
* @param port: pointer to be assigned the parsed port value.