home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 February / PCWorld_2003-02_cd.bin / Komunik / sambar / sambar53b3.exe / samples / include / security.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-29  |  2.7 KB  |  94 lines

  1. /*
  2. ** SECURITY.H
  3. **
  4. **      This header file contains the public HTTP interfaces used by the
  5. **        Sambar Server for interfacing with the Security Interfaces.
  6. **
  7. **        Confidential Property of Tod Sambar
  8. **        (c) Copyright Tod Sambar 1996-1997
  9. **        All rights reserved.
  10. **
  11. **
  12. ** History:
  13. ** Chg#    Date    Description                                                Resp
  14. ** ----    -------    -------------------------------------------------------    ----
  15. **        4FEB97    Created                                                    sambar
  16. */
  17.  
  18. #if     !defined(__SECURITY_H__)
  19. #define __SECURITY_H__
  20.  
  21. #include    <sambar.h>
  22.  
  23. /*
  24. ** Security Structures
  25. */
  26. typedef struct __ENTRY
  27. {
  28.     SA_INT                valuelen;
  29.     SA_CHAR                *value;
  30.     struct __ENTRY        *next;
  31. } ENTRY;
  32.  
  33. typedef struct __security
  34. {
  35.     SA_INT                namelen;
  36.     SA_CHAR                *name;
  37.     ENTRY                *entries;
  38.     struct __security    *next;
  39. } SECURITY;
  40.  
  41. #define SECURITY_REDIRECT        (SA_INT)0
  42. #define SECURITY_RESTRICT        (SA_INT)1
  43. #define SECURITY_DENY            (SA_INT)2
  44. #define SECURITY_HTTPACCEPT        (SA_INT)3
  45. #define SECURITY_HTTPDENY        (SA_INT)4
  46. #define SECURITY_FTPACCEPT        (SA_INT)5
  47. #define SECURITY_FTPDENY        (SA_INT)6
  48. #define SECURITY_PROXYACCEPT    (SA_INT)7
  49. #define SECURITY_PROXYDENY        (SA_INT)8
  50. #define SECURITY_HOSTFILTER        (SA_INT)9
  51. #define SECURITY_URLFILTER        (SA_INT)10
  52. #define SECURITY_IPRESTRICT        (SA_INT)11
  53. #define SECURITY_HOSTRESTRICT    (SA_INT)12
  54. #define SECURITY_URLRESTRICT    (SA_INT)13
  55. #define SECURITY_MAILACCEPT        (SA_INT)14
  56. #define SECURITY_MAILDENY        (SA_INT)15
  57. #define SECURITY_DNSACCEPT        (SA_INT)16
  58. #define SECURITY_DNSDENY        (SA_INT)17
  59. #define SECURITY_SIPACCEPT        (SA_INT)18
  60. #define SECURITY_SIPDENY        (SA_INT)19
  61. #define SECURITY_HOSTREDIRECT    (SA_INT)20
  62. #define SECURITY_SITEREDIRECT    (SA_INT)21
  63. #define SECURITY_TFTPACCEPT        (SA_INT)22
  64. #define SECURITY_TFTPDENY        (SA_INT)23
  65.  
  66.  
  67. /*
  68. ** Sambar Server/Security Function Prototypes
  69. */
  70. #if defined(__cplusplus)
  71. extern "C" {
  72. #endif /* defined(__cplusplus) */
  73.  
  74. extern SA_RETCODE SA_EXPORT     security_init(SA_CTX *sactx);
  75. extern SA_RETCODE SA_EXPORT     security_exit(SA_CTX *sactx);
  76. extern SA_RETCODE SA_EXPORT        security_request(SA_CTX *sactx, SA_CONN *saconn,
  77.                                     SA_CHAR *uri, SA_INT urilen, 
  78.                                     SA_PARAMS *saparams, SA_INT *infop);
  79. extern SA_RETCODE SA_EXPORT        security_connect(SA_CTX *sactx, SA_CHAR *ipaddr,
  80.                                     SA_INT servertype);
  81. extern SA_RETCODE SA_EXPORT        security_filter(SA_CTX *sactx, SA_CONN *conn,
  82.                                     SA_CHAR *host, SA_INT hostlen,
  83.                                     SA_CHAR *url, SA_INT urllen);
  84. extern SA_RETCODE SA_PUBLIC        security_showsec(SA_CTX *sactx, SA_CONN *saconn,
  85.                                     SA_PARAMS *saparams, SA_INT *infop);
  86. extern SA_RETCODE SA_PUBLIC        security_reload(SA_CTX *sactx, SA_CONN *saconn,
  87.                                     SA_PARAMS *saparams, SA_INT *infop);
  88.  
  89. #if defined(__cplusplus)
  90. }
  91. #endif /* defined(__cplusplus) */
  92.  
  93. #endif /* __SECURITY_H__ */
  94.