~ubuntu-branches/ubuntu/trusty/libnss-ldap/trusty-proposed

« back to all changes in this revision

Viewing changes to ldap-ethers.h

  • Committer: Bazaar Package Importer
  • Author(s): Richard A Nelson (Rick)
  • Date: 2007-05-14 19:40:00 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070514194000-40u9ndh540lgliqe
Tags: 255-1
Survived i386 and amd64, let it loose

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 1997-2005 Luke Howard.
2
 
   This file is part of the nss_ldap library.
3
 
   Contributed by Luke Howard, <lukeh@padl.com>, 1997.
4
 
 
5
 
   The nss_ldap library is free software; you can redistribute it and/or
6
 
   modify it under the terms of the GNU Library General Public License as
7
 
   published by the Free Software Foundation; either version 2 of the
8
 
   License, or (at your option) any later version.
9
 
 
10
 
   The nss_ldap library is distributed in the hope that it will be useful,
11
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
   Library General Public License for more details.
14
 
 
15
 
   You should have received a copy of the GNU Library General Public
16
 
   License along with the nss_ldap library; see the file COPYING.LIB.  If not,
17
 
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
   Boston, MA 02111-1307, USA.
19
 
 
20
 
   $Id: ldap-ethers.h,v 2.26 2005/05/20 05:30:40 lukeh Exp $
21
 
 */
22
 
 
23
 
#ifndef _LDAP_NSS_LDAP_LDAP_ETHERS_H
24
 
#define _LDAP_NSS_LDAP_LDAP_ETHERS_H
25
 
 
26
 
#ifdef HAVE_NETINET_IF_ETHER_H
27
 
#include <netinet/if_ether.h>
28
 
#endif
29
 
#ifdef HAVE_NETINET_ETHER_H
30
 
#include <netinet/ether.h>
31
 
#endif
32
 
 
33
 
#ifndef HAVE_STRUCT_ETHER_ADDR
34
 
struct ether_addr {
35
 
  u_char ether_addr_octet[6];
36
 
};
37
 
#endif
38
 
 
39
 
struct ether
40
 
{
41
 
  char *e_name;
42
 
  struct ether_addr e_addr;
43
 
};
44
 
 
45
 
#if defined(HAVE_NSSWITCH_H) || defined(HAVE_NSS_H)
46
 
static NSS_STATUS _nss_ldap_parse_ether (LDAPMessage * e,
47
 
                                         ldap_state_t * pvt,
48
 
                                         void *result,
49
 
                                         char *buffer, size_t buflen);
50
 
#endif
51
 
 
52
 
#ifdef HAVE_NSSWITCH_H
53
 
static NSS_STATUS _nss_ldap_gethostton_r (nss_backend_t * be, void *fakeargs);
54
 
static NSS_STATUS _nss_ldap_getntohost_r (nss_backend_t * be, void *fakeargs);
55
 
 
56
 
nss_backend_t *_nss_ldap_ethers_constr (const char *db_name,
57
 
                                        const char *src_name,
58
 
                                        const char *cfg_args);
59
 
 
60
 
#elif defined(HAVE_NSS_H)
61
 
/* for the record */
62
 
NSS_STATUS _nss_ldap_gethostton_r (const char *name, struct ether *eth,
63
 
                                   char *buffer, size_t buflen, int *errnop);
64
 
NSS_STATUS _nss_ldap_getntohost_r (struct ether_addr *addr, struct ether *eth,
65
 
                                   char *buffer, size_t buflen, int *errnop);
66
 
NSS_STATUS _nss_ldap_endetherent (void);
67
 
NSS_STATUS _nss_ldap_setetherent (void);
68
 
NSS_STATUS _nss_ldap_getetherent_r (struct ether *result, char *buffer,
69
 
                                    size_t buflen, int *errnop);
70
 
#endif
71
 
 
72
 
 
73
 
#endif /* _LDAP_NSS_LDAP_LDAP_ETHERS_H */