~ubuntu-branches/ubuntu/oneiric/osptoolkit/oneiric

« back to all changes in this revision

Viewing changes to include/osp/ospciscoext.h

  • Committer: Bazaar Package Importer
  • Author(s): TransNexus, Inc.
  • Date: 2007-12-30 20:37:26 UTC
  • Revision ID: james.westby@ubuntu.com-20071230203726-dysah2e93yqd3vbp
Tags: upstream-3.4.2
ImportĀ upstreamĀ versionĀ 3.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**************************************************************************
 
2
*** COPYRIGHT (c) 2002 by TransNexus, Inc.                              ***
 
3
***                                                                     ***
 
4
*** This software is property of TransNexus, Inc.                       ***
 
5
*** This software is freely available under license from TransNexus.    ***
 
6
*** The license terms and conditions for free use of this software by   ***
 
7
*** third parties are defined in the OSP Toolkit Software License       ***
 
8
*** Agreement (LICENSE.txt).  Any use of this software by third         ***
 
9
*** parties, which does not comply with the terms and conditions of the ***
 
10
*** OSP Toolkit Software License Agreement is prohibited without        ***
 
11
*** the prior, express, written consent of TransNexus, Inc.             ***
 
12
***                                                                     ***
 
13
*** Thank you for using the OSP ToolKit(TM).  Please report any bugs,   ***
 
14
*** suggestions or feedback to support@transnexus.com                   ***
 
15
***                                                                     ***
 
16
**************************************************************************/
 
17
 
 
18
 
 
19
 
 
20
 
 
21
 
 
22
 
 
23
 
 
24
/*
 
25
 * ospciscoaudit.h - Cisco Audit elements.
 
26
 */
 
27
 
 
28
#ifndef _OSPCSAUDIT_H
 
29
#define _OSPCSAUDIT_H
 
30
 
 
31
#include "osp/osp.h"
 
32
 
 
33
 
 
34
typedef struct
 
35
{
 
36
    unsigned char  *ospmAuditTrigger;      
 
37
}
 
38
OSPTCSAUDIT;
 
39
 
 
40
/* Function prototypes */
 
41
#ifdef __cplusplus
 
42
extern "C" 
 
43
{
 
44
#endif
 
45
    void            OSPPCSAuditDelete(OSPTCSAUDIT **ospvCSAudit);
 
46
    int             OSPPCSAuditFromElement(OSPTXMLELEM *, OSPTCSAUDIT **);
 
47
 
 
48
    unsigned char   *OSPPCSAuditGetTrigger(OSPTCSAUDIT *);
 
49
 
 
50
    unsigned        OSPPCSAuditHasTrigger(OSPTCSAUDIT *);
 
51
 
 
52
    OSPTCSAUDIT     *OSPPCSAuditNew(void);
 
53
    void            OSPPCSAuditSetTrigger(OSPTCSAUDIT *, unsigned char *);
 
54
    int             OSPPCSAuditToElement(OSPTCSAUDIT *, OSPTXMLELEM **);
 
55
#ifdef __cplusplus
 
56
}
 
57
#endif
 
58
 
 
59
#endif