gsasl.h | gsasl.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
# ifdef __cplusplus | # ifdef __cplusplus | |||
extern "C" | extern "C" | |||
{ | { | |||
# endif | # endif | |||
/** | /** | |||
* GSASL_VERSION | * GSASL_VERSION | |||
* | * | |||
* Pre-processor symbol with a string that describe the header file | * Pre-processor symbol with a string that describe the header file | |||
* version number. Used together with stringprep_check_version() to | * version number. Used together with gsasl_check_version() to | |||
* verify header file and run-time library consistency. | * verify header file and run-time library consistency. | |||
*/ | */ | |||
# define GSASL_VERSION "1.1" | # define GSASL_VERSION "1.2" | |||
/** | /** | |||
* GSASL_VERSION_MAJOR | * GSASL_VERSION_MAJOR | |||
* | * | |||
* Pre-processor symbol with a decimal value that describe the major | * Pre-processor symbol with a decimal value that describe the major | |||
* level of the header file version number. For example, when the | * level of the header file version number. For example, when the | |||
* header version is 1.2.3 this symbol will be 1. | * header version is 1.2.3 this symbol will be 1. | |||
* | * | |||
* Since: 1.1 | * Since: 1.1 | |||
*/ | */ | |||
skipping to change at line 76 | skipping to change at line 76 | |||
/** | /** | |||
* GSASL_VERSION_MINOR | * GSASL_VERSION_MINOR | |||
* | * | |||
* Pre-processor symbol with a decimal value that describe the minor | * Pre-processor symbol with a decimal value that describe the minor | |||
* level of the header file version number. For example, when the | * level of the header file version number. For example, when the | |||
* header version is 1.2.3 this symbol will be 2. | * header version is 1.2.3 this symbol will be 2. | |||
* | * | |||
* Since: 1.1 | * Since: 1.1 | |||
*/ | */ | |||
# define GSASL_VERSION_MINOR 1 | # define GSASL_VERSION_MINOR 2 | |||
/** | /** | |||
* GSASL_VERSION_PATCH | * GSASL_VERSION_PATCH | |||
* | * | |||
* Pre-processor symbol with a decimal value that describe the patch | * Pre-processor symbol with a decimal value that describe the patch | |||
* level of the header file version number. For example, when the | * level of the header file version number. For example, when the | |||
* header version is 1.2.3 this symbol will be 3. | * header version is 1.2.3 this symbol will be 3. | |||
* | * | |||
* Since: 1.1 | * Since: 1.1 | |||
*/ | */ | |||
skipping to change at line 98 | skipping to change at line 98 | |||
/** | /** | |||
* GSASL_VERSION_NUMBER | * GSASL_VERSION_NUMBER | |||
* | * | |||
* Pre-processor symbol with a hexadecimal value describing the | * Pre-processor symbol with a hexadecimal value describing the | |||
* header file version number. For example, when the header version | * header file version number. For example, when the header version | |||
* is 1.2.3 this symbol will have the value 0x010203. | * is 1.2.3 this symbol will have the value 0x010203. | |||
* | * | |||
* Since: 1.1 | * Since: 1.1 | |||
*/ | */ | |||
# define GSASL_VERSION_NUMBER 0x010100 | # define GSASL_VERSION_NUMBER 0x010200 | |||
/* RFC 2222: SASL mechanisms are named by strings, from 1 to 20 | /* RFC 2222: SASL mechanisms are named by strings, from 1 to 20 | |||
* characters in length, consisting of upper-case letters, digits, | * characters in length, consisting of upper-case letters, digits, | |||
* hyphens, and/or underscores. SASL mechanism names must be | * hyphens, and/or underscores. SASL mechanism names must be | |||
* registered with the IANA. | * registered with the IANA. | |||
*/ | */ | |||
enum | enum | |||
{ | { | |||
GSASL_MIN_MECHANISM_SIZE = 1, | GSASL_MIN_MECHANISM_SIZE = 1, | |||
GSASL_MAX_MECHANISM_SIZE = 20 | GSASL_MAX_MECHANISM_SIZE = 20 | |||
End of changes. 4 change blocks. | ||||
4 lines changed or deleted | 4 lines changed or added | |||