Changeset 57720 in vbox for trunk/include
- Timestamp:
- Sep 11, 2015 2:49:21 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102634
- Location:
- trunk/include/iprt
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r57613 r57720 2496 2496 /** @} */ 2497 2497 2498 /** @name RTUri status codes. 2499 * @{ */ 2500 /** The URI is empty */ 2501 #define VERR_URI_EMPTY (-24600) 2502 /** The URI is too short to be a valid URI. */ 2503 #define VERR_URI_TOO_SHORT (-24601) 2504 /** Invalid scheme. */ 2505 #define VERR_URI_INVALID_SCHEME (-24602) 2506 /** Invalid port number. */ 2507 #define VERR_URI_INVALID_PORT_NUMBER (-24603) 2508 /** @} */ 2509 2498 2510 /* SED-END */ 2499 2511 -
trunk/include/iprt/mangling.h
r57643 r57720 1859 1859 # define RTUniFree RT_MANGLER(RTUniFree) 1860 1860 # define RTUriAuthority RT_MANGLER(RTUriAuthority) 1861 # define RTUriAuthorityPassword RT_MANGLER(RTUriAuthorityPassword) 1862 # define RTUriAuthorityPort RT_MANGLER(RTUriAuthorityPort) 1863 # define RTUriAuthorityUsername RT_MANGLER(RTUriAuthorityUsername) 1861 1864 # define RTUriCreate RT_MANGLER(RTUriCreate) 1862 1865 # define RTUriFileCreate RT_MANGLER(RTUriFileCreate) -
trunk/include/iprt/uri.h
r57004 r57720 80 80 * @returns the authority if the URI contains one, NULL otherwise. 81 81 * @param pszUri The URI to extract from. 82 * @remarks The authority can have a zero length. 82 83 */ 83 84 RTR3DECL(char *) RTUriAuthority(const char *pszUri); 85 86 /** 87 * Extract the username out of the authority component in an URI. 88 * 89 * @returns The username if the URI contains one, otherwise NULL. 90 * @param pszUri The URI to extract from. 91 */ 92 RTR3DECL(char *) RTUriAuthorityUsername(const char *pszUri); 93 94 /** 95 * Extract the password out of the authority component in an URI. 96 * 97 * @returns The password if the URI contains one, otherwise NULL. 98 * @param pszUri The URI to extract from. 99 */ 100 RTR3DECL(char *) RTUriAuthorityPassword(const char *pszUri); 101 102 /** 103 * Extract the port number out of the authority component in an URI. 104 * 105 * @returns The port number if the URI contains one, otherwise UINT32_MAX. 106 * @param pszUri The URI to extract from. 107 */ 108 RTR3DECL(uint32_t) RTUriAuthorityPort(const char *pszUri); 84 109 85 110 /** … … 121 146 122 147 /** 123 * Creates a file URI. The returned pointer must be freed 124 * using RTStrFree(). 148 * Creates a file URI. 149 * 150 * The returned pointer must be freed using RTStrFree(). 125 151 * 126 152 * @see RTUriCreate 127 153 * 128 * @returns the new URI on success, NULL otherwise.154 * @returns The new URI on success, NULL otherwise. Free With RTStrFree. 129 155 * @param pszPath The path of the URI. 130 156 */
Note:
See TracChangeset
for help on using the changeset viewer.