This struct is defined as follows:
typedef struct _ec_url_details { char *url; char *scheme; struct _ec_url_details_userinfo { char *user; char *pass; } userinfo; char *host; int port; char *path; char *raw_query; char *query; char *fragment; ECDict attrs; } ec_url_details;
To use this struct, include the file misc/ec_url_parse.h
.
Was this page helpful?