gsasl-commit
[Top][All Lists]
Advanced

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

CVS gsasl/lib/ntlm


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

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

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


--- /home/cvs/gsasl/lib/ntlm/Makefile.am        2004/09/18 16:38:43     1.7
+++ /home/cvs/gsasl/lib/ntlm/Makefile.am        2004/09/24 14:07:38     1.8
@@ -21,7 +21,7 @@
 AM_CPPFLAGS = -I$(srcdir)/../src -I../src
 
 noinst_LTLIBRARIES = libgsasl-ntlm.la
-libgsasl_ntlm_la_SOURCES = x-ntlm.h
+libgsasl_ntlm_la_SOURCES = x-ntlm.h mechinfo.c
 
 if CLIENT
 libgsasl_ntlm_la_SOURCES += ntlm.c
--- /home/cvs/gsasl/lib/ntlm/x-ntlm.h   2004/09/22 23:18:12     1.5
+++ /home/cvs/gsasl/lib/ntlm/x-ntlm.h   2004/09/24 14:07:38     1.6
@@ -25,7 +25,9 @@
 
 #include "internal.h"
 
-#define _GSASL_NTLM_NAME "NTLM"
+#define GSASL_NTLM_NAME "NTLM"
+
+extern Gsasl_mechanism gsasl_ntlm_mechanism;
 
 extern int _gsasl_ntlm_client_start (Gsasl_session_ctx * sctx,
                                     void **mech_data);

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

Gsasl_mechanism gsasl_ntlm_mechanism = {
  GSASL_NTLM_NAME,
  {
    NULL,
    NULL,
#ifdef USE_CLIENT
    _gsasl_ntlm_client_start,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_ntlm_client_step,
#else
    NULL,
#endif
#ifdef USE_CLIENT
    _gsasl_ntlm_client_finish,
#else
    NULL,
#endif
    NULL,
    NULL
  },
  {
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL
  }
};




reply via email to

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