VirtualBox

Changeset 57720 in vbox for trunk/include


Ignore:
Timestamp:
Sep 11, 2015 2:49:21 PM (10 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
102634
Message:

RTUri: Preps for parsing the authority bits into smaller pieces for cURL proxy config.

Location:
trunk/include/iprt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/err.h

    r57613 r57720  
    24962496/** @} */
    24972497
     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
    24982510/* SED-END */
    24992511
  • trunk/include/iprt/mangling.h

    r57643 r57720  
    18591859# define RTUniFree                                      RT_MANGLER(RTUniFree)
    18601860# define RTUriAuthority                                 RT_MANGLER(RTUriAuthority)
     1861# define RTUriAuthorityPassword                         RT_MANGLER(RTUriAuthorityPassword)
     1862# define RTUriAuthorityPort                             RT_MANGLER(RTUriAuthorityPort)
     1863# define RTUriAuthorityUsername                         RT_MANGLER(RTUriAuthorityUsername)
    18611864# define RTUriCreate                                    RT_MANGLER(RTUriCreate)
    18621865# define RTUriFileCreate                                RT_MANGLER(RTUriFileCreate)
  • trunk/include/iprt/uri.h

    r57004 r57720  
    8080 * @returns the authority if the URI contains one, NULL otherwise.
    8181 * @param   pszUri              The URI to extract from.
     82 * @remarks The authority can have a zero length.
    8283 */
    8384RTR3DECL(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 */
     92RTR3DECL(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 */
     100RTR3DECL(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 */
     108RTR3DECL(uint32_t) RTUriAuthorityPort(const char *pszUri);
    84109
    85110/**
     
    121146
    122147/**
    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().
    125151 *
    126152 * @see RTUriCreate
    127153 *
    128  * @returns the new URI on success, NULL otherwise.
     154 * @returns The new URI on success, NULL otherwise.  Free With RTStrFree.
    129155 * @param   pszPath             The path of the URI.
    130156 */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette