2000-05-10 16:11:58 -04:00
|
|
|
/* add.c - DNS SRV backend request handler */
|
2000-05-10 14:17:38 -04:00
|
|
|
/* $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>
|
2000-05-10 16:11:58 -04:00
|
|
|
#include <ac/socket.h>
|
2000-05-10 14:17:38 -04:00
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
#include "back-dnssrv.h"
|
|
|
|
|
|
|
|
|
|
int
|
2000-05-10 16:11:58 -04:00
|
|
|
dnssrv_back_request(
|
|
|
|
|
Backend *be,
|
|
|
|
|
Connection *conn,
|
|
|
|
|
Operation *op,
|
|
|
|
|
const char *dn,
|
|
|
|
|
const char *ndn )
|
2000-05-10 14:17:38 -04:00
|
|
|
{
|
2000-05-10 16:11:58 -04:00
|
|
|
return -1;
|
2000-05-10 14:17:38 -04:00
|
|
|
}
|