~ubuntu-dev/ubuntu/lucid/dovecot/lucid-201002101901

« back to all changes in this revision

Viewing changes to src/auth/auth-stream.h

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-05-26 09:51:01 UTC
  • mfrom: (1.10.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080526095101-y0zxqc8ofd9j1aa5
Tags: 1:1.0.13-4ubuntu1
* Merge from debian unstable, remaining changes:
  - DebainMaintainerField
  - Use Snakeoil SSL certificate by default.
    + debian/control: Depend on ssl-cert
    + debian/patches/ssl-cert-snakeoil.dpatch: Change default SSL cert paths
      to snakeoil.
    + debian/dovecot-common.postinst: Relax grep for SSL_* a bit.
  - Fast TearDown:
    + debian/rules: Call dh_installinit in 'multiuser' mode.
    + debian/control: Depend on newer sysv-rc for this.
    + debian/dovecot-common.postinst: Remove stp script symlinks from rc0 and rc6 on upgrades.
      Need to be kept unil next LTS release.
  - Add autopkgtest in debian/tests/*.
  - Don't fail in postinst if dovecot-{sql,ldap} is missing. (LP: #153161)
  - Dropped upstream-mail-group-fixes.dpatch. No longer needed.
  - Dropped upstream-invalid-password-fixes.dpatch. No longer needed.
  - debian/dovecot-common.init: Check to see if there is an /etc/inetd.conf. (LP: #208411)
  - debian/patches/login-max-processes-count-warning.dpatch: Tell the user
    that they have reached the maxium number of processes count. (LP: #189616)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
struct auth_request;
5
5
 
6
 
struct auth_stream_reply *auth_stream_reply_init(struct auth_request *request);
 
6
struct auth_stream_reply *auth_stream_reply_init(pool_t pool);
7
7
void auth_stream_reply_add(struct auth_stream_reply *reply,
8
8
                           const char *key, const char *value);
9
9
void auth_stream_reply_reset(struct auth_stream_reply *reply);
12
12
const char *auth_stream_reply_export(struct auth_stream_reply *reply);
13
13
bool auth_stream_is_empty(struct auth_stream_reply *reply);
14
14
 
 
15
const char *const *auth_stream_split(struct auth_stream_reply *reply);
 
16
string_t *auth_stream_reply_get_str(struct auth_stream_reply *reply);
 
17
 
15
18
#endif