Cross Reference:
xref
: /
dovecot
/
src
/
auth
/
auth-stream.h
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
auth-stream.h revision 3d8f3c378de13e32018e2b116f6b67bd69cd28fb
#
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_remove
(
struct
auth_stream_reply
*
reply
,
const
char
*
key
);
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
);
const
char
*
const
*
auth_stream_split
(
struct
auth_stream_reply
*
reply
);
#
endif