[Fedora-directory-commits] coolkey/src/windows/csp RegDll.cpp, 1.1, 1.2 State.cpp, 1.1, 1.2 State.h, 1.1, 1.2 csp.cpp, 1.2, 1.3 csp.h, 1.2, 1.3 cspx.cpp, 1.1, 1.2
by Doctor Conrad
Author: jmagne
Update of /cvs/dirsec/coolkey/src/windows/csp
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv3195
Modified Files:
RegDll.cpp State.cpp State.h csp.cpp csp.h cspx.cpp
Log Message:
Bring Fedora CSP up to one shipped with CertSystem. Bug #23150, rev. WTC.
Index: RegDll.cpp
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/RegDll.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- RegDll.cpp 27 Jul 2006 22:23:07 -0000 1.1
+++ RegDll.cpp 30 Apr 2007 23:30:58 -0000 1.2
@@ -36,7 +36,7 @@
"SOFTWARE\\Microsoft\\Cryptography\\Defaults\\Provider"
// Windows key values
#define TYPE_KEY "Type"
-#define IMAGE_KEY "ImagePath"
+#define IMAGE_KEY "Image Path"
#define SIG_KEY "Signature"
// CSP specific key values
@@ -44,7 +44,7 @@
#define KEYGEN_KEY "KeyGenHack"
#define PIN_KEY "PIN"
#define MODULE_KEY "PKCS11Module"
-#define DEFAULT_PKCS11_MODULE "coolkey.dll"
+#define DEFAULT_PKCS11_MODULE "coolkeypk11.dll"
#define DEFAULT_PIN "1234"
Index: State.cpp
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/State.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- State.cpp 27 Jul 2006 22:23:07 -0000 1.1
+++ State.cpp 30 Apr 2007 23:30:58 -0000 1.2
@@ -26,6 +26,7 @@
******************************************************************/
#include "csp.h"
+#include "cspres.h"
#include "State.h"
#include <winscard.h>
@@ -34,7 +35,8 @@
namespace MCSP {
State::State()
- : init_(false), logging_(false), logFilename_("C:\\CSPDEBUG.log"), slot_(0), keyGenHack_(false), pkcs11dllname_("PKCS11.dll")
+ : init_(false), logging_(false), logFilename_("C:\\CSPDEBUG.log"), slot_(0), keyGenHack_(false), pkcs11dllname_("PKCS11.dll"),
+ p11_(CK_INVALID_HANDLE)
{
lock_ = ::CreateMutex(NULL, FALSE, NULL);
@@ -121,9 +123,6 @@
lock();
sessions_.erase(session);
delete session;
-
- if (sessions_.empty())
- shutdown();
unlock();
}
@@ -160,6 +159,43 @@
return reinterpret_cast<Key*>(hKey);
}
+void State::login(Session* session)
+{
+
+ int pin_size;
+ BinStr userPIN;
+ userPIN.resize(256);
+ if (!(pin_size = CSPDisplayPinDialog((char*)&userPIN[0], userPIN.size())))
+ ThrowMsg(SCARD_W_CANCELLED_BY_USER, "PIN dialog cancelled");
+
+ userPIN.resize(pin_size);
+
+ CK_RV ck_rv = g_state.p11->C_Login(session->p11_, CKU_USER,
+ (CK_UTF8CHAR*)&userPIN[0], (CK_ULONG)userPIN.size());
+
+ if (ck_rv == CKR_OK)
+ {
+ if (p11_ != CK_INVALID_HANDLE)
+ {
+ LOG("Existing invalid session must be destroyed. \n");
+
+ g_state.p11->C_CloseSession(p11_);
+ p11_ = CK_INVALID_HANDLE;
+ }
+ ck_rv = g_state.p11->C_OpenSession(g_state.slot(), CKF_RW_SESSION | CKF_SERIAL_SESSION, 0, 0, &p11_);
+ }
+
+ if (ck_rv != CKR_OK)
+ {
+ DisplayError(session, "Error during PIN verification");
+ Throw(NTE_FAIL);
+ }
+ else
+ LOG("PIN Verification Successful\n");
+
+}
+
+
bool State::shutdown()
{
if (init())
@@ -187,6 +223,12 @@
keys_.clear();
}
+ if (p11_ != CK_INVALID_HANDLE)
+ {
+ p11->C_CloseSession(p11_);
+ p11_ = CK_INVALID_HANDLE;
+ }
+
g_state.p11->C_Finalize(0);
init(false);
Index: State.h
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/State.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- State.h 27 Jul 2006 22:23:07 -0000 1.1
+++ State.h 30 Apr 2007 23:30:58 -0000 1.2
@@ -45,6 +45,7 @@
std::set<Session*> sessions_;
std::set<Key*> keys_;
std::string pkcs11dllname_;
+ CK_SESSION_HANDLE p11_;
public:
CK_FUNCTION_LIST_PTR p11;
@@ -99,6 +100,9 @@
bool keyExists(Key* key);
Key* checkValidKey(HCRYPTKEY hKey);
+
+ void login(Session* session);
+
bool shutdown();
void lock()
Index: csp.cpp
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/csp.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- csp.cpp 11 Oct 2006 18:12:58 -0000 1.2
+++ csp.cpp 30 Apr 2007 23:30:58 -0000 1.3
@@ -99,9 +99,11 @@
BinStr container_name, reader_name;
Session::parseFQCN(szContainer, &container_name, &reader_name);
+ // Missing output is only allowed for DELETEKEYSET
if (!phProv && !(dwFlags & CRYPT_DELETEKEYSET))
ThrowMsg(NTE_FAIL, "Can't return context, phProv is invalid");
+ // Do one-time initialization of state
if (g_state.init())
LOG("CSP already initialized\n");
else
@@ -177,6 +179,7 @@
}
else
{
+#ifdef LOGIN_FOR_SESSION
int pin_size;
BinStr userPIN;
userPIN.resize(256);
@@ -195,6 +198,8 @@
}
else
LOG("PIN Verification Successful\n");
+#endif /* LOGIN_FOR_SESSION */
+ g_state.login(context);
}
}
Index: csp.h
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/csp.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- csp.h 11 Oct 2006 18:12:58 -0000 1.2
+++ csp.h 30 Apr 2007 23:30:58 -0000 1.3
@@ -87,6 +87,7 @@
bool GetModulusFromCert(Session* context, BinStr* modulus, BinStr* exponent, const BinStr& cert);
void HexIfBin(BinStr* str);
bool InitP11();
+bool IsCACert(const BinStr& cert);
void Reverse(BinStr* buf);
void Reverse(LPBYTE buf, size_t len);
std::string StringifyAquireFlags(DWORD param);
Index: cspx.cpp
===================================================================
RCS file: /cvs/dirsec/coolkey/src/windows/csp/cspx.cpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cspx.cpp 27 Jul 2006 22:23:07 -0000 1.1
+++ cspx.cpp 30 Apr 2007 23:30:58 -0000 1.2
@@ -648,6 +648,8 @@
CK_OBJECT_CLASS objClass = CKO_CERTIFICATE;
CK_ATTRIBUTE attrib = { CKA_CLASS, &objClass, sizeof(objClass) };
+ LOG("FindDefaultCert. \n");
+
// start object search for all certificates
if (g_state.p11->C_FindObjectsInit(context->p11_, &attrib, 1) != CKR_OK)
{
@@ -669,6 +671,8 @@
CK_ULONG ulNumFound = 1;
while (ulNumFound > 0)
{
+ LOG("FindDefaultCert. Top of while loop, through certs. \n");
+
CK_OBJECT_HANDLE hCert;
if (g_state.p11->C_FindObjects(context->p11_, &hCert, 1, &ulNumFound) != CKR_OK)
ThrowMsg(0, "C_FindObjects failed\n");
@@ -676,6 +680,7 @@
if (ulNumFound == 0)
break;
+ LOG("FindDefaultCert. Num Certs found %d hcert %d. \n",ulNumFound,hCert);
// First we want the CKA_ID and CKA_VALUE lengths
attrib[0].pValue = 0;
attrib[1].pValue = 0;
@@ -691,6 +696,10 @@
if (g_state.p11->C_GetAttributeValue(context->p11_, hCert, attrib, sizeof(attrib)/sizeof(CK_ATTRIBUTE)) != CKR_OK)
continue;
+
+ if (IsCACert(cert))
+ continue;
+
vector<string> ext;
GetExtKeyUsageFromCert(&ext, cert);
@@ -703,6 +712,7 @@
haveLogonCert = true;
container->swap(ckaid);
*phCert = hCert;
+ LOG("FindDefaultCert. Setting default cert because proper extension found. \n");
break;
}
}
@@ -710,6 +720,7 @@
if (i >= ext.size() && !haveLogonCert)
{
container->swap(ckaid);
+ LOG("FindDefaultCert Setting default cert because not a login cert. %d \n",hCert);
*phCert = hCert;
}
}
@@ -1011,6 +1022,72 @@
return rv;
}
+bool IsCACert(const BinStr& cert)
+{
+ bool rv = false;
+ DWORD cbInfo= 0;
+
+ PCCERT_CONTEXT certContext = 0;
+
+ LOG("IsCACert cert %p size %d \n", &cert,cert.size());
+
+ cbInfo = sizeof(CERT_BASIC_CONSTRAINTS2_INFO);
+
+ PCERT_BASIC_CONSTRAINTS2_INFO pInfo =
+ (PCERT_BASIC_CONSTRAINTS2_INFO) LocalAlloc(LPTR,cbInfo);
+
+ if (!pInfo)
+ return rv;
+
+ try
+ {
+ certContext =
+ CertCreateCertificateContext(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING,
+ &cert[0], cert.size());
+
+ if (certContext == 0)
+ ThrowMsg(0, "CertCreateCertificateContext failed");
+
+
+ PCERT_EXTENSION pBC = CertFindExtension(szOID_BASIC_CONSTRAINTS2,
+ certContext->pCertInfo->cExtension, certContext->pCertInfo->rgExtension);
+
+ if (!pBC)
+ ThrowMsg(0,"No BASIC_CONSTRAINT extension.");
+
+ DWORD cbDecoded = cbInfo;
+
+ BOOL dResult = CryptDecodeObject(X509_ASN_ENCODING |PKCS_7_ASN_ENCODING , szOID_BASIC_CONSTRAINTS2,
+ pBC->Value.pbData, pBC->Value.cbData, 0, pInfo,&cbDecoded);
+
+ if (!dResult)
+ {
+
+ DWORD error = GetLastError();
+
+ LOG("IsCACert CryptDecodeObject failed! error 0x%lx \n",error);
+
+ ThrowMsg(0,"CryptDecodeObject failed");
+ }
+
+ rv = (bool) pInfo->fCA;
+
+ LOG("IsCACert returning fCA %ld fPathLenConstraint %ld dwPathLenConstraint %lu .\n",pInfo->fCA,pInfo->fPathLenConstraint,pInfo->dwPathLenConstraint);
+ }
+ catch (Error&)
+ {
+ rv = false;
+ }
+
+ if (certContext)
+ CertFreeCertificateContext(certContext);
+
+ if (pInfo)
+ LocalFree(pInfo);
+
+ return rv;
+}
+
string GetCurrentExecutable()
{
TCHAR szModulePath[MAX_PATH];
16 years, 5 months
[Fedora-directory-commits] ldapserver/lib/libsi18n acclanglist.c, 1.7, NONE
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver/lib/libsi18n
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv21422/lib/libsi18n
Removed Files:
acclanglist.c
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #9)
Description: Cleaning up unused code
--- acclanglist.c DELETED ---
16 years, 5 months
[Fedora-directory-commits] ldapserver modules.awk, 1.7, NONE modules.sh, 1.4, NONE
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv21422
Removed Files:
modules.awk modules.sh
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #9)
Description: Cleaning up unused code
--- modules.awk DELETED ---
--- modules.sh DELETED ---
16 years, 5 months
[Fedora-directory-commits] ldapserver Makefile.am, 1.35, 1.36 Makefile.in, 1.42, 1.43
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv21334
Modified Files:
Makefile.am Makefile.in
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #8)
Description: acclanglist.c has been moved to AdminUtil
Index: Makefile.am
===================================================================
RCS file: /cvs/dirsec/ldapserver/Makefile.am,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- Makefile.am 22 Mar 2007 15:16:26 -0000 1.35
+++ Makefile.am 27 Apr 2007 23:39:59 -0000 1.36
@@ -312,7 +312,6 @@
lib/base/system.cpp \
lib/base/systhr.cpp \
lib/base/util.cpp \
- lib/libsi18n/acclanglist.c \
lib/libsi18n/coreres.c \
lib/libsi18n/getstrprop.c \
lib/libsi18n/getlang.c \
Index: Makefile.in
===================================================================
RCS file: /cvs/dirsec/ldapserver/Makefile.in,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -r1.42 -r1.43
--- Makefile.in 12 Apr 2007 21:05:59 -0000 1.42
+++ Makefile.in 27 Apr 2007 23:39:59 -0000 1.43
@@ -316,7 +316,6 @@
lib/base/libns_dshttpd_la-system.lo \
lib/base/libns_dshttpd_la-systhr.lo \
lib/base/libns_dshttpd_la-util.lo \
- lib/libsi18n/libns_dshttpd_la-acclanglist.lo \
lib/libsi18n/libns_dshttpd_la-coreres.lo \
lib/libsi18n/libns_dshttpd_la-getstrprop.lo \
lib/libsi18n/libns_dshttpd_la-getlang.lo \
@@ -1218,7 +1217,6 @@
lib/base/system.cpp \
lib/base/systhr.cpp \
lib/base/util.cpp \
- lib/libsi18n/acclanglist.c \
lib/libsi18n/coreres.c \
lib/libsi18n/getstrprop.c \
lib/libsi18n/getlang.c \
@@ -2656,9 +2654,6 @@
lib/libsi18n/$(DEPDIR)/$(am__dirstamp):
@$(mkdir_p) lib/libsi18n/$(DEPDIR)
@: > lib/libsi18n/$(DEPDIR)/$(am__dirstamp)
-lib/libsi18n/libns_dshttpd_la-acclanglist.lo: \
- lib/libsi18n/$(am__dirstamp) \
- lib/libsi18n/$(DEPDIR)/$(am__dirstamp)
lib/libsi18n/libns_dshttpd_la-coreres.lo: \
lib/libsi18n/$(am__dirstamp) \
lib/libsi18n/$(DEPDIR)/$(am__dirstamp)
@@ -4539,8 +4534,6 @@
-rm -f lib/libadmin/libns_dshttpd_la-template.lo
-rm -f lib/libadmin/libns_dshttpd_la-util.$(OBJEXT)
-rm -f lib/libadmin/libns_dshttpd_la-util.lo
- -rm -f lib/libsi18n/libns_dshttpd_la-acclanglist.$(OBJEXT)
- -rm -f lib/libsi18n/libns_dshttpd_la-acclanglist.lo
-rm -f lib/libsi18n/libns_dshttpd_la-coreres.$(OBJEXT)
-rm -f lib/libsi18n/libns_dshttpd_la-coreres.lo
-rm -f lib/libsi18n/libns_dshttpd_la-getlang.$(OBJEXT)
@@ -4994,7 +4987,6 @@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libadmin/$(DEPDIR)/libns_dshttpd_la-error.Plo(a)am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libadmin/$(DEPDIR)/libns_dshttpd_la-template.Plo(a)am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libadmin/$(DEPDIR)/libns_dshttpd_la-util.Plo(a)am__quote@
-@AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-acclanglist.Plo(a)am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-coreres.Plo(a)am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getlang.Plo(a)am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-getstrprop.Plo(a)am__quote@
@@ -6042,13 +6034,6 @@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/base/libns_dshttpd_la-nscperror.lo `test -f 'lib/base/nscperror.c' || echo '$(srcdir)/'`lib/base/nscperror.c
-lib/libsi18n/libns_dshttpd_la-acclanglist.lo: lib/libsi18n/acclanglist.c
-@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-acclanglist.lo -MD -MP -MF "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-acclanglist.Tpo" -c -o lib/libsi18n/libns_dshttpd_la-acclanglist.lo `test -f 'lib/libsi18n/acclanglist.c' || echo '$(srcdir)/'`lib/libsi18n/acclanglist.c; \
-@am__fastdepCC_TRUE@ then mv -f "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-acclanglist.Tpo" "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-acclanglist.Plo"; else rm -f "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-acclanglist.Tpo"; exit 1; fi
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='lib/libsi18n/acclanglist.c' object='lib/libsi18n/libns_dshttpd_la-acclanglist.lo' libtool=yes @AMDEPBACKSLASH@
-@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
-@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lib/libsi18n/libns_dshttpd_la-acclanglist.lo `test -f 'lib/libsi18n/acclanglist.c' || echo '$(srcdir)/'`lib/libsi18n/acclanglist.c
-
lib/libsi18n/libns_dshttpd_la-coreres.lo: lib/libsi18n/coreres.c
@am__fastdepCC_TRUE@ if $(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libns_dshttpd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lib/libsi18n/libns_dshttpd_la-coreres.lo -MD -MP -MF "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-coreres.Tpo" -c -o lib/libsi18n/libns_dshttpd_la-coreres.lo `test -f 'lib/libsi18n/coreres.c' || echo '$(srcdir)/'`lib/libsi18n/coreres.c; \
@am__fastdepCC_TRUE@ then mv -f "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-coreres.Tpo" "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-coreres.Plo"; else rm -f "lib/libsi18n/$(DEPDIR)/libns_dshttpd_la-coreres.Tpo"; exit 1; fi
16 years, 5 months
[Fedora-directory-commits] ldapserver/ldap/clients/orgchart aim-online.gif, 1.1.1.1, NONE arrow.gif, 1.1.1.1, NONE botframe.html, 1.6, NONE branch-cc1.gif, 1.1.1.1, NONE config.tmpl, 1.5, NONE index.html, 1.6, NONE ldap-person.gif, 1.1.1.1, NONE mag.gif, 1.1.1.1, NONE mail.gif, 1.1.1.1, NONE myorg.bat, 1.4, NONE myorg.pl, 1.7, NONE new-branch-blank.gif, 1.1.1.1, NONE new-branch-first.gif, 1.1.1.1, NONE new-branch-straight.gif, 1.1.1.1, NONE org.bat, 1.4, NONE org.pl, 1.7, NONE orgicon.gif, 1.1.1.1, NONE sta
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver/ldap/clients/orgchart
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20580/ldap/clients/orgchart
Removed Files:
aim-online.gif arrow.gif botframe.html branch-cc1.gif
config.tmpl index.html ldap-person.gif mag.gif mail.gif
myorg.bat myorg.pl new-branch-blank.gif new-branch-first.gif
new-branch-straight.gif org.bat org.pl orgicon.gif
starthelp.gif styles.css topframe.html wrapper.c
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #5)
Description: DSMLGW and ORGCHART are moved out; removing from ldapserver
--- botframe.html DELETED ---
--- config.tmpl DELETED ---
--- index.html DELETED ---
--- myorg.bat DELETED ---
--- myorg.pl DELETED ---
--- org.bat DELETED ---
--- org.pl DELETED ---
--- styles.css DELETED ---
--- topframe.html DELETED ---
--- wrapper.c DELETED ---
16 years, 5 months
[Fedora-directory-commits] ldapserver/ldap/clients/dsmlgw/src/com/netscape/dsml/gateway BatchProcessor.java, 1.5, NONE Configuration.java, 1.4, NONE Constants.java, 1.4, NONE GenericOperation.java, 1.4, NONE IConnMgrFactoryFunctor.java, 1.4, NONE IConnectionManager.java, 1.4, NONE LDAPAuthenticator.java, 1.4, NONE OperationAdd.java, 1.6, NONE OperationAuth.java, 1.4, NONE OperationCompare.java, 1.4, NONE OperationDelete.java, 1.4, NONE OperationExtended.java, 1.4, NONE OperationModify.java, 1.5, NONE Opera
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver/ldap/clients/dsmlgw/src/com/netscape/dsml/gateway
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20580/ldap/clients/dsmlgw/src/com/netscape/dsml/gateway
Removed Files:
BatchProcessor.java Configuration.java Constants.java
GenericOperation.java IConnMgrFactoryFunctor.java
IConnectionManager.java LDAPAuthenticator.java
OperationAdd.java OperationAuth.java OperationCompare.java
OperationDelete.java OperationExtended.java
OperationModify.java OperationModifyDN.java
OperationSearch.java ParseControl.java ParseFilter.java
ParseValue.java ProxyConnMgrFactory.java
ProxyConnectionManager.java gatewayContext.java
gatewayException.java gatewayHandler.java gatewayService.java
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #5)
Description: DSMLGW and ORGCHART are moved out; removing from ldapserver
--- BatchProcessor.java DELETED ---
--- Configuration.java DELETED ---
--- Constants.java DELETED ---
--- GenericOperation.java DELETED ---
--- IConnMgrFactoryFunctor.java DELETED ---
--- IConnectionManager.java DELETED ---
--- LDAPAuthenticator.java DELETED ---
--- OperationAdd.java DELETED ---
--- OperationAuth.java DELETED ---
--- OperationCompare.java DELETED ---
--- OperationDelete.java DELETED ---
--- OperationExtended.java DELETED ---
--- OperationModify.java DELETED ---
--- OperationModifyDN.java DELETED ---
--- OperationSearch.java DELETED ---
--- ParseControl.java DELETED ---
--- ParseFilter.java DELETED ---
--- ParseValue.java DELETED ---
--- ProxyConnMgrFactory.java DELETED ---
--- ProxyConnectionManager.java DELETED ---
--- gatewayContext.java DELETED ---
--- gatewayException.java DELETED ---
--- gatewayHandler.java DELETED ---
--- gatewayService.java DELETED ---
16 years, 5 months
[Fedora-directory-commits] ldapserver/ldap/clients/dsmlgw Makefile, 1.11, NONE build.xml, 1.8, NONE
by Doctor Conrad
Author: nhosoi
Update of /cvs/dirsec/ldapserver/ldap/clients/dsmlgw
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20580/ldap/clients/dsmlgw
Removed Files:
Makefile build.xml
Log Message:
Resolves: #237356
Summary: Move DS Admin Code into Admin Server (Comment #5)
Description: DSMLGW and ORGCHART are moved out; removing from ldapserver
--- Makefile DELETED ---
--- build.xml DELETED ---
16 years, 5 months