gsasl-commit
[Top][All Lists]
Advanced

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

CVS gsasl/lib/anonymous


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

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

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


--- /home/cvs/gsasl/lib/anonymous/Makefile.am   2004/09/24 01:22:32     1.8
+++ /home/cvs/gsasl/lib/anonymous/Makefile.am   2004/09/24 14:07:36     1.9
@@ -21,7 +21,7 @@
 AM_CPPFLAGS = -I$(srcdir)/../src -I$(builddir)/../src -I$(srcdir)/../gl
 
 noinst_LTLIBRARIES = libgsasl-anonymous.la
-libgsasl_anonymous_la_SOURCES = anonymous.h
+libgsasl_anonymous_la_SOURCES = anonymous.h mechinfo.c
 
 if CLIENT
 libgsasl_anonymous_la_SOURCES += client.c
--- /home/cvs/gsasl/lib/anonymous/anonymous.h   2004/09/24 01:29:53     1.8
+++ /home/cvs/gsasl/lib/anonymous/anonymous.h   2004/09/24 14:07:36     1.9
@@ -25,7 +25,9 @@
 
 #include <gsasl.h>
 
-#define _GSASL_ANONYMOUS_NAME "ANONYMOUS"
+#define GSASL_ANONYMOUS_NAME "ANONYMOUS"
+
+extern Gsasl_mechanism gsasl_anonymous_mechanism;
 
 extern int _gsasl_anonymous_client_step (Gsasl_session_ctx * sctx,
                                         void *mech_data,

--- /home/cvs/gsasl/lib/anonymous/mechinfo.c    2004/09/24 14:07:36     NONE
+++ /home/cvs/gsasl/lib/anonymous/mechinfo.c    2004/09/24 14:07:36     1.1
/* mechinfo.c --- Definition of ANONYMOUS 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 "anonymous.h"

Gsasl_mechanism gsasl_anonymous_mechanism = {
  GSASL_ANONYMOUS_NAME,
  {
    NULL,
    NULL,
    NULL,
#ifdef USE_CLIENT
    _gsasl_anonymous_client_step,
#else
    NULL,
#endif
    NULL,
    NULL,
    NULL
  },
  {
    NULL,
    NULL,
    NULL,
#ifdef USE_SERVER
    _gsasl_anonymous_server_step,
#else
    NULL,
#endif
    NULL,
    NULL,
    NULL
  }
};




reply via email to

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