Lines Matching defs:scheme
665 uri->scheme = COAP_URI_SCHEME_COAPS_TCP;
669 uri->scheme = COAP_URI_SCHEME_COAP_TCP;
673 uri->scheme = COAP_URI_SCHEME_COAPS;
677 uri->scheme = COAP_URI_SCHEME_COAP;
713 verify_proxy_scheme_supported(coap_uri_scheme_t scheme) {
716 switch (scheme) {
725 coap_log_warn("coaps URI scheme not supported for proxy\n");
731 coap_log_warn("coap+tcp URI scheme not supported for proxy\n");
737 coap_log_warn("coaps+tcp URI scheme not supported for proxy\n");
743 coap_log_warn("coap+ws URI scheme not supported for proxy\n");
749 coap_log_warn("coaps+ws URI scheme not supported for proxy\n");
755 coap_log_warn("%d URI scheme not supported\n", scheme);
884 coap_uri_scheme_t scheme;
904 scheme = proxy.scheme;
908 scheme = uri->scheme;
914 1 << scheme,
926 switch (scheme) {
1048 if (!verify_proxy_scheme_supported(uri.scheme)) {
1054 if (uri.scheme == COAP_URI_SCHEME_COAP ||
1055 uri.scheme == COAP_URI_SCHEME_COAPS ||
1056 uri.scheme == COAP_URI_SCHEME_COAP_TCP ||
1057 uri.scheme == COAP_URI_SCHEME_COAPS_TCP) {
1172 coap_log_err("Proxy-Uri scheme %d unknown\n", uri.scheme);
2138 "\t\t[-P scheme://address[:port],[name1[,name2..]]]\n"
2190 "\t-P scheme://address[:port],[name1[,name2[,name3..]]]\n"
2197 "\t \t\tfinal endpoint. If scheme://address[:port] is not\n"