Types (structs, unions and typedefs)¶
-
type urlparse_url¶
urlparse_urlis a struct to store the result of parsing a URL.-
uint16_t field_set¶
field_setis a bitmask of (1 <<URLPARSE_*) values.
-
uint16_t port¶
portis the integer representation ofURLPARSE_PORTstring. It is assigned only when (field_set& (1 <<URLPARSE_PORT)) is nonzero.
-
struct [anonymous] field_data[URLPARSE_MAX]¶
field_datastores the position and its length of each URL component if the corresponding bit is set infield_set. For example, field_data[URLPARSE_HOST] is assigned if (field_set& (1 <<URLPARSE_HOST)) is nonzero.
-
uint16_t field_set¶