Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 1 of 1) sorted by relevance

/mOS-networking-stack/samples/lighttpd-1.4.32/src/
H A Dmod_webdav.c1785 char *sep, *sep2, *start; in URIHANDLER_FUNC() local
1832 if (NULL == (sep = strstr(start, "://"))) { in URIHANDLER_FUNC()
1836 buffer_copy_string_len(p->uri.scheme, start, sep - start); in URIHANDLER_FUNC()
1838 start = sep + 3; in URIHANDLER_FUNC()
1840 if (NULL == (sep = strchr(start, '/'))) { in URIHANDLER_FUNC()
1844 if (NULL != (sep2 = memchr(start, '@', sep - start))) { in URIHANDLER_FUNC()
1848 buffer_copy_string_len(p->uri.authority, start, sep - start); in URIHANDLER_FUNC()
1850 start = sep + 1; in URIHANDLER_FUNC()
1852 if (NULL == (sep = strchr(start, '?'))) { in URIHANDLER_FUNC()
1856 buffer_copy_string_len(p->uri.path_raw, start, sep - start); in URIHANDLER_FUNC()
[all …]