Lines Matching defs:pcolon
1156 char b64[160], plain[(sizeof(b64) * 3) / 4], *pcolon;
1197 pcolon = strchr(plain, ':');
1198 if (!pcolon) {
1227 *pcolon = '\0';
1228 wsi->http.ah->frags[fi].len = (uint16_t)lws_ptr_diff_size_t(pcolon, &plain[0]);
1229 pcolon = lws_hdr_simple_ptr(wsi, WSI_TOKEN_HTTP_AUTHORIZATION);
1230 strncpy(pcolon, plain, (unsigned int)(ml - 1));
1231 pcolon[ml - 1] = '\0';
1255 char ads[96], host[96], *pcolon, *pslash, unix_skt = 0;
1287 pcolon = strchr(hit->origin, ':');
1295 if (!pcolon) {
1301 n = lws_ptr_diff(pcolon, hit->origin);
1302 pslash = pcolon;
1304 if (pcolon > pslash)
1305 pcolon = NULL;
1307 if (pcolon)
1308 n = (int)(pcolon - hit->origin);
1325 if (pcolon)
1326 i.port = atoi(pcolon + 1);