blob: efdea69ac2f46b2a60c55df68abe94678458d4f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* ISC license. */
#include <stddef.h>
#include <skalibs/strerr.h>
#include <tipidee/resattr.h>
#include <tipidee/log.h>
void tipidee_log_resource (uint32_t v, tipidee_rql const *rql, char const *file, tipidee_resattr const *ra, char const *infopath)
{
char const *a[10] = { PROG, ": info:" } ;
size_t m = 2 ;
if (!(v & TIPIDEE_LOG_RESOURCE)) return ;
if (v & TIPIDEE_LOG_HOSTASPREFIX)
{
a[m++] = " host " ;
a[m++] = rql->uri.host ;
}
a[m++] = " resource " ;
a[m++] = file ;
a[m++] = " type " ;
a[m++] = ra->flags & TIPIDEE_RA_FLAG_CGI ? ra->flags & TIPIDEE_RA_FLAG_NPH ? "nph" : "cgi" : ra->content_type ;
if (ra->flags & TIPIDEE_RA_FLAG_CGI && infopath)
{
a[m++] = " path_info /" ;
a[m++] = infopath ;
}
strerr_warnv(a, m) ;
}
|