gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/plain


From: gsasl-commit
Subject: CVS gsasl/lib/plain
Date: Fri, 24 Sep 2004 16:07:39 +0200

Update of /home/cvs/gsasl/lib/plain
In directory dopio:/tmp/cvs-serv14688/lib/plain

Modified Files:
        Makefile.am plain.h 
Added Files:
        mechinfo.c 
Log Message:
Move mechanism definitions from src/common.c into */mechinfo.c.


--- /home/cvs/gsasl/lib/plain/Makefile.am       2004/09/18 16:27:07     1.6
+++ /home/cvs/gsasl/lib/plain/Makefile.am       2004/09/24 14:07:39     1.7
@@ -21,7 +21,7 @@
 AM_CPPFLAGS = -I$(srcdir)/../src -I../src
 
 noinst_LTLIBRARIES = libgsasl-plain.la
-libgsasl_plain_la_SOURCES = plain.h
+libgsasl_plain_la_SOURCES = plain.h mechinfo.c
 
 if CLIENT
 libgsasl_plain_la_SOURCES += client.c
--- /home/cvs/gsasl/lib/plain/plain.h   2004/09/24 01:37:14     1.7
+++ /home/cvs/gsasl/lib/plain/plain.h   2004/09/24 14:07:39     1.8
@@ -25,7 +25,9 @@
 
 #include <gsasl.h>
 
-#define _GSASL_PLAIN_NAME "PLAIN"
+#define GSASL_PLAIN_NAME "PLAIN"
+
+extern Gsasl_mechanism gsasl_plain_mechanism;
 
 extern int _gsasl_plain_client_step (Gsasl_session_ctx * sctx,
                                     void *mech_data,

--- /home/cvs/gsasl/lib/plain/mechinfo.c        2004/09/24 14:07:39     NONE
+++ /home/cvs/gsasl/lib/plain/mechinfo.c        2004/09/24 14:07:39     1.1
/* mechinfo.c --- Definition of PLAIN mechanism.
 * Copyright (C) 2002, 2003, 2004  Simon Josefsson
 *
 * This file is part of GNU SASL Library.
 *
 * GNU SASL Library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1 of
 * the License, or (at your option) any later version.
 *
 * GNU SASL Library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with GNU SASL Library; if not, write to the Free
 * Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 * 02111-1307 USA
 *
 */

#if HAVE_CONFIG_H
# include "config.h"
#endif

/* Get specification. */
#include "plain.h"

Gsasl_mechanism gsasl_plain_mechanism = {
  GSASL_PLAIN_NAME,
  {
    NULL,
    NULL,
    NULL,
#ifdef USE_CLIENT
    _gsasl_plain_client_step,
#else
    NULL,
#endif
    NULL,
    NULL,
    NULL
  },
  {
    NULL,
    NULL,
    NULL,
#ifdef USE_SERVER
    _gsasl_plain_server_step,
#else
    NULL,
#endif
    NULL,
    NULL,
    NULL
  }
};




reply via email to

[Prev in Thread] Current Thread [Next in Thread]