gsasl.h | gsasl.h | |||
---|---|---|---|---|
/* gsasl.h --- Header file for GNU SASL Library. | /* gsasl.h --- Header file for GNU SASL Library. | |||
* Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Simon Jose fsson | * Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Simo n Josefsson | |||
* | * | |||
* This file is part of GNU SASL Library. | * This file is part of GNU SASL Library. | |||
* | * | |||
* GNU SASL Library is free software; you can redistribute it and/or | * GNU SASL Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU Lesser General Public License | * modify it under the terms of the GNU Lesser General Public License | |||
* as published by the Free Software Foundation; either version 2.1 of | * as published by the Free Software Foundation; either version 2.1 of | |||
* the License, or (at your option) any later version. | * the License, or (at your option) any later version. | |||
* | * | |||
* GNU SASL Library is distributed in the hope that it will be useful, | * GNU SASL Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
skipping to change at line 54 | skipping to change at line 54 | |||
{ | { | |||
# 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 gsasl_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.4.0" | # define GSASL_VERSION "1.4.1" | |||
/** | /** | |||
* 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 87 | skipping to change at line 87 | |||
/** | /** | |||
* 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 | |||
*/ | */ | |||
# define GSASL_VERSION_PATCH 0 | # define GSASL_VERSION_PATCH 1 | |||
/** | /** | |||
* 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 0x010400 | # define GSASL_VERSION_NUMBER 0x010401 | |||
/* 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 | |||