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

12345

/freebsd-current/sbin/ipf/libipf/
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.c30 load_http(char *url) argument
41 if (strlen(url) > MAX_URL_LEN) {
52 error = snprintf(buffer, avail, "GET %s HTTP/1.0\r\n", url);
56 * the url length above.
60 myurl = strdup(url);
67 fprintf(stderr, "load_http has a malformed URL '%s'\n", url);
77 fprintf(stderr, "load_http has a malformed URL '%s'\n", url);
88 fprintf(stderr, "URL is too large: %s\n", url);
189 url, linenum, buffer);
/freebsd-current/contrib/wpa/src/utils/
H A Dbrowser.h13 static inline int hs20_web_browser(const char *url, int ignore_tls) argument
18 int hs20_web_browser(const char *url, int ignore_tls);
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, int ignore_tls) 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, int ignore_tls) 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, int ignore_tls) argument
73 wpa_printf(MSG_INFO, "Launching wpadebug browser to %s", url);
112 argv[10] = (void *) url;
/freebsd-current/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.h122 int fetch_ssl(conn_t *, const struct url *, int);
131 int fetch_netrc_auth(struct url *url);
162 FILE *http_request(struct url *, const char *,
163 struct url_stat *, struct url *, const char *);
164 FILE *http_request_body(struct url *, const char *,
165 struct url_stat *, struct url *, const char *,
167 FILE *ftp_request(struct url *, const char *,
168 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
1160 fetchXGetFTP(struct url *url, struct url_stat *us, const char *flags) argument
1169 fetchGetFTP(struct url *url, const char *flags) argument
1178 fetchPutFTP(struct url *url, const char *flags) argument
1188 fetchStatFTP(struct url *url, struct url_stat *us, const char *flags) argument
[all...]
H A Dhttp.c1248 http_auth_params_t *parms, struct url *url)
1285 "GET", url->doc, null, digest);
1292 c->nonce, url->doc, digest,
1298 c->nonce, url->doc, digest, options);
1333 http_auth_params_t *parms, struct url *url)
1366 return (http_digest_auth(conn, hdr, digest, parms, url));
1377 http_connect(struct url *URL, struct url *pur
1247 http_digest_auth(conn_t *conn, const char *hdr, http_auth_challenge_t *c, http_auth_params_t *parms, struct url *url) argument
1332 http_authorize(conn_t *conn, const char *hdr, http_auth_challenges_t *cs, http_auth_params_t *parms, struct url *url) argument
1500 http_get_proxy(struct url * url, const char *flags) argument
1590 struct url *url, *new; local
[all...]
H A Dfile.c43 fetchXGetFile(struct url *u, struct url_stat *us, const char *flags)
67 fetchGetFile(struct url *u, const char *flags)
73 fetchPutFile(struct url *u, const char *flags)
114 fetchStatFile(struct url *u, struct url_stat *us, const char *flags __unused)
120 fetchListFile(struct url *u, const char *flags __unused)
H A Dfetch.c76 fetchXGet(struct url *URL, struct url_stat *us, const char *flags)
100 fetchGet(struct url *URL, const char *flags)
110 fetchPut(struct url *URL, const char *flags)
130 fetchStat(struct url *URL, struct url_stat *us, const char *flags)
154 fetchList(struct url *URL, const char *flags)
175 struct url *u;
202 struct url *u;
220 struct url *u;
238 struct url *u;
253 struct url *
[all...]
/freebsd-current/release/scripts/
H A DFreeBSD_install_cdrom.conf7 url: "file:///dist/packages/${ABI}",
/freebsd-current/release/pkg_repos/
H A Drelease-dvd.conf2 url: "pkg+http://pkg.FreeBSD.org/${ABI}/latest",
/freebsd-current/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-current/crypto/openssl/demos/certs/
H A Docspquery.sh12 -url http://127.0.0.1:8888/
14 -url http://127.0.0.1:8888/
16 -url http://127.0.0.1:8888/
21 -CAfile root.pem -url http://127.0.0.1:8888/
/freebsd-current/contrib/wpa/src/ap/
H A Dhs20.h17 u8 osu_method, const char *url);
22 const u8 *addr, const char *url);
H A Dwnm_ap.h19 struct sta_info *sta, const char *url,
24 const char *url, const u8 *nei_rep, size_t nei_rep_len,
H A Dhs20.c104 u8 osu_method, const char *url)
113 if (url) {
114 len = 1 + os_strlen(url);
117 "WNM-Notification: '%s'", url);
136 if (url) {
138 wpabuf_put_data(buf, url, len - 1);
190 const u8 *addr, const char *url)
196 if (!url) {
201 url_len = os_strlen(url);
205 url);
103 hs20_send_wnm_notification(struct hostapd_data *hapd, const u8 *addr, u8 osu_method, const char *url) argument
189 hs20_send_wnm_notification_t_c(struct hostapd_data *hapd, const u8 *addr, const char *url) argument
[all...]
/freebsd-current/contrib/file/python/
H A Dsetup.py15 url='https://github.com/file/file', variable
/freebsd-current/contrib/wpa/hs20/client/
H A Dosu_client.h89 int cmd_prov(struct hs20_osu_client *ctx, const char *url);
90 int cmd_sim_prov(struct hs20_osu_client *ctx, const char *url);
95 int cmd_oma_dm_prov(struct hs20_osu_client *ctx, const char *url);
96 int cmd_oma_dm_sim_prov(struct hs20_osu_client *ctx, const char *url);
116 int est_load_cacerts(struct hs20_osu_client *ctx, const char *url);
117 int est_build_csr(struct hs20_osu_client *ctx, const char *url);
118 int est_simple_enroll(struct hs20_osu_client *ctx, const char *url,
/freebsd-current/crypto/openssl/apps/lib/
H A Dhttp_server.c292 char *meth, *url, *end; local
340 url = meth + 3;
342 || (url++, strncmp(meth, "POST ", 5) == 0)) {
347 *(url++) = '\0';
348 while (*url == ' ')
349 url++;
350 if (*url != '/') {
353 meth, url);
357 url++;
360 for (end = url; *en
[all...]
/freebsd-current/contrib/tnftp/src/
H A Dfetch.c268 url_decode(char *url) argument
272 if (EMPTYSTRING(url))
274 p = q = (unsigned char *)url;
322 parse_url(const char *url, const char *desc, url_t *utype, argument
330 if (url == NULL || desc == NULL || utype == NULL || uuser == NULL
334 DPRINTF("parse_url: %s `%s'\n", desc, url);
336 origurl = url;
342 if (STRNEQUAL(url, HTTP_URL)) {
343 url += sizeof(HTTP_URL) - 1;
347 } else if (STRNEQUAL(url, FTP_UR
478 fetch_url(const char *url, const char *proxyenv, char *proxyauth, char *wwwauth) argument
1370 fetch_ftp(const char *url) argument
1710 go_fetch(const char *url) argument
[all...]
/freebsd-current/contrib/wpa/wpa_supplicant/
H A Dhs20_supplicant.h31 const char *url, u8 osu_method);
33 u16 reauth_delay, const char *url);
34 void hs20_rx_t_c_acceptance(struct wpa_supplicant *wpa_s, const char *url);

Completed in 156 milliseconds

12345