diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2019-01-25 18:30:56 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2019-01-25 18:30:56 +0100 |
commit | 961b2a7b155a23daa95467ae3b2ee6a7bc3cb884 (patch) | |
tree | d62b90aa4273487dcd9d9a9e28a566ef68814e76 /ACE/examples | |
parent | 5269a3f118eea92b56087334e6282713aec9e473 (diff) | |
download | ATCD-961b2a7b155a23daa95467ae3b2ee6a7bc3cb884.tar.gz |
Fix broken links and some doxygen enhancements
* ACE/ACE-INSTALL.html:
* ACE/ACEXML/common/URL_Addr.h:
* ACE/examples/Web_Crawler/URL_Addr.h:
* TAO/docs/releasenotes/index.html:
Diffstat (limited to 'ACE/examples')
-rw-r--r-- | ACE/examples/Web_Crawler/URL_Addr.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/examples/Web_Crawler/URL_Addr.h b/ACE/examples/Web_Crawler/URL_Addr.h index 4490b93c442..6e7265f7647 100644 --- a/ACE/examples/Web_Crawler/URL_Addr.h +++ b/ACE/examples/Web_Crawler/URL_Addr.h @@ -44,23 +44,23 @@ public: int set (const ACE_URL_Addr &addr); /** - * Initializes an <ACE_URL_Addr> from the <address>, which can be + * Initializes an ACE_URL_Addr from the @a address, which can be * "ip-number:port-number/path-name" (e.g., * "www.cs.wustl.edu:1234/~schmidt/" "ip-number:port-number/path-name" * (e.g., "128.252.166.57:1234/~schmidt"). If there is no ':' in - * the <address> it is assumed to be an ip-number or ip-address - * number, with the port number <ACE_DEFAULT_HTTP_PORT>. + * the @a address it is assumed to be an ip-number or ip-address + * number, with the port number ACE_DEFAULT_HTTP_PORT. */ virtual int string_to_addr (const ACE_TCHAR *address, int address_family = AF_UNSPEC); /** - * Transform the current <ACE_INET_Addr> address into string format. - * If <ipaddr_format> is non-0 this produces + * Transform the current ACE_INET_Addr address into string format. + * If @a ipaddr_format is non-0 this produces * "ip-number:port-number/path-name" (e.g., - * "128.252.166.57:80/~schmidt/"), whereas if <ipaddr_format> is 0 + * "128.252.166.57:80/~schmidt/"), whereas if @a ipaddr_format is 0 * this produces "ip-name:port-number" (e.g., - * "www.cs.wustl.edu:80/~schmidt/"). Returns -1 if the <size> of + * "www.cs.wustl.edu:80/~schmidt/"). Returns -1 if the @a size of * the <buffer> is too small, else 0. */ virtual int addr_to_string (ACE_TCHAR *s, |