+++ /dev/null
-/* add.c - DNS SRV backend add function */
-/* $OpenLDAP$ */
-/*
- * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-
-#include "portable.h"
-
-#include <stdio.h>
-
-#include <ac/string.h>
-#include <ac/socket.h>
-
-#include "slap.h"
-#include "back-dnssrv.h"
-
-int
-dnssrv_back_add(
- Backend *be,
- Connection *conn,
- Operation *op,
- Entry *e
-)
-{
- return dnssrv_back_request( be, conn, op, e->e_dn, e->e_ndn,
- 0, NULL, NULL, 0 );
-}
+++ /dev/null
-/* $OpenLDAP$ */
-/*
- * Copyright 2000, OpenLDAP Foundation, All rights reserved.
- *
- * Redistribution and use in source and binary forms are permitted only
- * as authorized by the OpenLDAP Public License. A copy of this
- * license is available at http://www.OpenLDAP.org/license.html or
- * in file LICENSE in the top-level directory of the distribution.
- */
-
-#ifndef DNSSRV_BACK_H
-#define DNSSRV_BACK_H 1
-
-#include "external.h"
-
-LDAP_BEGIN_DECL
-
-int dnssrv_result();
-
-extern int dnssrv_back_request LDAP_P((
- BackendDB *bd,
- Connection *conn, Operation *op,
- const char *dn, const char *ndn,
- int scope, Filter *filter,
- char **attrs, int attrsonly ));
-
-LDAP_END_DECL
-
-#endif /* DNSSRV_BACK_H */
+++ /dev/null
-/* delete.c - DNS SRV backend delete function */
-/* $OpenLDAP$ */
-/*
- * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-
-
-#include "portable.h"
-
-#include <stdio.h>
-
-#include <ac/string.h>
-#include <ac/socket.h>
-
-#include "slap.h"
-#include "back-dnssrv.h"
-
-int
-dnssrv_back_delete(
- Backend *be,
- Connection *conn,
- Operation *op,
- const char *dn,
- const char *ndn
-)
-{
- return dnssrv_back_request( be, conn, op, dn, ndn,
- 0, NULL, NULL, 0 );
-}
+++ /dev/null
-/* modify.c - DNS SRV backend modify function */
-/* $OpenLDAP$ */
-/*
- * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-
-
-#include "portable.h"
-
-#include <stdio.h>
-
-#include <ac/string.h>
-#include <ac/socket.h>
-
-#include "slap.h"
-#include "back-dnssrv.h"
-
-int
-dnssrv_back_modify(
- Backend *be,
- Connection *conn,
- Operation *op,
- const char *dn,
- const char *ndn,
- Modifications *ml
-)
-{
- return dnssrv_back_request( be, conn, op, dn, ndn,
- 0, NULL, NULL, 0 );
-}
+++ /dev/null
-/* modrdn.c - DNS SRV backend modrdn function */
-/* $OpenLDAP$ */
-/*
- * Copyright 2000 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- */
-
-#include "portable.h"
-
-#include <stdio.h>
-
-#include <ac/socket.h>
-#include <ac/string.h>
-
-#include "slap.h"
-#include "back-dnssrv.h"
-
-int
-dnssrv_back_modrdn(
- Backend *be,
- Connection *conn,
- Operation *op,
- const char *dn,
- const char *ndn,
- const char *newrdn,
- int deleteoldrdn,
- const char *newSuperior
-)
-{
- return dnssrv_back_request( be, conn, op, dn, ndn,
- 0, NULL, NULL, 0 );
-}