mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
15 lines
311 B
Plaintext
15 lines
311 B
Plaintext
/**
|
|
{{SComment}}
|
|
* @return the object of struct MHD_DaemonOptionAndValue with requested values
|
|
*/
|
|
static MHD_INLINE struct MHD_DaemonOptionAndValue
|
|
MHD_DAEMON_OPTION_{{SName}} ({{SFArguments}})
|
|
{
|
|
struct MHD_DaemonOptionAndValue opt_val;
|
|
|
|
opt_val.opt = MHD_D_O_{{EName}};
|
|
{{SFBody}}
|
|
return opt_val;
|
|
}
|
|
|