Cross Reference:
xref
: /
dovecot
/
src
/
auth
/
auth-stream.h
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
auth-stream.h revision c25356d5978632df6203437e1953bcb29e0c736f
#
ifndef
AUTH_STREAM_H
#
define
AUTH_STREAM_H
struct
auth_request
;
struct
auth_stream_reply
*
auth_stream_reply_init
(
struct
auth_request
*
request
);
void
auth_stream_reply_add
(
struct
auth_stream_reply
*
reply
,
const
char
*
key
,
const
char
*
value
);
void
auth_stream_reply_reset
(
struct
auth_stream_reply
*
reply
);
void
auth_stream_reply_import
(
struct
auth_stream_reply
*
reply
,
const
char
*
str
);
const
char
*
auth_stream_reply_export
(
struct
auth_stream_reply
*
reply
);
bool
auth_stream_is_empty
(
struct
auth_stream_reply
*
reply
);
#
endif