Apache Portable Runtime Utility Library
Loading...
Searching...
No Matches
Data Structures | Macros | Typedefs | Functions
Collaboration diagram for URI:

Data Structures

struct  apr_uri_t
 

Macros

#define APR_URI_FTP_DEFAULT_PORT   21
 
#define APR_URI_SSH_DEFAULT_PORT   22
 
#define APR_URI_TELNET_DEFAULT_PORT   23
 
#define APR_URI_GOPHER_DEFAULT_PORT   70
 
#define APR_URI_HTTP_DEFAULT_PORT   80
 
#define APR_URI_POP_DEFAULT_PORT   110
 
#define APR_URI_NNTP_DEFAULT_PORT   119
 
#define APR_URI_IMAP_DEFAULT_PORT   143
 
#define APR_URI_PROSPERO_DEFAULT_PORT   191
 
#define APR_URI_WAIS_DEFAULT_PORT   210
 
#define APR_URI_LDAP_DEFAULT_PORT   389
 
#define APR_URI_HTTPS_DEFAULT_PORT   443
 
#define APR_URI_RTSP_DEFAULT_PORT   554
 
#define APR_URI_SNEWS_DEFAULT_PORT   563
 
#define APR_URI_ACAP_DEFAULT_PORT   674
 
#define APR_URI_NFS_DEFAULT_PORT   2049
 
#define APR_URI_TIP_DEFAULT_PORT   3372
 
#define APR_URI_SIP_DEFAULT_PORT   5060
 
#define APR_URI_UNP_OMITSITEPART   (1U<<0)
 
#define APR_URI_UNP_OMITUSER   (1U<<1)
 
#define APR_URI_UNP_OMITPASSWORD   (1U<<2)
 
#define APR_URI_UNP_OMITUSERINFO
 
#define APR_URI_UNP_REVEALPASSWORD   (1U<<3)
 
#define APR_URI_UNP_OMITPATHINFO   (1U<<4)
 
#define APR_URI_UNP_OMITQUERY   (1U<<5)
 

Typedefs

typedef struct apr_uri_t apr_uri_t
 

Functions

apr_port_t apr_uri_port_of_scheme (const char *scheme_str)
 
char * apr_uri_unparse (apr_pool_t *p, const apr_uri_t *uptr, unsigned flags)
 
apr_status_t apr_uri_parse (apr_pool_t *p, const char *uri, apr_uri_t *uptr)
 
apr_status_t apr_uri_parse_hostinfo (apr_pool_t *p, const char *hostinfo, apr_uri_t *uptr)
 

Detailed Description

Macro Definition Documentation

◆ APR_URI_ACAP_DEFAULT_PORT

#define APR_URI_ACAP_DEFAULT_PORT   674

default ACAP port

◆ APR_URI_FTP_DEFAULT_PORT

#define APR_URI_FTP_DEFAULT_PORT   21

default FTP port

◆ APR_URI_GOPHER_DEFAULT_PORT

#define APR_URI_GOPHER_DEFAULT_PORT   70

default Gopher port

◆ APR_URI_HTTP_DEFAULT_PORT

#define APR_URI_HTTP_DEFAULT_PORT   80

default HTTP port

◆ APR_URI_HTTPS_DEFAULT_PORT

#define APR_URI_HTTPS_DEFAULT_PORT   443

default HTTPS port

◆ APR_URI_IMAP_DEFAULT_PORT

#define APR_URI_IMAP_DEFAULT_PORT   143

default IMAP port

◆ APR_URI_LDAP_DEFAULT_PORT

#define APR_URI_LDAP_DEFAULT_PORT   389

default LDAP port

◆ APR_URI_NFS_DEFAULT_PORT

#define APR_URI_NFS_DEFAULT_PORT   2049

default NFS port

◆ APR_U