Skip to content

Commit

Permalink
added SASL_OK/CONTINUE constants
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorj Bauer committed Aug 21, 2015
1 parent 0b32631 commit 63ea397
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cyrussasl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1203,6 +1203,8 @@ struct _saslconst {
};

static const struct _saslconst constants[] = {

/* Properties */
{ "SASL_USERNAME", SASL_USERNAME },
{ "SASL_SSF", SASL_SSF },
{ "SASL_MAXOUTBUF", SASL_MAXOUTBUF },
Expand All @@ -1215,6 +1217,11 @@ static const struct _saslconst constants[] = {
{ "SASL_AUTHSOURCE", SASL_AUTHSOURCE },
{ "SASL_MECHNAME" , SASL_MECHNAME },
{ "SASL_PLUGERR", SASL_PLUGERR },

/* Return Codes */
{ "SASL_OK", SASL_OK },
{ "SASL_CONTINUE", SASL_CONTINUE },

{ NULL, 0 }
};

Expand Down

0 comments on commit 63ea397

Please sign in to comment.