Changeset 74424 in vbox for trunk/include/iprt
- Timestamp:
- Sep 22, 2018 8:00:36 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 125259
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/uri.h
r69105 r74424 97 97 /** The length of the host part of the authority. */ 98 98 size_t cchAuthorityHost; 99 /** The authority port number, UINT32_MAX if not present . */99 /** The authority port number, UINT32_MAX if not present or empty. */ 100 100 uint32_t uAuthorityPort; 101 101 /** @} */ … … 110 110 /** Set if the URI contains escaped characters. */ 111 111 #define RTURIPARSED_F_CONTAINS_ESCAPED_CHARS UINT32_C(0x00000001) 112 /** Set if the URI ha vean authority component. Necessary since the authority112 /** Set if the URI has an authority component. Necessary since the authority 113 113 * component can have a zero length. */ 114 #define RTURIPARSED_F_HAVE_AUTHORITY UINT32_C(0x00000002) 114 #define RTURIPARSED_F_HAS_AUTHORITY UINT32_C(0x00000002) 115 /** Set if there is a port component. */ 116 #define RTURIPARSED_F_HAS_PORT UINT32_C(0x00000004) 115 117 /** @} */ 116 118
Note:
See TracChangeset
for help on using the changeset viewer.