1 /* $NetBSD: back-sock.h,v 1.1.1.3 2010/12/12 15:23:22 adam Exp $ */ 2 3 /* sock.h - socket backend header file */ 4 /* OpenLDAP: pkg/ldap/servers/slapd/back-sock/back-sock.h,v 1.4.2.3 2010/04/13 20:23:40 kurt Exp */ 5 /* This work is part of OpenLDAP Software <http://www.openldap.org/>. 6 * 7 * Copyright 2007-2010 The OpenLDAP Foundation. 8 * All rights reserved. 9 * 10 * Redistribution and use in source and binary forms, with or without 11 * modification, are permitted only as authorized by the OpenLDAP 12 * Public License. 13 * 14 * A copy of this license is available in the file LICENSE in the 15 * top-level directory of the distribution or, alternatively, at 16 * <http://www.OpenLDAP.org/license.html>. 17 */ 18 /* ACKNOWLEDGEMENTS: 19 * This work was initially developed by Brian Candler for inclusion 20 * in OpenLDAP Software. 21 */ 22 23 #ifndef SLAPD_SOCK_H 24 #define SLAPD_SOCK_H 25 26 #include "proto-sock.h" 27 28 LDAP_BEGIN_DECL 29 30 struct sockinfo { 31 const char *si_sockpath; 32 slap_mask_t si_extensions; 33 }; 34 35 #define SOCK_EXT_BINDDN 1 36 #define SOCK_EXT_PEERNAME 2 37 #define SOCK_EXT_SSF 4 38 39 extern FILE *opensock LDAP_P(( 40 const char *sockpath)); 41 42 extern void sock_print_suffixes LDAP_P(( 43 FILE *fp, 44 BackendDB *bd)); 45 46 extern void sock_print_conn LDAP_P(( 47 FILE *fp, 48 Connection *conn, 49 struct sockinfo *si)); 50 51 extern int sock_read_and_send_results LDAP_P(( 52 Operation *op, 53 SlapReply *rs, 54 FILE *fp)); 55 56 LDAP_END_DECL 57 58 #endif 59