File: ldapskeleton.c

package info (click to toggle)
ldapdiff 0.9.2-1.1
  • links: PTS
  • area: main
  • in suites: lenny, squeeze
  • size: 716 kB
  • ctags: 182
  • sloc: ansic: 2,392; sh: 768; makefile: 11
file content (78 lines) | stat: -rw-r--r-- 2,060 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
    ldapdiff
    Copyright (C) 2000-2001 Thomas.Reith@rhoen.de

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

#include <lber.h>
#include <ldap.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "ldapdiff.h"

void ldifskeleton(struct s_mod *smod)
{
 struct s_mod      *psmod;
 struct s_modentry *psmodentry;

 psmod = smod;

 while(psmod != NULL){
  switch(psmod->modtype){
   case MODADD:
/*
psmod->dnvar holds the entry name  of the new ldap entry
psmod->dnval holds the entry value of the new ldap entry
*/
        psmodentry = psmod->attrlist;
        while(psmodentry != NULL){
/*
psmodentry->var holds the attribute name  of the new ldap entry
psmodentry->val holds the attribute value of the new ldap entry
psmodentry->val_len holds the attribute value of the new ldap entry 
psmodentry->val_type holds the attribute type of the new ldap entry 
*/
         psmodentry = psmodentry->next; 
        }
        break;

   case MODMODIFY:
        psmodentry = psmod->attrlist;
        while(psmodentry != NULL){
         switch(psmodentry->modtype){
          case MODENTRYADD:
               break;

          case MODENTRYREPLACE:
               break;

          case MODENTRYDELETE:
               break;
         }
         psmodentry = psmodentry->next; 
        }
        break;

   case MODDELETE:
        break;
  } 

  psmod = psmod->next;
 } 
}