C and C++ web framework.
http://rapida.vilor.one/docs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
280 B
13 lines
280 B
2 years ago
|
/* SPDX-License-Identifier: GPL-3.0-or-later */
|
||
|
/* Copyright 2022 Ivan Polyakov */
|
||
|
|
||
|
#include "Request.hxx"
|
||
|
|
||
|
using namespace rpd;
|
||
|
|
||
|
const char *Request::header(const char *key) const
|
||
|
{
|
||
|
rpd_keyval_item *hi = rpd_keyval_find(&req->headers, key);
|
||
|
return hi ? hi->val : NULL;
|
||
|
}
|