Feature #2437 » 0001-Mark-some-data-as-static.patch
src/buffer.c | ||
---|---|---|
}
|
||
/* everything except: ! ( ) * - . 0-9 A-Z _ a-z */
|
||
const char encoded_chars_rel_uri_part[] = {
|
||
static const char encoded_chars_rel_uri_part[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
||
... | ... | |
};
|
||
/* everything except: ! ( ) * - . / 0-9 A-Z _ a-z */
|
||
const char encoded_chars_rel_uri[] = {
|
||
static const char encoded_chars_rel_uri[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
||
... | ... | |
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* F0 - FF */
|
||
};
|
||
const char encoded_chars_html[] = {
|
||
static const char encoded_chars_html[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
||
... | ... | |
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* F0 - FF */
|
||
};
|
||
const char encoded_chars_minimal_xml[] = {
|
||
static const char encoded_chars_minimal_xml[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
||
... | ... | |
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, /* F0 - FF */
|
||
};
|
||
const char encoded_chars_hex[] = {
|
||
static const char encoded_chars_hex[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
||
... | ... | |
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, /* F0 - FF */
|
||
};
|
||
const char encoded_chars_http_header[] = {
|
||
static const char encoded_chars_http_header[] = {
|
||
/*
|
||
0 1 2 3 4 5 6 7 8 9 A B C D E F
|
||
*/
|
src/mod_accesslog.c | ||
---|---|---|
*
|
||
*/
|
||
const format_mapping fmap[] =
|
||
static const format_mapping fmap[] =
|
||
{
|
||
{ '%', FORMAT_PERCENT },
|
||
{ 'h', FORMAT_REMOTE_HOST },
|
src/mod_webdav.c | ||
---|---|---|
char *prop;
|
||
} webdav_property;
|
||
webdav_property live_properties[] = {
|
||
static webdav_property live_properties[] = {
|
||
{ "DAV:", "creationdate" },
|
||
{ "DAV:", "displayname" },
|
||
{ "DAV:", "getcontentlanguage" },
|