/
niceSOFT
/
systemd
Обзор
Документация
Войти
/
niceSOFT
/
systemd
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v261
src/shared/web-util.c
71 строка
2 KB
Zbigniew Jędrzejewski-Szmek
report: add option to inject additional HTTP headers
16 апр 2026, 22:12
16 апр 2026, 22:12
ce400ef
Код
Авторство
О чём код?
/* SPDX-License-Identifier: LGPL-2.1-or-later */ #include "string-util.h" #include "strv.h" #include "utf8.h" #include "web-util.h" bool http_url_is_valid(const char *url) { const char *p; if (isempty(url)) return false; p = STARTSWITH_SET(url, "http://", "https://"); if (!p) return false; if (isempty(p)) return false; return ascii_is_valid(p); } bool file_url_is_valid(const char *url) { const char *p; if (isempty(url)) return false; p = startswith(url, "file:/"); if (isempty(p)) return false; return ascii_is_valid(p); } bool documentation_url_is_valid(const char *url) { const char *p; if (isempty(url)) return false; if (http_url_is_valid(url) || file_url_is_valid(url)) return true; p = STARTSWITH_SET(url, "info:", "man:"); if (isempty(p)) return false; return ascii_is_valid(p); } bool http_header_valid(const char *header) { return header && ascii_is_valid(header) && !string_has_cc(header, /* ok= */ NULL) && strchr(header, ':'); } bool http_etag_is_valid(const char *etag) { if (isempty(etag)) return false; if (!endswith(etag, "\"")) return false; if (!STARTSWITH_SET(etag, "\"", "W/\"")) return false; return true; }