Searched refs:url (Results 1 - 25 of 204) sorted by relevance

123456789

/freebsd-11-stable/contrib/ipfilter/lib/
H A Dload_url.c12 load_url(char *url) argument
16 if (strncmp(url, "file://", 7) == 0) {
21 hosts = load_file(url);
23 } else if (*url == '/' || *url == '.') {
24 hosts = load_file(url);
26 } else if (strncmp(url, "http://", 7) == 0) {
27 hosts = load_http(url);
H A Dload_http.c31 load_http(char *url) argument
42 if (strlen(url) > MAX_URL_LEN) {
53 error = snprintf(buffer, avail, "GET %s HTTP/1.0\r\n", url);
57 * the url length above.
61 myurl = strdup(url);
68 fprintf(stderr, "load_http has a malformed URL '%s'\n", url);
78 fprintf(stderr, "load_http has a malformed URL '%s'\n", url);
89 fprintf(stderr, "URL is too large: %s\n", url);
190 url, linenum, buffer);
/freebsd-11-stable/contrib/wpa/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url) argument
18 int hs20_web_browser(const char *url);
H A Dbrowser-system.c34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
65 int hs20_web_browser(const char *url) argument
72 wpa_printf(MSG_INFO, "Launching system browser to %s", url);
101 argv[1] = (void *) url;
H A Dbrowser-android.c34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
65 int hs20_web_browser(const char *url) argument
72 wpa_printf(MSG_INFO, "Launching Android browser to %s", url);
105 argv[5] = (void *) url;
H A Dbrowser-wpadebug.c34 const char *url; local
37 url = http_request_get_uri(req);
38 wpa_printf(MSG_INFO, "Browser response received: %s", url);
40 if (os_strcmp(url, "/") == 0) {
43 } else if (os_strncmp(url, "/osu/", 5) == 0) {
44 data->success = atoi(url + 5);
66 int hs20_web_browser(const char *url) argument
73 wpa_printf(MSG_INFO, "Launching wpadebug browser to %s", url);
112 argv[10] = (void *) url;
/freebsd-11-stable/lib/libfetch/
H A Dfetch.h40 struct url { struct
94 FILE *fetchXGetFile(struct url *, struct url_stat *, const char *);
95 FILE *fetchGetFile(struct url *, const char *);
96 FILE *fetchPutFile(struct url *, const char *);
97 int fetchStatFile(struct url *, struct url_stat *, const char *);
98 struct url_ent *fetchListFile(struct url *, const char *);
101 FILE *fetchXGetHTTP(struct url *, struct url_stat *, const char *);
102 FILE *fetchGetHTTP(struct url *, const char *);
103 FILE *fetchPutHTTP(struct url *, const char *);
104 int fetchStatHTTP(struct url *, struc
[all...]
H A Dcommon.h87 int fetch_ssl(conn_t *, const struct url *, int);
96 int fetch_netrc_auth(struct url *url);
126 FILE *http_request(struct url *, const char *,
127 struct url_stat *, struct url *, const char *);
128 FILE *http_request_body(struct url *, const char *,
129 struct url_stat *, struct url *, const char *,
131 FILE *ftp_request(struct url *, const char *,
132 struct url_stat *, struct url *, const char *);
H A Dftp.c102 static struct url cached_host;
905 ftp_authenticate(conn_t *conn, struct url *url, struct url *purl) argument
914 if (url->user[0] == '\0')
915 fetch_netrc_auth(url);
916 user = url->user;
922 if (purl && url->port == fetch_default_port(url->scheme))
923 e = ftp_cmd(conn, "USER %s@%s", user, url
955 ftp_connect(struct url *url, struct url *purl, const char *flags) argument
1026 ftp_isconnected(struct url *url) argument
1039 ftp_cached_connect(struct url *url, struct url *purl, const char *flags) argument
1069 ftp_get_proxy(struct url * url, const char *flags) argument
1101 ftp_request(struct url *url, const char *op, struct url_stat *us, struct url *purl, const char *flags) argument
1159 fetchXGetFTP(struct url *url, struct url_stat *us, const char *flags) argument
1168 fetchGetFTP(struct url *url, const char *flags) argument
1177 fetchPutFTP(struct url *url, const char *flags) argument
1187 fetchStatFTP(struct url *url, struct url_stat *us, const char *flags) argument
[all...]
/freebsd-11-stable/release/pkg_repos/
H A Drelease-dvd.conf3 url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest",
/freebsd-11-stable/release/scripts/
H A DFreeBSD_install_cdrom.conf8 url: "file:///dist/packages/${ABI}",
/freebsd-11-stable/etc/pkg/
H A DFreeBSD.conf11 url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest",
/freebsd-11-stable/contrib/expat/xmlwf/
H A Dxmlurl.h40 const XML_Char *url,
/freebsd-11-stable/contrib/subversion/subversion/libsvn_client/
H A Durl.c2 * url.c: converting paths to urls
46 svn_client_url_from_path2(const char **url,
58 svn_wc__node_get_url(url, ctx->wc_ctx, path_or_url,
62 *url = svn_uri_canonicalize(path_or_url, result_pool);
44 svn_client_url_from_path2(const char **url, const char *path_or_url, svn_client_ctx_t *ctx, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
H A Dcheckout.c63 SVN_ERR(svn_wc_ensure_adm4(ctx->wc_ctx, local_abspath, pathrev->url,
73 const char *url,
90 SVN_ERR_ASSERT(svn_uri_is_canonical(url, scratch_pool));
102 svn_error_t *err = svn_ra_reparent(ra_session, url, scratch_pool);
117 ra_session, url,
126 url, NULL, peg_revision,
135 _("URL '%s' doesn't exist"), pathrev->url);
139 _("URL '%s' refers to a file, not a directory"), pathrev->url);
174 if (strcmp(entry_url, pathrev->url) != 0)
69 svn_client__checkout_internal(svn_revnum_t *result_rev, svn_boolean_t *timestamp_sleep, const char *url, const char *local_abspath, const svn_opt_revision_t *peg_revision, const svn_opt_revision_t *revision, svn_depth_t depth, svn_boolean_t ignore_externals, svn_boolean_t allow_unver_obstructions, svn_ra_session_t *ra_session, svn_client_ctx_t *ctx, apr_pool_t *scratch_pool) argument
/freebsd-11-stable/contrib/wpa/src/wps/
H A Dhttp_client.h21 char * http_client_url_parse(const char *url, struct sockaddr_in *dst,
29 struct http_client * http_client_url(const char *url,
38 char * http_link_update(char *url, const char *base);
H A Dhttp_client.c187 char * http_client_url_parse(const char *url, struct sockaddr_in *dst, argument
192 u = os_strdup(url);
215 url, addr, port);
236 struct http_client * http_client_url(const char *url, argument
248 if (os_strncmp(url, "http://", 7) != 0)
250 u = http_client_url_parse(url, &dst, &path);
255 req_buf = wpabuf_alloc(os_strlen(url) + 1000);
317 char * http_link_update(char *url, const char *base) argument
326 if (url == NULL)
329 if (os_strncmp(url, "htt
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dimport-cmd.c52 const char *url;
69 * If 'source' is a file then the basename of 'url' is used as the
72 * however many new entries are necessary. If some part of 'url'
96 url = APR_ARRAY_IDX(targets, 0, const char *);
102 url = APR_ARRAY_IDX(targets, 1, const char *);
107 if (! svn_path_is_url(url))
109 _("Invalid URL '%s'"), url);
120 url,
50 const char *url; local
/freebsd-11-stable/contrib/apr-util/ldap/
H A Dapr_ldap_url.c100 static const char* skip_url_prefix(const char *url,
114 * Is this URL an ldap url?
117 APU_DECLARE(int) apr_ldap_is_ldap_url(const char *url) argument
122 if( url == NULL ) {
126 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
134 * Is this URL a secure ldap url?
137 APU_DECLARE(int) apr_ldap_is_ldaps_url(const char *url) argument
142 if( url == NULL ) {
146 if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
154 * Is this URL an ldap socket url
157 apr_ldap_is_ldapi_url(const char *url) argument
174 skip_url_prefix(const char *url, int *enclosedp, const char **scheme) argument
269 char *url; local
[all...]
/freebsd-11-stable/contrib/apr-util/include/
H A Dapr_ldap_url.h71 * Is this URL an ldap url? ldap://
72 * @param url The url to test
74 APU_DECLARE(int) apr_ldap_is_ldap_url(const char *url);
77 * Is this URL an SSL ldap url? ldaps://
78 * @param url The url to test
80 APU_DECLARE(int) apr_ldap_is_ldaps_url(const char *url);
83 * Is this URL an ldap socket url? ldapi://
84 * @param url Th
[all...]
/freebsd-11-stable/contrib/wpa/src/ap/
H A Dwnm_ap.h19 struct sta_info *sta, const char *url,
23 const u8 *bss_term_dur, const char *url,
H A Dhs20.h17 u8 osu_method, const char *url);
22 const u8 *addr, const char *url);
/freebsd-11-stable/contrib/file/python/
H A Dsetup.py15 url='https://github.com/file/file', variable
/freebsd-11-stable/contrib/wpa/hs20/client/
H A Dosu_client.h87 int cmd_prov(struct hs20_osu_client *ctx, const char *url);
88 int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url);
93 int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url);
94 int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url);
114 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
115 int est_build_csr(struct hs20_osu_client *ctx, const char *url);
116 int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
/freebsd-11-stable/contrib/libucl/python/
H A Dsetup.py30 url = "https://github.com/vstakhov/libucl/", variable

Completed in 143 milliseconds

123456789