Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
1.8 KiB

  1. DWORD
  2. DirBackPropIncChangesForISAKMPToPolicy(
  3. HLDAP hLdapBindHandle,
  4. LPWSTR pszIpsecRootContainer,
  5. GUID ISAKMPIdentifier
  6. );
  7. DWORD
  8. DirBackPropIncChangesForFilterToNFA(
  9. HLDAP hLdapBindHandle,
  10. LPWSTR pszIpsecRootContainer,
  11. GUID FilterIdentifier
  12. );
  13. DWORD
  14. DirBackPropIncChangesForNegPolToNFA(
  15. HLDAP hLdapBindHandle,
  16. LPWSTR pszIpsecRootContainer,
  17. GUID NegPolIdentifier
  18. );
  19. DWORD
  20. DirBackPropIncChangesForNFAToPolicy(
  21. HLDAP hLdapBindHandle,
  22. LPWSTR pszIpsecRootContainer,
  23. LPWSTR pszNFADistinguishedName
  24. );
  25. DWORD
  26. DirGetPolicyReferencesForISAKMP(
  27. HLDAP hLdapBindHandle,
  28. LPWSTR pszIpsecRootContainer,
  29. GUID ISAKMPIdentifier,
  30. LPWSTR ** pppszIpsecPolicyReferences,
  31. PDWORD pdwNumReferences
  32. );
  33. DWORD
  34. DirUpdatePolicy(
  35. HLDAP hLdapBindHandle,
  36. LPWSTR pszIpsecRootContainer,
  37. LPWSTR pszIpsecPolicyReference,
  38. DWORD dwDataType
  39. );
  40. DWORD
  41. DirGetPolicyReferencesForNFA(
  42. HLDAP hLdapBindHandle,
  43. LPWSTR pszIpsecRootContainer,
  44. LPWSTR pszNFADistinguishedName,
  45. LPWSTR ** pppszIpsecPolicyReferences,
  46. PDWORD pdwNumReferences
  47. );
  48. DWORD
  49. DirGetNFAReferencesForFilter(
  50. HLDAP hLdapBindHandle,
  51. LPWSTR pszIpsecRootContainer,
  52. GUID FilterIdentifier,
  53. LPWSTR ** pppszIpsecNFAReferences,
  54. PDWORD pdwNumReferences
  55. );
  56. DWORD
  57. DirUpdateNFA(
  58. HLDAP hLdapBindHandle,
  59. LPWSTR pszIpsecRootContainer,
  60. LPWSTR pszIpsecNFAReference,
  61. DWORD dwDataType
  62. );
  63. DWORD
  64. DirGetNFAReferencesForNegPol(
  65. HLDAP hLdapBindHandle,
  66. LPWSTR pszIpsecRootContainer,
  67. GUID NegPolIdentifier,
  68. LPWSTR ** pppszIpsecNFAReferences,
  69. PDWORD pdwNumReferences
  70. );
  71. DWORD
  72. CopyReferences(
  73. LPWSTR * ppszIpsecReferences,
  74. DWORD dwNumReferences,
  75. LPWSTR ** pppszNewIpsecReferences,
  76. PDWORD pdwNumNewReferences
  77. );