code_ownership 2.0.0.pre.1 → 2.0.0.pre.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.cargo/config +2 -2
- data/Cargo.lock +22 -31
- data/ext/cargo-vendor/codeowners-0.2.17/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/Cargo.lock +1257 -0
- data/ext/cargo-vendor/codeowners-0.2.17/Cargo.toml +111 -0
- data/ext/cargo-vendor/codeowners-0.2.17/README.md +287 -0
- data/ext/cargo-vendor/codeowners-0.2.17/dev/run_benchmarks_for_gv.sh +12 -0
- data/ext/cargo-vendor/codeowners-0.2.17/rust-toolchain.toml +4 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/cache/file.rs +179 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/cli.rs +129 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/common_test.rs +358 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/config.rs +126 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/crosscheck.rs +90 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/lib.rs +11 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/main.rs +43 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/codeowners_file_parser.rs +504 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/codeowners_query.rs +32 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/file_generator.rs +203 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/file_owner_resolver.rs +414 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper/annotated_file_mapper.rs +158 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper/package_mapper.rs +220 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/mapper.rs +249 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership/validator.rs +218 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/ownership.rs +223 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/path_utils.rs +49 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project.rs +229 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project_builder.rs +337 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/project_file_builder.rs +107 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner/api.rs +141 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner/types.rs +37 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/runner.rs +390 -0
- data/ext/cargo-vendor/codeowners-0.2.17/src/tracked_files.rs +58 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/common/mod.rs +179 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/crosscheck_owners_test.rs +74 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/.github/CODEOWNERS +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/.keep +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/code_ownership.yml +12 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/teams/design.yml +7 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/config/teams/frontend.yml +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/apps/public/index.tsx +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/dashboard/package.json +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/dashboard/src/index.tsx +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/ui-kit/.codeowner +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/javascript_only_project/frontend/packages/ui-kit/src/button.tsx +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/multiple-directory-owners/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/.github/CODEOWNERS +41 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/javascript/packages/list/page-admin.tsx +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/models/payroll.rb +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/edit.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/index.html.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project/ruby/app/views/foos/new.html.erb +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/.github/CODEOWNERS +53 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/code_ownership.yml +10 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/brewers.yml +11 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/cubs.yml +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/giants.yml +8 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/config/teams/rockies.yml +8 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/datepicker/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/datepicker/src/picks/dp.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/list/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/list/src/item.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/package.json +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/src/field.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/frontend/packages/components/textfield/src/fields/small.tsx +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/apollo/lib/apollo.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/ivy/lib/ivy.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/lager/lib/lager.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/gems/summit/lib/summit.rb +6 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/games/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/locations/app/services/capacity.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/locations/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/schedule/app/services/date.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/schedule/package.yml +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/brewers/lib/util.rb +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/brewers/services/play.rb +9 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/.codeowner +3 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/.codeowner +1 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/db/price.rb +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/models/entertainment.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/cubs/services/play.rb +5 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/giants/services/play.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/ruby/app/rockies/services/play.rb +0 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/invalid_project_test.rs +144 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/multiple_directory_owners_test.rs +41 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/runner_api.rs +181 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/untracked_files_test.rs +38 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/valid_project_test.rs +348 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tests/valid_project_with_overrides_test.rs +38 -0
- data/ext/cargo-vendor/codeowners-0.2.17/tmp/.gitkeep +0 -0
- data/ext/cargo-vendor/glob-0.3.3/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/glob-0.3.3/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/glob-0.3.3/.github/workflows/rust.yml +99 -0
- data/ext/cargo-vendor/glob-0.3.3/CHANGELOG.md +44 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.lock +107 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.toml +45 -0
- data/ext/cargo-vendor/glob-0.3.3/Cargo.toml.orig +18 -0
- data/ext/cargo-vendor/glob-0.3.3/README.md +38 -0
- data/ext/cargo-vendor/glob-0.3.3/src/lib.rs +1511 -0
- data/ext/cargo-vendor/glob-0.3.3/tests/glob-std.rs +477 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/indexmap-2.11.0/.github/workflows/ci.yml +165 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.lock +243 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.toml +148 -0
- data/ext/cargo-vendor/indexmap-2.11.0/Cargo.toml.orig +62 -0
- data/ext/cargo-vendor/indexmap-2.11.0/RELEASES.md +575 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/lib.rs +290 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/core/entry.rs +625 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/core.rs +764 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/mutable.rs +165 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/slice.rs +800 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map/tests.rs +1312 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/map.rs +1832 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/rayon/map.rs +686 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/rayon/set.rs +777 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/mutable.rs +86 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/slice.rs +427 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set/tests.rs +1060 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/set.rs +1454 -0
- data/ext/cargo-vendor/indexmap-2.11.0/src/sval.rs +36 -0
- data/ext/cargo-vendor/indexmap-2.11.0/tests/quick.rs +894 -0
- data/ext/cargo-vendor/rayon-1.11.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rayon-1.11.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.lock +318 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.toml +130 -0
- data/ext/cargo-vendor/rayon-1.11.0/Cargo.toml.orig +57 -0
- data/ext/cargo-vendor/rayon-1.11.0/FAQ.md +213 -0
- data/ext/cargo-vendor/rayon-1.11.0/README.md +150 -0
- data/ext/cargo-vendor/rayon-1.11.0/RELEASES.md +922 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/array.rs +85 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/binary_heap.rs +129 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/btree_map.rs +66 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/btree_set.rs +52 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/hash_map.rs +93 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/hash_set.rs +79 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/linked_list.rs +66 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/mod.rs +84 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/collections/vec_deque.rs +159 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/blocks.rs +129 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/chain.rs +258 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/chunks.rs +216 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/cloned.rs +219 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/collect/mod.rs +114 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/collect/test.rs +368 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/copied.rs +219 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/empty.rs +108 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/enumerate.rs +128 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/filter.rs +137 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/filter_map.rs +141 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/find_first_last/mod.rs +230 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/find_first_last/test.rs +102 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flat_map.rs +153 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flat_map_iter.rs +145 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flatten.rs +134 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/flatten_iter.rs +124 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold.rs +289 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold_chunks.rs +224 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/fold_chunks_with.rs +220 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/from_par_iter.rs +280 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/inspect.rs +253 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/interleave.rs +326 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/interleave_shortest.rs +80 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/intersperse.rs +401 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/len.rs +262 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/map.rs +255 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/map_with.rs +565 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/mod.rs +3627 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/multizip.rs +335 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/once.rs +70 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/panic_fuse.rs +338 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/par_bridge.rs +157 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/plumbing/mod.rs +476 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/positions.rs +133 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/repeat.rs +295 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/rev.rs +119 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip.rs +93 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip_any.rs +140 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/skip_any_while.rs +162 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/splitter.rs +172 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/step_by.rs +135 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take.rs +84 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take_any.rs +140 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/take_any_while.rs +162 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/test.rs +2392 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/try_fold.rs +282 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/unzip.rs +524 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/update.rs +323 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/walk_tree.rs +524 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/while_some.rs +150 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/zip.rs +153 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/iter/zip_eq.rs +67 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/lib.rs +156 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/math.rs +25 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/option.rs +197 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/range.rs +457 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/range_inclusive.rs +381 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/result.rs +132 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/chunk_by.rs +239 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/chunks.rs +387 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/mod.rs +1242 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/rchunks.rs +385 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/sort.rs +1686 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/slice/test.rs +216 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/str.rs +1005 -0
- data/ext/cargo-vendor/rayon-1.11.0/src/vec.rs +292 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/clones.rs +222 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/collect.rs +113 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/debug.rs +233 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/named-threads.rs +25 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/producer_split_at.rs +386 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/sort-panic-safe.rs +164 -0
- data/ext/cargo-vendor/rayon-1.11.0/tests/str.rs +122 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.lock +309 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.toml +93 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/Cargo.toml.orig +35 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/README.md +11 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/broadcast/mod.rs +150 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/join/mod.rs +186 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/join/test.rs +150 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/latch.rs +457 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/lib.rs +864 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/registry.rs +1002 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/scope/mod.rs +773 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/scope/test.rs +621 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/README.md +219 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/counters.rs +273 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/sleep/mod.rs +324 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/spawn/mod.rs +163 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/spawn/test.rs +255 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/test.rs +200 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/thread_pool/mod.rs +502 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/src/thread_pool/test.rs +418 -0
- data/ext/cargo-vendor/rayon-core-1.13.0/tests/use_current_thread.rs +57 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/serde_json-1.0.143/.github/workflows/ci.yml +156 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.lock +419 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.toml +157 -0
- data/ext/cargo-vendor/serde_json-1.0.143/Cargo.toml.orig +91 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/lib.rs +438 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/map.rs +1181 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/ser.rs +2285 -0
- data/ext/cargo-vendor/serde_json-1.0.143/src/value/de.rs +1507 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/tempfile-3.21.0/.github/workflows/ci.yml +109 -0
- data/ext/cargo-vendor/tempfile-3.21.0/CHANGELOG.md +364 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.lock +196 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.toml +98 -0
- data/ext/cargo-vendor/tempfile-3.21.0/Cargo.toml.orig +47 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.cargo-checksum.json +1 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.cargo_vcs_info.json +6 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/.github/FUNDING.yml +1 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.lock +83 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.toml +54 -0
- data/ext/cargo-vendor/winapi-util-0.1.10/Cargo.toml.orig +25 -0
- data/ext/code_ownership/Cargo.toml +9 -9
- data/ext/code_ownership/src/lib.rs +40 -6
- data/lib/code_ownership/cli.rb +5 -18
- data/lib/code_ownership/private/for_file_output_builder.rb +83 -0
- data/lib/code_ownership/private/team_finder.rb +21 -7
- data/lib/code_ownership/version.rb +1 -1
- data/lib/code_ownership.rb +173 -6
- metadata +513 -706
- data/ext/cargo-vendor/codeowners-0.2.7/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/codeowners-0.2.7/Cargo.lock +0 -1230
- data/ext/cargo-vendor/codeowners-0.2.7/Cargo.toml +0 -95
- data/ext/cargo-vendor/codeowners-0.2.7/README.md +0 -204
- data/ext/cargo-vendor/codeowners-0.2.7/dev/run_benchmarks_for_gv.sh +0 -13
- data/ext/cargo-vendor/codeowners-0.2.7/rust-toolchain.toml +0 -4
- data/ext/cargo-vendor/codeowners-0.2.7/src/cache/file.rs +0 -181
- data/ext/cargo-vendor/codeowners-0.2.7/src/cli.rs +0 -119
- data/ext/cargo-vendor/codeowners-0.2.7/src/common_test.rs +0 -338
- data/ext/cargo-vendor/codeowners-0.2.7/src/config.rs +0 -118
- data/ext/cargo-vendor/codeowners-0.2.7/src/lib.rs +0 -8
- data/ext/cargo-vendor/codeowners-0.2.7/src/main.rs +0 -43
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/file_generator.rs +0 -203
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/for_file_fast.rs +0 -425
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper/package_mapper.rs +0 -220
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper/team_file_mapper.rs +0 -123
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/mapper.rs +0 -249
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/parser.rs +0 -486
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/tests.rs +0 -219
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership/validator.rs +0 -218
- data/ext/cargo-vendor/codeowners-0.2.7/src/ownership.rs +0 -220
- data/ext/cargo-vendor/codeowners-0.2.7/src/project.rs +0 -229
- data/ext/cargo-vendor/codeowners-0.2.7/src/project_builder.rs +0 -319
- data/ext/cargo-vendor/codeowners-0.2.7/src/project_file_builder.rs +0 -75
- data/ext/cargo-vendor/codeowners-0.2.7/src/runner.rs +0 -312
- data/ext/cargo-vendor/codeowners-0.2.7/tests/common/mod.rs +0 -113
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/multiple-directory-owners/config/code_ownership.yml +0 -10
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/.github/CODEOWNERS +0 -37
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/config/code_ownership.yml +0 -10
- data/ext/cargo-vendor/codeowners-0.2.7/tests/fixtures/valid_project/ruby/app/models/payroll.rb +0 -3
- data/ext/cargo-vendor/codeowners-0.2.7/tests/invalid_project_test.rs +0 -90
- data/ext/cargo-vendor/codeowners-0.2.7/tests/multiple_directory_owners_test.rs +0 -35
- data/ext/cargo-vendor/codeowners-0.2.7/tests/valid_project_test.rs +0 -284
- data/ext/cargo-vendor/glob-0.3.2/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/glob-0.3.2/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/glob-0.3.2/.github/workflows/rust.yml +0 -65
- data/ext/cargo-vendor/glob-0.3.2/CHANGELOG.md +0 -33
- data/ext/cargo-vendor/glob-0.3.2/Cargo.lock +0 -107
- data/ext/cargo-vendor/glob-0.3.2/Cargo.toml +0 -45
- data/ext/cargo-vendor/glob-0.3.2/Cargo.toml.orig +0 -19
- data/ext/cargo-vendor/glob-0.3.2/README.md +0 -37
- data/ext/cargo-vendor/glob-0.3.2/src/lib.rs +0 -1501
- data/ext/cargo-vendor/glob-0.3.2/tests/glob-std.rs +0 -474
- data/ext/cargo-vendor/indexmap-2.10.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/indexmap-2.10.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/indexmap-2.10.0/.github/workflows/ci.yml +0 -159
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.lock +0 -236
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml +0 -142
- data/ext/cargo-vendor/indexmap-2.10.0/Cargo.toml.orig +0 -61
- data/ext/cargo-vendor/indexmap-2.10.0/RELEASES.md +0 -563
- data/ext/cargo-vendor/indexmap-2.10.0/src/lib.rs +0 -288
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/core/entry.rs +0 -574
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/core.rs +0 -735
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/mutable.rs +0 -165
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/slice.rs +0 -751
- data/ext/cargo-vendor/indexmap-2.10.0/src/map/tests.rs +0 -1228
- data/ext/cargo-vendor/indexmap-2.10.0/src/map.rs +0 -1697
- data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/map.rs +0 -662
- data/ext/cargo-vendor/indexmap-2.10.0/src/rayon/set.rs +0 -755
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/mutable.rs +0 -86
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/slice.rs +0 -380
- data/ext/cargo-vendor/indexmap-2.10.0/src/set/tests.rs +0 -999
- data/ext/cargo-vendor/indexmap-2.10.0/src/set.rs +0 -1340
- data/ext/cargo-vendor/indexmap-2.10.0/tests/quick.rs +0 -800
- data/ext/cargo-vendor/rayon-1.10.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rayon-1.10.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/rayon-1.10.0/Cargo.toml +0 -61
- data/ext/cargo-vendor/rayon-1.10.0/Cargo.toml.orig +0 -39
- data/ext/cargo-vendor/rayon-1.10.0/FAQ.md +0 -227
- data/ext/cargo-vendor/rayon-1.10.0/README.md +0 -151
- data/ext/cargo-vendor/rayon-1.10.0/RELEASES.md +0 -909
- data/ext/cargo-vendor/rayon-1.10.0/src/array.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/binary_heap.rs +0 -120
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/btree_map.rs +0 -66
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/btree_set.rs +0 -52
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/hash_map.rs +0 -96
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/hash_set.rs +0 -80
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/linked_list.rs +0 -66
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/mod.rs +0 -84
- data/ext/cargo-vendor/rayon-1.10.0/src/collections/vec_deque.rs +0 -159
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/blocks.rs +0 -131
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/chain.rs +0 -267
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/chunks.rs +0 -224
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/cloned.rs +0 -223
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/collect/mod.rs +0 -116
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/collect/test.rs +0 -373
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/copied.rs +0 -223
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/empty.rs +0 -104
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/enumerate.rs +0 -133
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/filter.rs +0 -141
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/filter_map.rs +0 -142
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/find_first_last/mod.rs +0 -230
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/find_first_last/test.rs +0 -105
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flat_map.rs +0 -154
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flat_map_iter.rs +0 -147
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flatten.rs +0 -140
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/flatten_iter.rs +0 -132
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold.rs +0 -302
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold_chunks.rs +0 -236
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/fold_chunks_with.rs +0 -231
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/from_par_iter.rs +0 -310
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/inspect.rs +0 -257
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/interleave.rs +0 -335
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/interleave_shortest.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/intersperse.rs +0 -410
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/len.rs +0 -270
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/map.rs +0 -259
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/map_with.rs +0 -573
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/mod.rs +0 -3656
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/multizip.rs +0 -338
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/once.rs +0 -68
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/panic_fuse.rs +0 -342
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/par_bridge.rs +0 -159
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/plumbing/mod.rs +0 -483
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/positions.rs +0 -137
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/repeat.rs +0 -241
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/rev.rs +0 -123
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip.rs +0 -94
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip_any.rs +0 -144
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/skip_any_while.rs +0 -166
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/splitter.rs +0 -174
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/step_by.rs +0 -141
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take.rs +0 -85
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take_any.rs +0 -144
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/take_any_while.rs +0 -166
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/test.rs +0 -2333
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/try_fold.rs +0 -298
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/unzip.rs +0 -525
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/update.rs +0 -327
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/walk_tree.rs +0 -529
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/while_some.rs +0 -154
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/zip.rs +0 -158
- data/ext/cargo-vendor/rayon-1.10.0/src/iter/zip_eq.rs +0 -72
- data/ext/cargo-vendor/rayon-1.10.0/src/lib.rs +0 -160
- data/ext/cargo-vendor/rayon-1.10.0/src/math.rs +0 -54
- data/ext/cargo-vendor/rayon-1.10.0/src/option.rs +0 -203
- data/ext/cargo-vendor/rayon-1.10.0/src/range.rs +0 -454
- data/ext/cargo-vendor/rayon-1.10.0/src/range_inclusive.rs +0 -381
- data/ext/cargo-vendor/rayon-1.10.0/src/result.rs +0 -132
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/chunk_by.rs +0 -244
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/chunks.rs +0 -388
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/mergesort.rs +0 -755
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/mod.rs +0 -1226
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/quicksort.rs +0 -902
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/rchunks.rs +0 -386
- data/ext/cargo-vendor/rayon-1.10.0/src/slice/test.rs +0 -216
- data/ext/cargo-vendor/rayon-1.10.0/src/str.rs +0 -1010
- data/ext/cargo-vendor/rayon-1.10.0/src/vec.rs +0 -283
- data/ext/cargo-vendor/rayon-1.10.0/tests/clones.rs +0 -222
- data/ext/cargo-vendor/rayon-1.10.0/tests/collect.rs +0 -113
- data/ext/cargo-vendor/rayon-1.10.0/tests/debug.rs +0 -233
- data/ext/cargo-vendor/rayon-1.10.0/tests/named-threads.rs +0 -25
- data/ext/cargo-vendor/rayon-1.10.0/tests/producer_split_at.rs +0 -391
- data/ext/cargo-vendor/rayon-1.10.0/tests/sort-panic-safe.rs +0 -167
- data/ext/cargo-vendor/rayon-1.10.0/tests/str.rs +0 -119
- data/ext/cargo-vendor/rayon-core-1.12.1/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/rayon-core-1.12.1/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/rayon-core-1.12.1/Cargo.toml +0 -88
- data/ext/cargo-vendor/rayon-core-1.12.1/Cargo.toml.orig +0 -68
- data/ext/cargo-vendor/rayon-core-1.12.1/README.md +0 -11
- data/ext/cargo-vendor/rayon-core-1.12.1/src/broadcast/mod.rs +0 -150
- data/ext/cargo-vendor/rayon-core-1.12.1/src/join/mod.rs +0 -188
- data/ext/cargo-vendor/rayon-core-1.12.1/src/join/test.rs +0 -151
- data/ext/cargo-vendor/rayon-core-1.12.1/src/latch.rs +0 -461
- data/ext/cargo-vendor/rayon-core-1.12.1/src/lib.rs +0 -875
- data/ext/cargo-vendor/rayon-core-1.12.1/src/registry.rs +0 -996
- data/ext/cargo-vendor/rayon-core-1.12.1/src/scope/mod.rs +0 -769
- data/ext/cargo-vendor/rayon-core-1.12.1/src/scope/test.rs +0 -619
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/README.md +0 -219
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/counters.rs +0 -277
- data/ext/cargo-vendor/rayon-core-1.12.1/src/sleep/mod.rs +0 -325
- data/ext/cargo-vendor/rayon-core-1.12.1/src/spawn/mod.rs +0 -163
- data/ext/cargo-vendor/rayon-core-1.12.1/src/spawn/test.rs +0 -255
- data/ext/cargo-vendor/rayon-core-1.12.1/src/test.rs +0 -200
- data/ext/cargo-vendor/rayon-core-1.12.1/src/thread_pool/mod.rs +0 -508
- data/ext/cargo-vendor/rayon-core-1.12.1/src/thread_pool/test.rs +0 -418
- data/ext/cargo-vendor/rayon-core-1.12.1/tests/use_current_thread.rs +0 -57
- data/ext/cargo-vendor/serde_json-1.0.142/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/serde_json-1.0.142/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/serde_json-1.0.142/.github/workflows/ci.yml +0 -158
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.lock +0 -419
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml +0 -157
- data/ext/cargo-vendor/serde_json-1.0.142/Cargo.toml.orig +0 -91
- data/ext/cargo-vendor/serde_json-1.0.142/src/lib.rs +0 -438
- data/ext/cargo-vendor/serde_json-1.0.142/src/map.rs +0 -1174
- data/ext/cargo-vendor/serde_json-1.0.142/src/ser.rs +0 -2285
- data/ext/cargo-vendor/serde_json-1.0.142/src/value/de.rs +0 -1500
- data/ext/cargo-vendor/tempfile-3.20.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/tempfile-3.20.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/tempfile-3.20.0/.github/workflows/ci.yml +0 -107
- data/ext/cargo-vendor/tempfile-3.20.0/CHANGELOG.md +0 -360
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.lock +0 -183
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml +0 -98
- data/ext/cargo-vendor/tempfile-3.20.0/Cargo.toml.orig +0 -47
- data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/winapi-util-0.1.9/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +0 -53
- data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml.orig +0 -25
- data/ext/cargo-vendor/windows-sys-0.59.0/.cargo-checksum.json +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/.cargo_vcs_info.json +0 -6
- data/ext/cargo-vendor/windows-sys-0.59.0/Cargo.toml +0 -298
- data/ext/cargo-vendor/windows-sys-0.59.0/Cargo.toml.orig +0 -274
- data/ext/cargo-vendor/windows-sys-0.59.0/license-apache-2.0 +0 -201
- data/ext/cargo-vendor/windows-sys-0.59.0/license-mit +0 -21
- data/ext/cargo-vendor/windows-sys-0.59.0/readme.md +0 -87
- data/ext/cargo-vendor/windows-sys-0.59.0/rustfmt.toml +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/Bluetooth/mod.rs +0 -32
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/HumanInterfaceDevice/mod.rs +0 -39
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Devices/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Foundation/mod.rs +0 -1317
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Graphics/Direct3D/mod.rs +0 -9170
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Graphics/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/Ndis/mod.rs +0 -3892
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/WindowsFilteringPlatform/mod.rs +0 -269
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/NetworkManagement/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/FileSystem/Minifilters/mod.rs +0 -1392
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/FileSystem/mod.rs +0 -4503
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/Storage/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/IO/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Memory/mod.rs +0 -11
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/OfflineRegistry/mod.rs +0 -28
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Registry/mod.rs +0 -180
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/SystemInformation/mod.rs +0 -18
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/SystemServices/mod.rs +0 -13663
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/Threading/mod.rs +0 -155
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/System/mod.rs +0 -14
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Wdk/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/HtmlHelp/mod.rs +0 -447
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/RightsManagement/mod.rs +0 -237
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Data/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/AllJoyn/mod.rs +0 -1273
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/BiometricFramework/mod.rs +0 -1481
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Bluetooth/mod.rs +0 -1419
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Communication/mod.rs +0 -312
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/DeviceAndDriverInstallation/mod.rs +0 -3969
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/DeviceQuery/mod.rs +0 -141
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Display/mod.rs +0 -3141
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Enumeration/Pnp/mod.rs +0 -96
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Enumeration/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Fax/mod.rs +0 -1203
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/HumanInterfaceDevice/mod.rs +0 -3684
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/PortableDevices/mod.rs +0 -1999
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Properties/mod.rs +0 -261
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Pwm/mod.rs +0 -73
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Sensors/mod.rs +0 -687
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/SerialCommunication/mod.rs +0 -230
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Tapi/mod.rs +0 -3217
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/Usb/mod.rs +0 -2694
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/WebServicesOnDevices/mod.rs +0 -660
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Devices/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Foundation/mod.rs +0 -10318
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Gaming/mod.rs +0 -99
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Globalization/mod.rs +0 -5135
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Dwm/mod.rs +0 -232
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Gdi/mod.rs +0 -3857
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/GdiPlus/mod.rs +0 -2307
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Hlsl/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/OpenGL/mod.rs +0 -1276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Printing/PrintTicket/mod.rs +0 -28
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/Printing/mod.rs +0 -4147
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Graphics/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Management/MobileDeviceManagementRegistration/mod.rs +0 -101
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Management/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Audio/mod.rs +0 -2052
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/DxMediaObjects/mod.rs +0 -94
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/KernelStreaming/mod.rs +0 -5281
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Multimedia/mod.rs +0 -6442
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/Streaming/mod.rs +0 -117
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/WindowsMediaFormat/mod.rs +0 -910
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Media/mod.rs +0 -187
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Dhcp/mod.rs +0 -1926
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Dns/mod.rs +0 -1564
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/InternetConnectionWizard/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/IpHelper/mod.rs +0 -3004
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Multicast/mod.rs +0 -59
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Ndis/mod.rs +0 -3334
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetBios/mod.rs +0 -211
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetManagement/mod.rs +0 -4814
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetShell/mod.rs +0 -160
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/NetworkDiagnosticsFramework/mod.rs +0 -222
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/P2P/mod.rs +0 -1196
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/QoS/mod.rs +0 -1447
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Rras/mod.rs +0 -3212
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/Snmp/mod.rs +0 -381
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WNet/mod.rs +0 -363
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WebDav/mod.rs +0 -47
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WiFi/mod.rs +0 -4311
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsConnectionManager/mod.rs +0 -119
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsFilteringPlatform/mod.rs +0 -3818
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsFirewall/mod.rs +0 -281
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/WindowsNetworkVirtualization/mod.rs +0 -104
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/NetworkManagement/mod.rs +0 -42
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/ActiveDirectory/mod.rs +0 -2383
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/Clustering/mod.rs +0 -3900
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/HttpServer/mod.rs +0 -1239
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/Ldap/mod.rs +0 -817
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WebSocket/mod.rs +0 -88
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinHttp/mod.rs +0 -1109
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinInet/mod.rs +0 -2168
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WinSock/mod.rs +0 -4786
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/WindowsWebServices/mod.rs +0 -3480
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Networking/mod.rs +0 -18
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/AppLocker/mod.rs +0 -172
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authentication/Identity/mod.rs +0 -5701
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authentication/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Authorization/mod.rs +0 -984
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Credentials/mod.rs +0 -797
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Catalog/mod.rs +0 -151
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Certificates/mod.rs +0 -2315
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/Sip/mod.rs +0 -155
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/UI/mod.rs +0 -545
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Cryptography/mod.rs +0 -8528
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/DiagnosticDataQuery/mod.rs +0 -156
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/DirectoryServices/mod.rs +0 -19
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/EnterpriseData/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/ExtensibleAuthenticationProtocol/mod.rs +0 -998
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/Isolation/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/LicenseProtection/mod.rs +0 -8
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/NetworkAccessProtection/mod.rs +0 -149
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/WinTrust/mod.rs +0 -863
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/WinWlx/mod.rs +0 -335
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Security/mod.rs +0 -1156
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Cabinets/mod.rs +0 -209
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/CloudFilters/mod.rs +0 -666
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Compression/mod.rs +0 -36
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/DistributedFileSystem/mod.rs +0 -342
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/FileHistory/mod.rs +0 -97
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/FileSystem/mod.rs +0 -3699
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Imapi/mod.rs +0 -697
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/IndexServer/mod.rs +0 -279
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/InstallableFileSystems/mod.rs +0 -331
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/IscsiDisc/mod.rs +0 -1291
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Jet/mod.rs +0 -2593
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Nvme/mod.rs +0 -3428
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/OfflineFiles/mod.rs +0 -276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/OperationRecorder/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Packaging/Appx/mod.rs +0 -377
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Packaging/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/ProjectedFileSystem/mod.rs +0 -246
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/StructuredStorage/mod.rs +0 -3
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Vhd/mod.rs +0 -720
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/Xps/mod.rs +0 -415
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Storage/mod.rs +0 -38
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/AddressBook/mod.rs +0 -938
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Antimalware/mod.rs +0 -112
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ApplicationInstallationAndServicing/mod.rs +0 -2145
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ApplicationVerifier/mod.rs +0 -58
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ClrHosting/mod.rs +0 -322
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/Marshal/mod.rs +0 -172
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/StructuredStorage/mod.rs +0 -655
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/Urlmon/mod.rs +0 -905
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Com/mod.rs +0 -1227
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ComponentServices/mod.rs +0 -574
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Console/mod.rs +0 -373
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/CorrelationVector/mod.rs +0 -15
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DataExchange/mod.rs +0 -428
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DeploymentServices/mod.rs +0 -565
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DeveloperLicensing/mod.rs +0 -3
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Ceip/mod.rs +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Debug/Extensions/mod.rs +0 -3710
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Debug/mod.rs +0 -5557
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/Etw/mod.rs +0 -2042
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/ProcessSnapshotting/mod.rs +0 -293
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/ToolHelp/mod.rs +0 -119
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/TraceLogging/mod.rs +0 -105
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Diagnostics/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/DistributedTransactionCoordinator/mod.rs +0 -308
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Environment/mod.rs +0 -202
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ErrorReporting/mod.rs +0 -393
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventCollector/mod.rs +0 -117
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventLog/mod.rs +0 -379
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/EventNotificationService/mod.rs +0 -35
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/GroupPolicy/mod.rs +0 -424
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostCompute/mod.rs +0 -1
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostComputeNetwork/mod.rs +0 -86
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/HostComputeSystem/mod.rs +0 -171
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Hypervisor/mod.rs +0 -1983
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/IO/mod.rs +0 -53
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Iis/mod.rs +0 -1411
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Ioctl/mod.rs +0 -6216
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/JobObjects/mod.rs +0 -434
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Js/mod.rs +0 -154
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Kernel/mod.rs +0 -295
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/LibraryLoader/mod.rs +0 -106
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Mailslots/mod.rs +0 -6
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Mapi/mod.rs +0 -150
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Memory/NonVolatile/mod.rs +0 -20
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Memory/mod.rs +0 -464
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/MessageQueuing/mod.rs +0 -712
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/MixedReality/mod.rs +0 -14
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Ole/mod.rs +0 -2599
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/PasswordManagement/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Performance/HardwareCounterProfiling/mod.rs +0 -27
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Performance/mod.rs +0 -1091
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Pipes/mod.rs +0 -42
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Power/mod.rs +0 -1413
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/ProcessStatus/mod.rs +0 -200
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Recovery/mod.rs +0 -15
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Registry/mod.rs +0 -1114
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RemoteDesktop/mod.rs +0 -1771
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RemoteManagement/mod.rs +0 -935
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/RestartManager/mod.rs +0 -86
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Restore/mod.rs +0 -66
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Rpc/mod.rs +0 -2668
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Search/Common/mod.rs +0 -21
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Search/mod.rs +0 -5993
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SecurityCenter/mod.rs +0 -41
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Services/mod.rs +0 -587
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SetupAndMigration/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Shutdown/mod.rs +0 -111
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/StationsAndDesktops/mod.rs +0 -99
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SubsystemForLinux/mod.rs +0 -12
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SystemInformation/mod.rs +0 -751
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/SystemServices/mod.rs +0 -4541
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Threading/mod.rs +0 -1148
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Time/mod.rs +0 -50
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/TpmBaseServices/mod.rs +0 -89
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/UserAccessLogging/mod.rs +0 -17
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Variant/mod.rs +0 -321
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/VirtualDosMachines/mod.rs +0 -297
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/WindowsProgramming/mod.rs +0 -1633
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/Wmi/mod.rs +0 -2435
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/System/mod.rs +0 -132
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Accessibility/mod.rs +0 -1788
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/ColorSystem/mod.rs +0 -702
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Controls/Dialogs/mod.rs +0 -1128
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Controls/mod.rs +0 -7276
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/HiDpi/mod.rs +0 -66
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Ime/mod.rs +0 -1394
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/KeyboardAndMouse/mod.rs +0 -765
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Pointer/mod.rs +0 -168
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/Touch/mod.rs +0 -89
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/XboxController/mod.rs +0 -151
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Input/mod.rs +0 -182
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/InteractionContext/mod.rs +0 -230
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Magnification/mod.rs +0 -52
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/Common/mod.rs +0 -104
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/PropertiesSystem/mod.rs +0 -322
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/Shell/mod.rs +0 -6704
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/TabletPC/mod.rs +0 -1537
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/TextServices/mod.rs +0 -794
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/WindowsAndMessaging/mod.rs +0 -3760
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/UI/mod.rs +0 -22
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Web/InternetExplorer/mod.rs +0 -628
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/Web/mod.rs +0 -2
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/Win32/mod.rs +0 -30
- data/ext/cargo-vendor/windows-sys-0.59.0/src/Windows/mod.rs +0 -4
- data/ext/cargo-vendor/windows-sys-0.59.0/src/core/literals.rs +0 -114
- data/ext/cargo-vendor/windows-sys-0.59.0/src/core/mod.rs +0 -33
- data/ext/cargo-vendor/windows-sys-0.59.0/src/includes/Win32/UI/WindowsAndMessaging/WindowLong.rs +0 -8
- data/ext/cargo-vendor/windows-sys-0.59.0/src/lib.rs +0 -17
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/audit.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/ci.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.github/workflows/dotslash-config.json +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/.rusty-hook.toml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/dev/run_benchmarks_for_file.sh +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/cache/mod.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/cache/noop.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/file_owner_finder.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/directory_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/escaper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_gem_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_glob_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/src/ownership/mapper/team_yml_mapper.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/cache_test.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/.github/CODEOWNERS +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/code_ownership.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/teams/payments.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/config/teams/payroll.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/gems/payroll_calculator/calculator.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/bank_account.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/blockchain.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/models/payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/payments/nacha.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/services/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/services/multi_owned.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/app/unowned.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/invalid_project/ruby/packages/payroll_flow/package.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/.github/CODEOWNERS +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/deep/nesting/nestdir/deep_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/consumers/one_owner.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/exciting/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/app/services/exciting/some_other_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/config/teams/bar.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/multiple-directory-owners/config/teams/foo.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/.ignore +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/payments.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/payroll.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/config/teams/ux.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/gems/payroll_calculator/calculator.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/gems/pets/dog.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/index.tsx +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/PayrollFlow/package.json +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/(special)/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/(special)/pay.ts +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/javascript/packages/items/item.ts +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/models/bank_account.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/foo/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/foo/ownedby_payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payments/nacha.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payroll/.codeowner +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/app/payroll/payroll.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/ignored_files/git_ignored.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/ruby/packages/payroll_flow/package.yml +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/fixtures/valid_project/should_be_ignored/an_ignored_file.rb +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7/tmp/.gitkeep → codeowners-0.2.17/tests/fixtures/valid_project_with_overrides/packs/games/app/services/stats.rb} +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/git_stage_test.rs +0 -0
- /data/ext/cargo-vendor/{codeowners-0.2.7 → codeowners-0.2.17}/tests/invalid_project_structure_test.rs +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/.github/dependabot.yml +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/.github/workflows/publish.yml +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{glob-0.3.2 → glob-0.3.3}/triagebot.toml +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/.rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/README.md +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/benches/bench.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/benches/faststring.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/arbitrary.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/borsh.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/core/extract.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/core/raw_entry_v1.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/iter.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/map/serde_seq.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/rayon/mod.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/serde.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/set/iter.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/equivalent_trait.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/macros_full_path.rs +0 -0
- /data/ext/cargo-vendor/{indexmap-2.10.0 → indexmap-2.11.0}/tests/tests.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cannot_collect_filtermap_data.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cannot_zip_filtered_data.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/cell_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/mod.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/must_use.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/no_send_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/compile_fail/rc_par_iter.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/delegate.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/collect/consumer.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/extend.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/find.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/for_each.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/noop.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/plumbing/README.md +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/product.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/reduce.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/sum.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/try_reduce.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/iter/try_reduce_with.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/par_either.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/prelude.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/private.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/split_producer.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/src/string.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/chars.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/cross-pool.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/drain_vec.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/intersperse.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/issue671-unzip.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/issue671.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/iter_panic.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/octillion.rs +0 -0
- /data/ext/cargo-vendor/{rayon-1.10.0 → rayon-1.11.0}/tests/par_bridge_recursion.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/build.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/broadcast/test.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/mod.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race1.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race2.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/quicksort_race3.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/rc_return.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/rc_upvar.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/compile_fail/scope_join_bad.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/job.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/private.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/src/unwind.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/double_init_fail.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/init_zero_threads.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/scope_join.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/scoped_threadpool.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/simple_panic.rs +0 -0
- /data/ext/cargo-vendor/{rayon-core-1.12.1 → rayon-core-1.13.0}/tests/stack_overflow_crash.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/CONTRIBUTING.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/README.md +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/build.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/de.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/io/core.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/io/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/iter.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/bhcomp.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/bignum.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/cached.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/cached_float80.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/digit.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/errors.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers32.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/large_powers64.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/shift.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/lexical/small_powers.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/macros.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/number.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/raw.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/read.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/from.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/index.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/partial_eq.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/src/value/ser.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/compiletest.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/debug.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/algorithm.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/exponent.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/float.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/math.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/num.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/parse.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical/rounding.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/lexical.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/macros/mod.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/map.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue1004.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue520.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue795.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue845.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression/issue953.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/regression.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/stream.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/test.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_comma.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_value.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/missing_value.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/not_found.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/not_found.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_expr.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_expr.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_key.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/parse_key.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_array_element.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_array_element.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_map_entry.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_after_map_entry.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_colon.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_colon.stderr +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_comma.rs +0 -0
- /data/ext/cargo-vendor/{serde_json-1.0.142 → serde_json-1.0.143}/tests/ui/unexpected_comma.stderr +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/.github/dependabot.yml +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/LICENSE-APACHE +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/README.md +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/deny.toml +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/any.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/imp/unix.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/dir/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/env.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/error.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/other.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/unix.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/imp/windows.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/file/mod.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/spooled.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/src/util.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/env.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/namedtempfile.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/spooled.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/tempdir.rs +0 -0
- /data/ext/cargo-vendor/{tempfile-3.20.0 → tempfile-3.21.0}/tests/tempfile.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/.github/workflows/ci.yml +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/COPYING +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/LICENSE-MIT +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/README.md +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/UNLICENSE +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/rustfmt.toml +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/console.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/file.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/lib.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/sysinfo.rs +0 -0
- /data/ext/cargo-vendor/{winapi-util-0.1.9 → winapi-util-0.1.10}/src/win.rs +0 -0
@@ -1,3818 +0,0 @@
|
|
1
|
-
#[cfg(feature = "Win32_Security")]
|
2
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutAdd0(enginehandle : super::super::Foundation:: HANDLE, callout : *const FWPM_CALLOUT0, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u32) -> u32);
|
3
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_CALLOUT_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
4
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u32) -> u32);
|
5
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
6
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
7
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_CALLOUT0, numentriesreturned : *mut u32) -> u32);
|
8
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u32, callout : *mut *mut FWPM_CALLOUT0) -> u32);
|
9
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, callout : *mut *mut FWPM_CALLOUT0) -> u32);
|
10
|
-
#[cfg(feature = "Win32_Security")]
|
11
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
12
|
-
#[cfg(feature = "Win32_Security")]
|
13
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
14
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_CALLOUT_SUBSCRIPTION0, callback : FWPM_CALLOUT_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
15
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_CALLOUT_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
16
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmCalloutUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32);
|
17
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_CONNECTION_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
18
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
19
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_CONNECTION0, numentriesreturned : *mut u32) -> u32);
|
20
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, connection : *mut *mut FWPM_CONNECTION0) -> u32);
|
21
|
-
#[cfg(feature = "Win32_Security")]
|
22
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
23
|
-
#[cfg(feature = "Win32_Security")]
|
24
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
25
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_CONNECTION_SUBSCRIPTION0, callback : FWPM_CONNECTION_CALLBACK0, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
26
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmConnectionUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32);
|
27
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmDynamicKeywordSubscribe0(flags : u32, callback : FWPM_DYNAMIC_KEYWORD_CALLBACK0, context : *const core::ffi::c_void, subscriptionhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
28
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmDynamicKeywordUnsubscribe0(subscriptionhandle : super::super::Foundation:: HANDLE) -> u32);
|
29
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineClose0(enginehandle : super::super::Foundation:: HANDLE) -> u32);
|
30
|
-
#[cfg(feature = "Win32_Security")]
|
31
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetOption0(enginehandle : super::super::Foundation:: HANDLE, option : FWPM_ENGINE_OPTION, value : *mut *mut FWP_VALUE0) -> u32);
|
32
|
-
#[cfg(feature = "Win32_Security")]
|
33
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
34
|
-
#[cfg(all(feature = "Win32_Security", feature = "Win32_System_Rpc"))]
|
35
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineOpen0(servername : windows_sys::core::PCWSTR, authnservice : u32, authidentity : *const super::super::System::Rpc:: SEC_WINNT_AUTH_IDENTITY_W, session : *const FWPM_SESSION0, enginehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
36
|
-
#[cfg(feature = "Win32_Security")]
|
37
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineSetOption0(enginehandle : super::super::Foundation:: HANDLE, option : FWPM_ENGINE_OPTION, newvalue : *const FWP_VALUE0) -> u32);
|
38
|
-
#[cfg(feature = "Win32_Security")]
|
39
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmEngineSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
40
|
-
#[cfg(feature = "Win32_Security")]
|
41
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterAdd0(enginehandle : super::super::Foundation:: HANDLE, filter : *const FWPM_FILTER0, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u64) -> u32);
|
42
|
-
#[cfg(feature = "Win32_Security")]
|
43
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_FILTER_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
44
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32);
|
45
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
46
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
47
|
-
#[cfg(feature = "Win32_Security")]
|
48
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_FILTER0, numentriesreturned : *mut u32) -> u32);
|
49
|
-
#[cfg(feature = "Win32_Security")]
|
50
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, filter : *mut *mut FWPM_FILTER0) -> u32);
|
51
|
-
#[cfg(feature = "Win32_Security")]
|
52
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, filter : *mut *mut FWPM_FILTER0) -> u32);
|
53
|
-
#[cfg(feature = "Win32_Security")]
|
54
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
55
|
-
#[cfg(feature = "Win32_Security")]
|
56
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
57
|
-
#[cfg(feature = "Win32_Security")]
|
58
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_FILTER_SUBSCRIPTION0, callback : FWPM_FILTER_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
59
|
-
#[cfg(feature = "Win32_Security")]
|
60
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_FILTER_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
61
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFilterUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32);
|
62
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmFreeMemory0(p : *mut *mut core::ffi::c_void));
|
63
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmGetAppIdFromFileName0(filename : windows_sys::core::PCWSTR, appid : *mut *mut FWP_BYTE_BLOB) -> u32);
|
64
|
-
#[cfg(feature = "Win32_Security")]
|
65
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmIPsecTunnelAdd0(enginehandle : super::super::Foundation:: HANDLE, flags : u32, mainmodepolicy : *const FWPM_PROVIDER_CONTEXT0, tunnelpolicy : *const FWPM_PROVIDER_CONTEXT0, numfilterconditions : u32, filterconditions : *const FWPM_FILTER_CONDITION0, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
66
|
-
#[cfg(feature = "Win32_Security")]
|
67
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmIPsecTunnelAdd1(enginehandle : super::super::Foundation:: HANDLE, flags : u32, mainmodepolicy : *const FWPM_PROVIDER_CONTEXT1, tunnelpolicy : *const FWPM_PROVIDER_CONTEXT1, numfilterconditions : u32, filterconditions : *const FWPM_FILTER_CONDITION0, keymodkey : *const windows_sys::core::GUID, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
68
|
-
#[cfg(feature = "Win32_Security")]
|
69
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmIPsecTunnelAdd2(enginehandle : super::super::Foundation:: HANDLE, flags : u32, mainmodepolicy : *const FWPM_PROVIDER_CONTEXT2, tunnelpolicy : *const FWPM_PROVIDER_CONTEXT2, numfilterconditions : u32, filterconditions : *const FWPM_FILTER_CONDITION0, keymodkey : *const windows_sys::core::GUID, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
70
|
-
#[cfg(feature = "Win32_Security")]
|
71
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmIPsecTunnelAdd3(enginehandle : super::super::Foundation:: HANDLE, flags : u32, mainmodepolicy : *const FWPM_PROVIDER_CONTEXT3, tunnelpolicy : *const FWPM_PROVIDER_CONTEXT3, numfilterconditions : u32, filterconditions : *const FWPM_FILTER_CONDITION0, keymodkey : *const windows_sys::core::GUID, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
72
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmIPsecTunnelDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
73
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_LAYER_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
74
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
75
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_LAYER0, numentriesreturned : *mut u32) -> u32);
|
76
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u16, layer : *mut *mut FWPM_LAYER0) -> u32);
|
77
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, layer : *mut *mut FWPM_LAYER0) -> u32);
|
78
|
-
#[cfg(feature = "Win32_Security")]
|
79
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
80
|
-
#[cfg(feature = "Win32_Security")]
|
81
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmLayerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
82
|
-
#[cfg(feature = "Win32_Security")]
|
83
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_NET_EVENT_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
84
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
85
|
-
#[cfg(feature = "Win32_Security")]
|
86
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT0, numentriesreturned : *mut u32) -> u32);
|
87
|
-
#[cfg(feature = "Win32_Security")]
|
88
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum1(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT1, numentriesreturned : *mut u32) -> u32);
|
89
|
-
#[cfg(feature = "Win32_Security")]
|
90
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum2(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT2, numentriesreturned : *mut u32) -> u32);
|
91
|
-
#[cfg(feature = "Win32_Security")]
|
92
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum3(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT3, numentriesreturned : *mut u32) -> u32);
|
93
|
-
#[cfg(feature = "Win32_Security")]
|
94
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum4(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT4, numentriesreturned : *mut u32) -> u32);
|
95
|
-
#[cfg(feature = "Win32_Security")]
|
96
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventEnum5(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_NET_EVENT5, numentriesreturned : *mut u32) -> u32);
|
97
|
-
#[cfg(feature = "Win32_Security")]
|
98
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_NET_EVENT_SUBSCRIPTION0, callback : FWPM_NET_EVENT_CALLBACK0, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
99
|
-
#[cfg(feature = "Win32_Security")]
|
100
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe1(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_NET_EVENT_SUBSCRIPTION0, callback : FWPM_NET_EVENT_CALLBACK1, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
101
|
-
#[cfg(feature = "Win32_Security")]
|
102
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe2(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_NET_EVENT_SUBSCRIPTION0, callback : FWPM_NET_EVENT_CALLBACK2, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
103
|
-
#[cfg(feature = "Win32_Security")]
|
104
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe3(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_NET_EVENT_SUBSCRIPTION0, callback : FWPM_NET_EVENT_CALLBACK3, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
105
|
-
#[cfg(feature = "Win32_Security")]
|
106
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscribe4(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_NET_EVENT_SUBSCRIPTION0, callback : FWPM_NET_EVENT_CALLBACK4, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
107
|
-
#[cfg(feature = "Win32_Security")]
|
108
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_NET_EVENT_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
109
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32);
|
110
|
-
#[cfg(feature = "Win32_Security")]
|
111
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
112
|
-
#[cfg(feature = "Win32_Security")]
|
113
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmNetEventsSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
114
|
-
#[cfg(feature = "Win32_Security")]
|
115
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderAdd0(enginehandle : super::super::Foundation:: HANDLE, provider : *const FWPM_PROVIDER0, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
116
|
-
#[cfg(feature = "Win32_Security")]
|
117
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextAdd0(enginehandle : super::super::Foundation:: HANDLE, providercontext : *const FWPM_PROVIDER_CONTEXT0, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u64) -> u32);
|
118
|
-
#[cfg(feature = "Win32_Security")]
|
119
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextAdd1(enginehandle : super::super::Foundation:: HANDLE, providercontext : *const FWPM_PROVIDER_CONTEXT1, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u64) -> u32);
|
120
|
-
#[cfg(feature = "Win32_Security")]
|
121
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextAdd2(enginehandle : super::super::Foundation:: HANDLE, providercontext : *const FWPM_PROVIDER_CONTEXT2, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u64) -> u32);
|
122
|
-
#[cfg(feature = "Win32_Security")]
|
123
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextAdd3(enginehandle : super::super::Foundation:: HANDLE, providercontext : *const FWPM_PROVIDER_CONTEXT3, sd : super::super::Security:: PSECURITY_DESCRIPTOR, id : *mut u64) -> u32);
|
124
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
125
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32);
|
126
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
127
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
128
|
-
#[cfg(feature = "Win32_Security")]
|
129
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER_CONTEXT0, numentriesreturned : *mut u32) -> u32);
|
130
|
-
#[cfg(feature = "Win32_Security")]
|
131
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextEnum1(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER_CONTEXT1, numentriesreturned : *mut u32) -> u32);
|
132
|
-
#[cfg(feature = "Win32_Security")]
|
133
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextEnum2(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER_CONTEXT2, numentriesreturned : *mut u32) -> u32);
|
134
|
-
#[cfg(feature = "Win32_Security")]
|
135
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextEnum3(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER_CONTEXT3, numentriesreturned : *mut u32) -> u32);
|
136
|
-
#[cfg(feature = "Win32_Security")]
|
137
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT0) -> u32);
|
138
|
-
#[cfg(feature = "Win32_Security")]
|
139
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetById1(enginehandle : super::super::Foundation:: HANDLE, id : u64, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT1) -> u32);
|
140
|
-
#[cfg(feature = "Win32_Security")]
|
141
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetById2(enginehandle : super::super::Foundation:: HANDLE, id : u64, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT2) -> u32);
|
142
|
-
#[cfg(feature = "Win32_Security")]
|
143
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetById3(enginehandle : super::super::Foundation:: HANDLE, id : u64, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT3) -> u32);
|
144
|
-
#[cfg(feature = "Win32_Security")]
|
145
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT0) -> u32);
|
146
|
-
#[cfg(feature = "Win32_Security")]
|
147
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey1(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT1) -> u32);
|
148
|
-
#[cfg(feature = "Win32_Security")]
|
149
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey2(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT2) -> u32);
|
150
|
-
#[cfg(feature = "Win32_Security")]
|
151
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetByKey3(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, providercontext : *mut *mut FWPM_PROVIDER_CONTEXT3) -> u32);
|
152
|
-
#[cfg(feature = "Win32_Security")]
|
153
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
154
|
-
#[cfg(feature = "Win32_Security")]
|
155
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
156
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0, callback : FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
157
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
158
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderContextUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32);
|
159
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_PROVIDER_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
160
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
161
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
162
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_PROVIDER0, numentriesreturned : *mut u32) -> u32);
|
163
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, provider : *mut *mut FWPM_PROVIDER0) -> u32);
|
164
|
-
#[cfg(feature = "Win32_Security")]
|
165
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
166
|
-
#[cfg(feature = "Win32_Security")]
|
167
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
168
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_PROVIDER_SUBSCRIPTION0, callback : FWPM_PROVIDER_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
169
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_PROVIDER_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
170
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmProviderUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32);
|
171
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSessionCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_SESSION_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
172
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSessionDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
173
|
-
#[cfg(feature = "Win32_Security")]
|
174
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSessionEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_SESSION0, numentriesreturned : *mut u32) -> u32);
|
175
|
-
#[cfg(feature = "Win32_Security")]
|
176
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerAdd0(enginehandle : super::super::Foundation:: HANDLE, sublayer : *const FWPM_SUBLAYER0, sd : super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
177
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const FWPM_SUBLAYER_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
178
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerDeleteByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID) -> u32);
|
179
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
180
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut FWPM_SUBLAYER0, numentriesreturned : *mut u32) -> u32);
|
181
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, sublayer : *mut *mut FWPM_SUBLAYER0) -> u32);
|
182
|
-
#[cfg(feature = "Win32_Security")]
|
183
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
184
|
-
#[cfg(feature = "Win32_Security")]
|
185
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, key : *const windows_sys::core::GUID, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
186
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_SUBLAYER_SUBSCRIPTION0, callback : FWPM_SUBLAYER_CHANGE_CALLBACK0, context : *const core::ffi::c_void, changehandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
187
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut FWPM_SUBLAYER_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
188
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSubLayerUnsubscribeChanges0(enginehandle : super::super::Foundation:: HANDLE, changehandle : super::super::Foundation:: HANDLE) -> u32);
|
189
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSystemPortsGet0(enginehandle : super::super::Foundation:: HANDLE, sysports : *mut *mut FWPM_SYSTEM_PORTS0) -> u32);
|
190
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSystemPortsSubscribe0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, callback : FWPM_SYSTEM_PORTS_CALLBACK0, context : *const core::ffi::c_void, sysportshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
191
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmSystemPortsUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, sysportshandle : super::super::Foundation:: HANDLE) -> u32);
|
192
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionAbort0(enginehandle : super::super::Foundation:: HANDLE) -> u32);
|
193
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionBegin0(enginehandle : super::super::Foundation:: HANDLE, flags : u32) -> u32);
|
194
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmTransactionCommit0(enginehandle : super::super::Foundation:: HANDLE) -> u32);
|
195
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const FWPM_VSWITCH_EVENT_SUBSCRIPTION0, callback : FWPM_VSWITCH_EVENT_CALLBACK0, context : *const core::ffi::c_void, subscriptionhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
196
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscriptionhandle : super::super::Foundation:: HANDLE) -> u32);
|
197
|
-
#[cfg(feature = "Win32_Security")]
|
198
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
199
|
-
#[cfg(feature = "Win32_Security")]
|
200
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn FwpmvSwitchEventsSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
201
|
-
#[cfg(feature = "Win32_Security")]
|
202
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
203
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospGetStatistics0(enginehandle : super::super::Foundation:: HANDLE, idpstatistics : *mut IPSEC_DOSP_STATISTICS0) -> u32);
|
204
|
-
#[cfg(feature = "Win32_Security")]
|
205
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
206
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospStateCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IPSEC_DOSP_STATE_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
207
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospStateDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
208
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecDospStateEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IPSEC_DOSP_STATE0, numentries : *mut u32) -> u32);
|
209
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecGetStatistics0(enginehandle : super::super::Foundation:: HANDLE, ipsecstatistics : *mut IPSEC_STATISTICS0) -> u32);
|
210
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecGetStatistics1(enginehandle : super::super::Foundation:: HANDLE, ipsecstatistics : *mut IPSEC_STATISTICS1) -> u32);
|
211
|
-
#[cfg(feature = "Win32_Security")]
|
212
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerAddAndRegister0(enginehandle : super::super::Foundation:: HANDLE, keymanager : *const IPSEC_KEY_MANAGER0, keymanagercallbacks : *const IPSEC_KEY_MANAGER_CALLBACKS0, keymgmthandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
213
|
-
#[cfg(feature = "Win32_Security")]
|
214
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerGetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
215
|
-
#[cfg(feature = "Win32_Security")]
|
216
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerSetSecurityInfoByKey0(enginehandle : super::super::Foundation:: HANDLE, reserved : *const core::ffi::c_void, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
217
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagerUnregisterAndDelete0(enginehandle : super::super::Foundation:: HANDLE, keymgmthandle : super::super::Foundation:: HANDLE) -> u32);
|
218
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecKeyManagersGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut IPSEC_KEY_MANAGER0, numentries : *mut u32) -> u32);
|
219
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextAddInbound0(enginehandle : super::super::Foundation:: HANDLE, id : u64, inboundbundle : *const IPSEC_SA_BUNDLE0) -> u32);
|
220
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextAddInbound1(enginehandle : super::super::Foundation:: HANDLE, id : u64, inboundbundle : *const IPSEC_SA_BUNDLE1) -> u32);
|
221
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextAddOutbound0(enginehandle : super::super::Foundation:: HANDLE, id : u64, outboundbundle : *const IPSEC_SA_BUNDLE0) -> u32);
|
222
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextAddOutbound1(enginehandle : super::super::Foundation:: HANDLE, id : u64, outboundbundle : *const IPSEC_SA_BUNDLE1) -> u32);
|
223
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextCreate0(enginehandle : super::super::Foundation:: HANDLE, outboundtraffic : *const IPSEC_TRAFFIC0, inboundfilterid : *mut u64, id : *mut u64) -> u32);
|
224
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextCreate1(enginehandle : super::super::Foundation:: HANDLE, outboundtraffic : *const IPSEC_TRAFFIC1, virtualiftunnelinfo : *const IPSEC_VIRTUAL_IF_TUNNEL_INFO0, inboundfilterid : *mut u64, id : *mut u64) -> u32);
|
225
|
-
#[cfg(feature = "Win32_Security")]
|
226
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IPSEC_SA_CONTEXT_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
227
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32);
|
228
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
229
|
-
#[cfg(feature = "Win32_Security")]
|
230
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IPSEC_SA_CONTEXT0, numentriesreturned : *mut u32) -> u32);
|
231
|
-
#[cfg(feature = "Win32_Security")]
|
232
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextEnum1(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IPSEC_SA_CONTEXT1, numentriesreturned : *mut u32) -> u32);
|
233
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextExpire0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32);
|
234
|
-
#[cfg(feature = "Win32_Security")]
|
235
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, sacontext : *mut *mut IPSEC_SA_CONTEXT0) -> u32);
|
236
|
-
#[cfg(feature = "Win32_Security")]
|
237
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextGetById1(enginehandle : super::super::Foundation:: HANDLE, id : u64, sacontext : *mut *mut IPSEC_SA_CONTEXT1) -> u32);
|
238
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextGetSpi0(enginehandle : super::super::Foundation:: HANDLE, id : u64, getspi : *const IPSEC_GETSPI0, inboundspi : *mut u32) -> u32);
|
239
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextGetSpi1(enginehandle : super::super::Foundation:: HANDLE, id : u64, getspi : *const IPSEC_GETSPI1, inboundspi : *mut u32) -> u32);
|
240
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextSetSpi0(enginehandle : super::super::Foundation:: HANDLE, id : u64, getspi : *const IPSEC_GETSPI1, inboundspi : u32) -> u32);
|
241
|
-
#[cfg(feature = "Win32_Security")]
|
242
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextSubscribe0(enginehandle : super::super::Foundation:: HANDLE, subscription : *const IPSEC_SA_CONTEXT_SUBSCRIPTION0, callback : IPSEC_SA_CONTEXT_CALLBACK0, context : *const core::ffi::c_void, eventshandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
243
|
-
#[cfg(feature = "Win32_Security")]
|
244
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextSubscriptionsGet0(enginehandle : super::super::Foundation:: HANDLE, entries : *mut *mut *mut IPSEC_SA_CONTEXT_SUBSCRIPTION0, numentries : *mut u32) -> u32);
|
245
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUnsubscribe0(enginehandle : super::super::Foundation:: HANDLE, eventshandle : super::super::Foundation:: HANDLE) -> u32);
|
246
|
-
#[cfg(feature = "Win32_Security")]
|
247
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaContextUpdate0(enginehandle : super::super::Foundation:: HANDLE, flags : u64, newvalues : *const IPSEC_SA_CONTEXT1) -> u32);
|
248
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IPSEC_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
249
|
-
#[cfg(feature = "Win32_Security")]
|
250
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
251
|
-
#[cfg(feature = "Win32_Security")]
|
252
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDbSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
253
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
254
|
-
#[cfg(feature = "Win32_Security")]
|
255
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IPSEC_SA_DETAILS0, numentriesreturned : *mut u32) -> u32);
|
256
|
-
#[cfg(feature = "Win32_Security")]
|
257
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IPsecSaEnum1(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IPSEC_SA_DETAILS1, numentriesreturned : *mut u32) -> u32);
|
258
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextGetStatistics0(enginehandle : super::super::Foundation:: HANDLE, ikeextstatistics : *mut IKEEXT_STATISTICS0) -> u32);
|
259
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextGetStatistics1(enginehandle : super::super::Foundation:: HANDLE, ikeextstatistics : *mut IKEEXT_STATISTICS1) -> u32);
|
260
|
-
#[cfg(feature = "Win32_Security")]
|
261
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaCreateEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumtemplate : *const IKEEXT_SA_ENUM_TEMPLATE0, enumhandle : *mut super::super::Foundation:: HANDLE) -> u32);
|
262
|
-
#[cfg(feature = "Win32_Security")]
|
263
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbGetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *mut super::super::Security:: PSID, sidgroup : *mut super::super::Security:: PSID, dacl : *mut *mut super::super::Security:: ACL, sacl : *mut *mut super::super::Security:: ACL, securitydescriptor : *mut super::super::Security:: PSECURITY_DESCRIPTOR) -> u32);
|
264
|
-
#[cfg(feature = "Win32_Security")]
|
265
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDbSetSecurityInfo0(enginehandle : super::super::Foundation:: HANDLE, securityinfo : u32, sidowner : *const super::super::Security:: SID, sidgroup : *const super::super::Security:: SID, dacl : *const super::super::Security:: ACL, sacl : *const super::super::Security:: ACL) -> u32);
|
266
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDeleteById0(enginehandle : super::super::Foundation:: HANDLE, id : u64) -> u32);
|
267
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaDestroyEnumHandle0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE) -> u32);
|
268
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaEnum0(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IKEEXT_SA_DETAILS0, numentriesreturned : *mut u32) -> u32);
|
269
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaEnum1(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IKEEXT_SA_DETAILS1, numentriesreturned : *mut u32) -> u32);
|
270
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaEnum2(enginehandle : super::super::Foundation:: HANDLE, enumhandle : super::super::Foundation:: HANDLE, numentriesrequested : u32, entries : *mut *mut *mut IKEEXT_SA_DETAILS2, numentriesreturned : *mut u32) -> u32);
|
271
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaGetById0(enginehandle : super::super::Foundation:: HANDLE, id : u64, sa : *mut *mut IKEEXT_SA_DETAILS0) -> u32);
|
272
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaGetById1(enginehandle : super::super::Foundation:: HANDLE, id : u64, salookupcontext : *const windows_sys::core::GUID, sa : *mut *mut IKEEXT_SA_DETAILS1) -> u32);
|
273
|
-
windows_targets::link!("fwpuclnt.dll" "system" fn IkeextSaGetById2(enginehandle : super::super::Foundation:: HANDLE, id : u64, salookupcontext : *const windows_sys::core::GUID, sa : *mut *mut IKEEXT_SA_DETAILS2) -> u32);
|
274
|
-
pub const DlBroadcast: DL_ADDRESS_TYPE = 2i32;
|
275
|
-
pub const DlMulticast: DL_ADDRESS_TYPE = 1i32;
|
276
|
-
pub const DlUnicast: DL_ADDRESS_TYPE = 0i32;
|
277
|
-
pub const FWPM_ACTRL_ADD: u32 = 1u32;
|
278
|
-
pub const FWPM_ACTRL_ADD_LINK: u32 = 2u32;
|
279
|
-
pub const FWPM_ACTRL_BEGIN_READ_TXN: u32 = 4u32;
|
280
|
-
pub const FWPM_ACTRL_BEGIN_WRITE_TXN: u32 = 8u32;
|
281
|
-
pub const FWPM_ACTRL_CLASSIFY: u32 = 16u32;
|
282
|
-
pub const FWPM_ACTRL_ENUM: u32 = 32u32;
|
283
|
-
pub const FWPM_ACTRL_OPEN: u32 = 64u32;
|
284
|
-
pub const FWPM_ACTRL_READ: u32 = 128u32;
|
285
|
-
pub const FWPM_ACTRL_READ_STATS: u32 = 256u32;
|
286
|
-
pub const FWPM_ACTRL_SUBSCRIBE: u32 = 512u32;
|
287
|
-
pub const FWPM_ACTRL_WRITE: u32 = 1024u32;
|
288
|
-
pub const FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT: FWPM_APPC_NETWORK_CAPABILITY_TYPE = 0i32;
|
289
|
-
pub const FWPM_APPC_NETWORK_CAPABILITY_INTERNET_CLIENT_SERVER: FWPM_APPC_NETWORK_CAPABILITY_TYPE = 1i32;
|
290
|
-
pub const FWPM_APPC_NETWORK_CAPABILITY_INTERNET_PRIVATE_NETWORK: FWPM_APPC_NETWORK_CAPABILITY_TYPE = 2i32;
|
291
|
-
pub const FWPM_AUTO_WEIGHT_BITS: u32 = 60u32;
|
292
|
-
pub const FWPM_CALLOUT_BUILT_IN_RESERVED_1: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x779719a4_e695_47b6_a199_7999fec9163b);
|
293
|
-
pub const FWPM_CALLOUT_BUILT_IN_RESERVED_2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xef9661b6_7c5e_48fd_a130_96678ceacc41);
|
294
|
-
pub const FWPM_CALLOUT_BUILT_IN_RESERVED_3: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x18729c7a_2f62_4be0_966f_974b21b86df1);
|
295
|
-
pub const FWPM_CALLOUT_BUILT_IN_RESERVED_4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6c3fb801_daff_40e9_91e6_f7ff7e52f7d9);
|
296
|
-
pub const FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_LISTEN_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x33486ab5_6d5e_4e65_a00b_a7afed0ba9a1);
|
297
|
-
pub const FWPM_CALLOUT_EDGE_TRAVERSAL_ALE_RESOURCE_ASSIGNMENT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x079b1010_f1c5_4fcd_ae05_da41107abd0b);
|
298
|
-
pub const FWPM_CALLOUT_FLAG_PERSISTENT: u32 = 65536u32;
|
299
|
-
pub const FWPM_CALLOUT_FLAG_REGISTERED: u32 = 262144u32;
|
300
|
-
pub const FWPM_CALLOUT_FLAG_USES_PROVIDER_CONTEXT: u32 = 131072u32;
|
301
|
-
pub const FWPM_CALLOUT_HTTP_TEMPLATE_SSL_HANDSHAKE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb3423249_8d09_4858_9210_95c7fda8e30f);
|
302
|
-
pub const FWPM_CALLOUT_IPSEC_ALE_CONNECT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6ac141fc_f75d_4203_b9c8_48e6149c2712);
|
303
|
-
pub const FWPM_CALLOUT_IPSEC_ALE_CONNECT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4c0dda05_e31f_4666_90b0_b3dfad34129a);
|
304
|
-
pub const FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2fcb56ec_cd37_4b4f_b108_62c2b1850a0c);
|
305
|
-
pub const FWPM_CALLOUT_IPSEC_DOSP_FORWARD_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6d08a342_db9e_4fbe_9ed2_57374ce89f79);
|
306
|
-
pub const FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x28829633_c4f0_4e66_873f_844db2a899c7);
|
307
|
-
pub const FWPM_CALLOUT_IPSEC_FORWARD_INBOUND_TUNNEL_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaf50bec2_c686_429a_884d_b74443e7b0b4);
|
308
|
-
pub const FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfb532136_15cb_440b_937c_1717ca320c40);
|
309
|
-
pub const FWPM_CALLOUT_IPSEC_FORWARD_OUTBOUND_TUNNEL_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdae640cc_e021_4bee_9eb6_a48b275c8c1d);
|
310
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7dff309b_ba7d_4aba_91aa_ae5c6640c944);
|
311
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_INITIATE_SECURE_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa9a0d6d9_c58c_474e_8aeb_3cfe99d6d53d);
|
312
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5132900d_5e84_4b5f_80e4_01741e81ff10);
|
313
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x49d3ac92_2a6c_4dcf_955f_1c3be009dd99);
|
314
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3df6e7de_fd20_48f2_9f26_f854444cba79);
|
315
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_ALE_ACCEPT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa1e392d3_72ac_47bb_87a7_0122c69434ab);
|
316
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x191a8a46_0bf8_46cf_b045_4b45dfa6a324);
|
317
|
-
pub const FWPM_CALLOUT_IPSEC_INBOUND_TUNNEL_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x80c342e3_1e53_4d6f_9b44_03df5aeee154);
|
318
|
-
pub const FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4b46bf0a_4523_4e57_aa38_a87987c910d9);
|
319
|
-
pub const FWPM_CALLOUT_IPSEC_OUTBOUND_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x38d87722_ad83_4f11_a91f_df0fb077225b);
|
320
|
-
pub const FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x70a4196c_835b_4fb0_98e8_075f4d977d46);
|
321
|
-
pub const FWPM_CALLOUT_IPSEC_OUTBOUND_TUNNEL_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf1835363_a6a5_4e62_b180_23db789d8da6);
|
322
|
-
pub const FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x103090d4_8e28_4fd6_9894_d1d67d6b10c9);
|
323
|
-
pub const FWPM_CALLOUT_OUTBOUND_NETWORK_CONNECTION_POLICY_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4ed3446d_8dc7_459b_b09f_c1cb7a8f8689);
|
324
|
-
pub const FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5fbfc31d_a51c_44dc_acb6_0624a030a700);
|
325
|
-
pub const FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_CONNECT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5fbfc31d_a51c_44dc_acb6_0624a030a701);
|
326
|
-
pub const FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5fbfc31d_a51c_44dc_acb6_0624a030a702);
|
327
|
-
pub const FWPM_CALLOUT_POLICY_SILENT_MODE_AUTH_RECV_ACCEPT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5fbfc31d_a51c_44dc_acb6_0624a030a703);
|
328
|
-
pub const FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x288b524d_0566_4e19_b612_8f441a2e5949);
|
329
|
-
pub const FWPM_CALLOUT_RESERVED_AUTH_CONNECT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x00b84b92_2b5e_4b71_ab0e_aaca43e387e6);
|
330
|
-
pub const FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbc582280_1677_41e9_94ab_c2fcb15c2eeb);
|
331
|
-
pub const FWPM_CALLOUT_SET_OPTIONS_AUTH_CONNECT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x98e5373c_b884_490f_b65f_2f6a4a575195);
|
332
|
-
pub const FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2d55f008_0c01_4f92_b26e_a08a94569b8d);
|
333
|
-
pub const FWPM_CALLOUT_SET_OPTIONS_AUTH_RECV_ACCEPT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x63018537_f281_4dc4_83d3_8dec18b7ade2);
|
334
|
-
pub const FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe183ecb2_3a7f_4b54_8ad9_76050ed880ca);
|
335
|
-
pub const FWPM_CALLOUT_TCP_CHIMNEY_ACCEPT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0378cf41_bf98_4603_81f2_7f12586079f6);
|
336
|
-
pub const FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf3e10ab3_2c25_4279_ac36_c30fc181bec4);
|
337
|
-
pub const FWPM_CALLOUT_TCP_CHIMNEY_CONNECT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x39e22085_a341_42fc_a279_aec94e689c56);
|
338
|
-
pub const FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2f23f5d0_40c4_4c41_a254_46d8dba8957c);
|
339
|
-
pub const FWPM_CALLOUT_TCP_TEMPLATES_ACCEPT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb25152f0_991c_4f53_bbe7_d24b45fe632c);
|
340
|
-
pub const FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x215a0b39_4b7e_4eda_8ce4_179679df6224);
|
341
|
-
pub const FWPM_CALLOUT_TCP_TEMPLATES_CONNECT_LAYER_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x838b37a1_5c12_4d34_8b38_078728b2d25c);
|
342
|
-
pub const FWPM_CALLOUT_TEREDO_ALE_LISTEN_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x81a434e7_f60c_4378_bab8_c625a30f0197);
|
343
|
-
pub const FWPM_CALLOUT_TEREDO_ALE_RESOURCE_ASSIGNMENT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x31b95392_066e_42a2_b7db_92f8acdd56f9);
|
344
|
-
pub const FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V4_SILENT_DROP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeda08606_2494_4d78_89bc_67837c03b969);
|
345
|
-
pub const FWPM_CALLOUT_WFP_TRANSPORT_LAYER_V6_SILENT_DROP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8693cc74_a075_4156_b476_9286eece814e);
|
346
|
-
pub const FWPM_CHANGE_ADD: FWPM_CHANGE_TYPE = 1i32;
|
347
|
-
pub const FWPM_CHANGE_DELETE: FWPM_CHANGE_TYPE = 2i32;
|
348
|
-
pub const FWPM_CHANGE_TYPE_MAX: FWPM_CHANGE_TYPE = 3i32;
|
349
|
-
pub const FWPM_CLASSIFY_OPTIONS_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 7i32;
|
350
|
-
pub const FWPM_CONDITION_ALE_APP_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd78e1e87_8644_4ea5_9437_d809ecefc971);
|
351
|
-
pub const FWPM_CONDITION_ALE_EFFECTIVE_NAME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb1277b9a_b781_40fc_9671_e5f1b989f34e);
|
352
|
-
pub const FWPM_CONDITION_ALE_NAP_CONTEXT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x46275a9d_c03f_4d77_b784_1c57f4d02753);
|
353
|
-
pub const FWPM_CONDITION_ALE_ORIGINAL_APP_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0e6cd086_e1fb_4212_842f_8a9f993fb3f6);
|
354
|
-
pub const FWPM_CONDITION_ALE_PACKAGE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x71bc78fa_f17c_4997_a602_6abb261f351c);
|
355
|
-
pub const FWPM_CONDITION_ALE_PROMISCUOUS_MODE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1c974776_7182_46e9_afd3_b02910e30334);
|
356
|
-
pub const FWPM_CONDITION_ALE_REAUTH_REASON: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb482d227_1979_4a98_8044_18bbe6237542);
|
357
|
-
pub const FWPM_CONDITION_ALE_REMOTE_MACHINE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1aa47f51_7f93_4508_a271_81abb00c9cab);
|
358
|
-
pub const FWPM_CONDITION_ALE_REMOTE_USER_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf63073b7_0189_4ab0_95a4_6123cbfab862);
|
359
|
-
pub const FWPM_CONDITION_ALE_SECURITY_ATTRIBUTE_FQBN_VALUE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x37a57699_5883_4963_92b8_3e704688b0ad);
|
360
|
-
pub const FWPM_CONDITION_ALE_SIO_FIREWALL_SYSTEM_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb9f4e088_cb98_4efb_a2c7_ad07332643db);
|
361
|
-
pub const FWPM_CONDITION_ALE_USER_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaf043a0a_b34d_4f86_979c_c90371af6e66);
|
362
|
-
pub const FWPM_CONDITION_ARRIVAL_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcc088db3_1792_4a71_b0f9_037d21cd828b);
|
363
|
-
pub const FWPM_CONDITION_ARRIVAL_INTERFACE_PROFILE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcdfe6aab_c083_4142_8679_c08f95329c61);
|
364
|
-
pub const FWPM_CONDITION_ARRIVAL_INTERFACE_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x89f990de_e798_4e6d_ab76_7c9558292e6f);
|
365
|
-
pub const FWPM_CONDITION_ARRIVAL_TUNNEL_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x511166dc_7a8c_4aa7_b533_95ab59fb0340);
|
366
|
-
pub const FWPM_CONDITION_AUTHENTICATION_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeb458cd5_da7b_4ef9_8d43_7b0a840332f2);
|
367
|
-
pub const FWPM_CONDITION_CLIENT_CERT_KEY_LENGTH: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa3ec00c7_05f4_4df7_91f2_5f60d91ff443);
|
368
|
-
pub const FWPM_CONDITION_CLIENT_CERT_OID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc491ad5e_f882_4283_b916_436b103ff4ad);
|
369
|
-
pub const FWPM_CONDITION_CLIENT_TOKEN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc228fc1e_403a_4478_be05_c9baa4c05ace);
|
370
|
-
pub const FWPM_CONDITION_COMPARTMENT_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x35a791ab_04ac_4ff2_a6bb_da6cfac71806);
|
371
|
-
pub const FWPM_CONDITION_CURRENT_PROFILE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xab3033c9_c0e3_4759_937d_5758c65d4ae3);
|
372
|
-
pub const FWPM_CONDITION_DCOM_APP_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xff2e7b4d_3112_4770_b636_4d24ae3a6af2);
|
373
|
-
pub const FWPM_CONDITION_DESTINATION_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x35cf6522_4139_45ee_a0d5_67b80949d879);
|
374
|
-
pub const FWPM_CONDITION_DESTINATION_SUB_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2b7d4399_d4c7_4738_a2f5_e994b43da388);
|
375
|
-
pub const FWPM_CONDITION_DIRECTION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8784c146_ca97_44d6_9fd1_19fb1840cbf7);
|
376
|
-
pub const FWPM_CONDITION_EMBEDDED_LOCAL_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4672a468_8a0a_4202_abb4_849e92e66809);
|
377
|
-
pub const FWPM_CONDITION_EMBEDDED_LOCAL_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbfca394d_acdb_484e_b8e6_2aff79757345);
|
378
|
-
pub const FWPM_CONDITION_EMBEDDED_PROTOCOL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x07784107_a29e_4c7b_9ec7_29c44afafdbc);
|
379
|
-
pub const FWPM_CONDITION_EMBEDDED_REMOTE_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x77ee4b39_3273_4671_b63b_ab6feb66eeb6);
|
380
|
-
pub const FWPM_CONDITION_EMBEDDED_REMOTE_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcae4d6a1_2968_40ed_a4ce_547160dda88d);
|
381
|
-
pub const FWPM_CONDITION_ETHER_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfd08948d_a219_4d52_bb98_1a5540ee7b4e);
|
382
|
-
pub const FWPM_CONDITION_FLAGS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x632ce23b_5167_435c_86d7_e903684aa80c);
|
383
|
-
pub const FWPM_CONDITION_IMAGE_NAME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd024de4d_deaa_4317_9c85_e40ef6e140c3);
|
384
|
-
pub const FWPM_CONDITION_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x667fd755_d695_434a_8af5_d3835a1259bc);
|
385
|
-
pub const FWPM_CONDITION_INTERFACE_MAC_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf6e63dce_1f4b_4c6b_b6ef_1165e71f8ee7);
|
386
|
-
pub const FWPM_CONDITION_INTERFACE_QUARANTINE_EPOCH: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcce68d5e_053b_43a8_9a6f_33384c28e4f6);
|
387
|
-
pub const FWPM_CONDITION_INTERFACE_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdaf8cd14_e09e_4c93_a5ae_c5c13b73ffca);
|
388
|
-
pub const FWPM_CONDITION_IPSEC_POLICY_KEY: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xad37dee3_722f_45cc_a4e3_068048124452);
|
389
|
-
pub const FWPM_CONDITION_IPSEC_SECURITY_REALM_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x37a57700_5884_4964_92b8_3e704688b0ad);
|
390
|
-
pub const FWPM_CONDITION_IP_ARRIVAL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x618a9b6d_386b_4136_ad6e_b51587cfb1cd);
|
391
|
-
pub const FWPM_CONDITION_IP_DESTINATION_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2d79133b_b390_45c6_8699_acaceaafed33);
|
392
|
-
pub const FWPM_CONDITION_IP_DESTINATION_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1ec1b7c9_4eea_4f5e_b9ef_76beaaaf17ee);
|
393
|
-
pub const FWPM_CONDITION_IP_DESTINATION_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xce6def45_60fb_4a7b_a304_af30a117000e);
|
394
|
-
pub const FWPM_CONDITION_IP_FORWARD_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1076b8a5_6323_4c5e_9810_e8d3fc9e6136);
|
395
|
-
pub const FWPM_CONDITION_IP_LOCAL_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd9ee00de_c1ef_4617_bfe3_ffd8f5a08957);
|
396
|
-
pub const FWPM_CONDITION_IP_LOCAL_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6ec7f6c4_376b_45d7_9e9c_d337cedcd237);
|
397
|
-
pub const FWPM_CONDITION_IP_LOCAL_ADDRESS_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x03a629cb_6e52_49f8_9c41_5709633c09cf);
|
398
|
-
pub const FWPM_CONDITION_IP_LOCAL_ADDRESS_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2381be84_7524_45b3_a05b_1e637d9c7a6a);
|
399
|
-
pub const FWPM_CONDITION_IP_LOCAL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4cd62a49_59c3_4969_b7f3_bda5d32890a4);
|
400
|
-
pub const FWPM_CONDITION_IP_LOCAL_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0c1ba1af_5765_453f_af22_a8f791ac775b);
|
401
|
-
pub const FWPM_CONDITION_IP_NEXTHOP_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeabe448a_a711_4d64_85b7_3f76b65299c7);
|
402
|
-
pub const FWPM_CONDITION_IP_NEXTHOP_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x93ae8f5b_7f6f_4719_98c8_14e97429ef04);
|
403
|
-
pub const FWPM_CONDITION_IP_PHYSICAL_ARRIVAL_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xda50d5c8_fa0d_4c89_b032_6e62136d1e96);
|
404
|
-
pub const FWPM_CONDITION_IP_PHYSICAL_NEXTHOP_INTERFACE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf09bd5ce_5150_48be_b098_c25152fb1f92);
|
405
|
-
pub const FWPM_CONDITION_IP_PROTOCOL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3971ef2b_623e_4f9a_8cb1_6e79b806b9a7);
|
406
|
-
pub const FWPM_CONDITION_IP_REMOTE_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb235ae9a_1d64_49b8_a44c_5ff3d9095045);
|
407
|
-
pub const FWPM_CONDITION_IP_REMOTE_ADDRESS_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1febb610_3bcc_45e1_bc36_2e067e2cb186);
|
408
|
-
pub const FWPM_CONDITION_IP_REMOTE_ADDRESS_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x246e1d8c_8bee_4018_9b98_31d4582f3361);
|
409
|
-
pub const FWPM_CONDITION_IP_REMOTE_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc35a604d_d22b_4e1a_91b4_68f674ee674b);
|
410
|
-
pub const FWPM_CONDITION_IP_SOURCE_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xae96897e_2e94_4bc9_b313_b27ee80e574d);
|
411
|
-
pub const FWPM_CONDITION_IP_SOURCE_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa6afef91_3df4_4730_a214_f5426aebf821);
|
412
|
-
pub const FWPM_CONDITION_KM_AUTH_NAP_CONTEXT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x35d0ea0e_15ca_492b_900e_97fd46352cce);
|
413
|
-
pub const FWPM_CONDITION_KM_MODE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfeef4582_ef8f_4f7b_858b_9077d122de47);
|
414
|
-
pub const FWPM_CONDITION_KM_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xff0f5f49_0ceb_481b_8638_1479791f3f2c);
|
415
|
-
pub const FWPM_CONDITION_L2_FLAGS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7bc43cbf_37ba_45f1_b74a_82ff518eeb10);
|
416
|
-
pub const FWPM_CONDITION_LOCAL_INTERFACE_PROFILE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4ebf7562_9f18_4d06_9941_a7a625744d71);
|
417
|
-
pub const FWPM_CONDITION_MAC_DESTINATION_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x04ea2a93_858c_4027_b613_b43180c7859e);
|
418
|
-
pub const FWPM_CONDITION_MAC_DESTINATION_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xae052932_ef42_4e99_b129_f3b3139e34f7);
|
419
|
-
pub const FWPM_CONDITION_MAC_LOCAL_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd999e981_7948_4c83_b742_c84e3b678f8f);
|
420
|
-
pub const FWPM_CONDITION_MAC_LOCAL_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcc31355c_3073_4ffb_a14f_79415cb1ead1);
|
421
|
-
pub const FWPM_CONDITION_MAC_REMOTE_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x408f2ed4_3a70_4b4d_92a6_415ac20e2f12);
|
422
|
-
pub const FWPM_CONDITION_MAC_REMOTE_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x027fedb4_f1c1_4030_b564_ee777fd867ea);
|
423
|
-
pub const FWPM_CONDITION_MAC_SOURCE_ADDRESS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7b795451_f1f6_4d05_b7cb_21779d802336);
|
424
|
-
pub const FWPM_CONDITION_MAC_SOURCE_ADDRESS_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5c1b72e4_299e_4437_a298_bc3f014b3dc2);
|
425
|
-
pub const FWPM_CONDITION_NDIS_MEDIA_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcb31cef1_791d_473b_89d1_61c5984304a0);
|
426
|
-
pub const FWPM_CONDITION_NDIS_PHYSICAL_MEDIA_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x34c79823_c229_44f2_b83c_74020882ae77);
|
427
|
-
pub const FWPM_CONDITION_NDIS_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdb7bb42b_2dac_4cd4_a59a_e0bdce1e6834);
|
428
|
-
pub const FWPM_CONDITION_NET_EVENT_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x206e9996_490e_40cf_b831_b38641eb6fcb);
|
429
|
-
pub const FWPM_CONDITION_NEXTHOP_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x138e6888_7ab8_4d65_9ee8_0591bcf6a494);
|
430
|
-
pub const FWPM_CONDITION_NEXTHOP_INTERFACE_PROFILE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd7ff9a56_cdaa_472b_84db_d23963c1d1bf);
|
431
|
-
pub const FWPM_CONDITION_NEXTHOP_INTERFACE_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x97537c6c_d9a3_4767_a381_e942675cd920);
|
432
|
-
pub const FWPM_CONDITION_NEXTHOP_SUB_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xef8a6122_0577_45a7_9aaf_825fbeb4fb95);
|
433
|
-
pub const FWPM_CONDITION_NEXTHOP_TUNNEL_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x72b1a111_987b_4720_99dd_c7c576fa2d4c);
|
434
|
-
pub const FWPM_CONDITION_ORIGINAL_ICMP_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x076dfdbe_c56c_4f72_ae8a_2cfe7e5c8286);
|
435
|
-
pub const FWPM_CONDITION_ORIGINAL_PROFILE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x46ea1551_2255_492b_8019_aabeee349f40);
|
436
|
-
pub const FWPM_CONDITION_PEER_NAME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9b539082_eb90_4186_a6cc_de5b63235016);
|
437
|
-
pub const FWPM_CONDITION_PIPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1bd0741d_e3df_4e24_8634_762046eef6eb);
|
438
|
-
pub const FWPM_CONDITION_PROCESS_WITH_RPC_IF_UUID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe31180a8_bbbd_4d14_a65e_7157b06233bb);
|
439
|
-
pub const FWPM_CONDITION_QM_MODE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf64fc6d1_f9cb_43d2_8a5f_e13bc894f265);
|
440
|
-
pub const FWPM_CONDITION_REAUTHORIZE_REASON: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x11205e8c_11ae_457a_8a44_477026dd764a);
|
441
|
-
pub const FWPM_CONDITION_REMOTE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf68166fd_0682_4c89_b8f5_86436c7ef9b7);
|
442
|
-
pub const FWPM_CONDITION_REMOTE_USER_TOKEN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9bf0ee66_06c9_41b9_84da_288cb43af51f);
|
443
|
-
pub const FWPM_CONDITION_RESERVED0: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x678f4deb_45af_4882_93fe_19d4729d9834);
|
444
|
-
pub const FWPM_CONDITION_RESERVED1: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd818f827_5c69_48eb_bf80_d86b17755f97);
|
445
|
-
pub const FWPM_CONDITION_RESERVED10: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb979e282_d621_4c8c_b184_b105a61c36ce);
|
446
|
-
pub const FWPM_CONDITION_RESERVED11: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2d62ee4d_023d_411f_9582_43acbb795975);
|
447
|
-
pub const FWPM_CONDITION_RESERVED12: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa3677c32_7e35_4ddc_93da_e8c33fc923c7);
|
448
|
-
pub const FWPM_CONDITION_RESERVED13: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x335a3e90_84aa_42f5_9e6f_59309536a44c);
|
449
|
-
pub const FWPM_CONDITION_RESERVED14: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x30e44da2_2f1a_4116_a559_f907de83604a);
|
450
|
-
pub const FWPM_CONDITION_RESERVED15: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbab8340f_afe0_43d1_80d8_5ca456962de3);
|
451
|
-
pub const FWPM_CONDITION_RESERVED2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x53d4123d_e15b_4e84_b7a8_dce16f7b62d9);
|
452
|
-
pub const FWPM_CONDITION_RESERVED3: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7f6e8ca3_6606_4932_97c7_e1f20710af3b);
|
453
|
-
pub const FWPM_CONDITION_RESERVED4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5f58e642_b937_495e_a94b_f6b051a49250);
|
454
|
-
pub const FWPM_CONDITION_RESERVED5: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9ba8f6cd_f77c_43e6_8847_11939dc5db5a);
|
455
|
-
pub const FWPM_CONDITION_RESERVED6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf13d84bd_59d5_44c4_8817_5ecdae1805bd);
|
456
|
-
pub const FWPM_CONDITION_RESERVED7: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x65a0f930_45dd_4983_aa33_efc7b611af08);
|
457
|
-
pub const FWPM_CONDITION_RESERVED8: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4f424974_0c12_4816_9b47_9a547db39a32);
|
458
|
-
pub const FWPM_CONDITION_RESERVED9: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xce78e10f_13ff_4c70_8643_36ad1879afa3);
|
459
|
-
pub const FWPM_CONDITION_RPC_AUTH_LEVEL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe5a0aed5_59ac_46ea_be05_a5f05ecf446e);
|
460
|
-
pub const FWPM_CONDITION_RPC_AUTH_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdaba74ab_0d67_43e7_986e_75b84f82f594);
|
461
|
-
pub const FWPM_CONDITION_RPC_EP_FLAGS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x218b814a_0a39_49b8_8e71_c20c39c7dd2e);
|
462
|
-
pub const FWPM_CONDITION_RPC_EP_VALUE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdccea0b9_0886_4360_9c6a_ab043a24fba9);
|
463
|
-
pub const FWPM_CONDITION_RPC_IF_FLAG: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x238a8a32_3199_467d_871c_272621ab3896);
|
464
|
-
pub const FWPM_CONDITION_RPC_IF_UUID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7c9c7d9f_0075_4d35_a0d1_8311c4cf6af1);
|
465
|
-
pub const FWPM_CONDITION_RPC_IF_VERSION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeabfd9b7_1262_4a2e_adaa_5f96f6fe326d);
|
466
|
-
pub const FWPM_CONDITION_RPC_PROTOCOL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2717bc74_3a35_4ce7_b7ef_c838fabdec45);
|
467
|
-
pub const FWPM_CONDITION_RPC_PROXY_AUTH_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x40953fe2_8565_4759_8488_1771b4b4b5db);
|
468
|
-
pub const FWPM_CONDITION_RPC_SERVER_NAME: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb605a225_c3b3_48c7_9833_7aefa9527546);
|
469
|
-
pub const FWPM_CONDITION_RPC_SERVER_PORT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8090f645_9ad5_4e3b_9f9f_8023ca097909);
|
470
|
-
pub const FWPM_CONDITION_SEC_ENCRYPT_ALGORITHM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0d306ef0_e974_4f74_b5c7_591b0da7d562);
|
471
|
-
pub const FWPM_CONDITION_SEC_KEY_SIZE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4772183b_ccf8_4aeb_bce1_c6c6161c8fe4);
|
472
|
-
pub const FWPM_CONDITION_SOURCE_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2311334d_c92d_45bf_9496_edf447820e2d);
|
473
|
-
pub const FWPM_CONDITION_SOURCE_SUB_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x055edd9d_acd2_4361_8dab_f9525d97662f);
|
474
|
-
pub const FWPM_CONDITION_SUB_INTERFACE_INDEX: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0cd42473_d621_4be3_ae8c_72a348d283e1);
|
475
|
-
pub const FWPM_CONDITION_TUNNEL_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x77a40437_8779_4868_a261_f5a902f1c0cd);
|
476
|
-
pub const FWPM_CONDITION_VLAN_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x938eab21_3618_4e64_9ca5_2141ebda1ca2);
|
477
|
-
pub const FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8ed48be4_c926_49f6_a4f6_ef3030e3fc16);
|
478
|
-
pub const FWPM_CONDITION_VSWITCH_DESTINATION_INTERFACE_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfa9b3f06_2f1a_4c57_9e68_a7098b28dbfe);
|
479
|
-
pub const FWPM_CONDITION_VSWITCH_DESTINATION_VM_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x6106aace_4de1_4c84_9671_3637f8bcf731);
|
480
|
-
pub const FWPM_CONDITION_VSWITCH_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc4a414ba_437b_4de6_9946_d99c1b95b312);
|
481
|
-
pub const FWPM_CONDITION_VSWITCH_NETWORK_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x11d48b4b_e77a_40b4_9155_392c906c2608);
|
482
|
-
pub const FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7f4ef24b_b2c1_4938_ba33_a1ecbed512ba);
|
483
|
-
pub const FWPM_CONDITION_VSWITCH_SOURCE_INTERFACE_TYPE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe6b040a2_edaf_4c36_908b_f2f58ae43807);
|
484
|
-
pub const FWPM_CONDITION_VSWITCH_SOURCE_VM_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9c2a9ec2_9fc6_42bc_bdd8_406d4da0be64);
|
485
|
-
pub const FWPM_CONDITION_VSWITCH_TENANT_NETWORK_ID: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdc04843c_79e6_4e44_a025_65b9bb0f9f94);
|
486
|
-
pub const FWPM_CONNECTION_ENUM_FLAG_QUERY_BYTES_TRANSFERRED: u32 = 1u32;
|
487
|
-
pub const FWPM_CONNECTION_EVENT_ADD: FWPM_CONNECTION_EVENT_TYPE = 0i32;
|
488
|
-
pub const FWPM_CONNECTION_EVENT_DELETE: FWPM_CONNECTION_EVENT_TYPE = 1i32;
|
489
|
-
pub const FWPM_CONNECTION_EVENT_MAX: FWPM_CONNECTION_EVENT_TYPE = 2i32;
|
490
|
-
pub const FWPM_ENGINE_COLLECT_NET_EVENTS: FWPM_ENGINE_OPTION = 0i32;
|
491
|
-
pub const FWPM_ENGINE_MONITOR_IPSEC_CONNECTIONS: FWPM_ENGINE_OPTION = 3i32;
|
492
|
-
pub const FWPM_ENGINE_NAME_CACHE: FWPM_ENGINE_OPTION = 2i32;
|
493
|
-
pub const FWPM_ENGINE_NET_EVENT_MATCH_ANY_KEYWORDS: FWPM_ENGINE_OPTION = 1i32;
|
494
|
-
pub const FWPM_ENGINE_OPTION_MAX: FWPM_ENGINE_OPTION = 6i32;
|
495
|
-
pub const FWPM_ENGINE_OPTION_PACKET_BATCH_INBOUND: u32 = 4u32;
|
496
|
-
pub const FWPM_ENGINE_OPTION_PACKET_QUEUE_FORWARD: u32 = 2u32;
|
497
|
-
pub const FWPM_ENGINE_OPTION_PACKET_QUEUE_INBOUND: u32 = 1u32;
|
498
|
-
pub const FWPM_ENGINE_OPTION_PACKET_QUEUE_NONE: u32 = 0u32;
|
499
|
-
pub const FWPM_ENGINE_PACKET_QUEUING: FWPM_ENGINE_OPTION = 4i32;
|
500
|
-
pub const FWPM_ENGINE_TXN_WATCHDOG_TIMEOUT_IN_MSEC: FWPM_ENGINE_OPTION = 5i32;
|
501
|
-
pub const FWPM_FIELD_FLAGS: FWPM_FIELD_TYPE = 2i32;
|
502
|
-
pub const FWPM_FIELD_IP_ADDRESS: FWPM_FIELD_TYPE = 1i32;
|
503
|
-
pub const FWPM_FIELD_RAW_DATA: FWPM_FIELD_TYPE = 0i32;
|
504
|
-
pub const FWPM_FIELD_TYPE_MAX: FWPM_FIELD_TYPE = 3i32;
|
505
|
-
pub const FWPM_FILTER_FLAG_BOOTTIME: FWPM_FILTER_FLAGS = 2u32;
|
506
|
-
pub const FWPM_FILTER_FLAG_CLEAR_ACTION_RIGHT: FWPM_FILTER_FLAGS = 8u32;
|
507
|
-
pub const FWPM_FILTER_FLAG_DISABLED: FWPM_FILTER_FLAGS = 32u32;
|
508
|
-
pub const FWPM_FILTER_FLAG_GAMEOS_ONLY: u32 = 512u32;
|
509
|
-
pub const FWPM_FILTER_FLAG_HAS_PROVIDER_CONTEXT: FWPM_FILTER_FLAGS = 4u32;
|
510
|
-
pub const FWPM_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT: u32 = 128u32;
|
511
|
-
pub const FWPM_FILTER_FLAG_INDEXED: FWPM_FILTER_FLAGS = 64u32;
|
512
|
-
pub const FWPM_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE: u32 = 2048u32;
|
513
|
-
pub const FWPM_FILTER_FLAG_NONE: FWPM_FILTER_FLAGS = 0u32;
|
514
|
-
pub const FWPM_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED: FWPM_FILTER_FLAGS = 16u32;
|
515
|
-
pub const FWPM_FILTER_FLAG_PERSISTENT: FWPM_FILTER_FLAGS = 1u32;
|
516
|
-
pub const FWPM_FILTER_FLAG_RESERVED0: u32 = 4096u32;
|
517
|
-
pub const FWPM_FILTER_FLAG_RESERVED1: u32 = 8192u32;
|
518
|
-
pub const FWPM_FILTER_FLAG_SILENT_MODE: u32 = 1024u32;
|
519
|
-
pub const FWPM_FILTER_FLAG_SYSTEMOS_ONLY: u32 = 256u32;
|
520
|
-
pub const FWPM_GENERAL_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 8i32;
|
521
|
-
pub const FWPM_IPSEC_AUTHIP_MM_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 6i32;
|
522
|
-
pub const FWPM_IPSEC_AUTHIP_QM_TRANSPORT_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 3i32;
|
523
|
-
pub const FWPM_IPSEC_AUTHIP_QM_TUNNEL_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 4i32;
|
524
|
-
pub const FWPM_IPSEC_DOSP_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 11i32;
|
525
|
-
pub const FWPM_IPSEC_IKEV2_MM_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 10i32;
|
526
|
-
pub const FWPM_IPSEC_IKEV2_QM_TRANSPORT_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 12i32;
|
527
|
-
pub const FWPM_IPSEC_IKEV2_QM_TUNNEL_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 9i32;
|
528
|
-
pub const FWPM_IPSEC_IKE_MM_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 5i32;
|
529
|
-
pub const FWPM_IPSEC_IKE_QM_TRANSPORT_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 1i32;
|
530
|
-
pub const FWPM_IPSEC_IKE_QM_TUNNEL_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 2i32;
|
531
|
-
pub const FWPM_IPSEC_KEYING_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 0i32;
|
532
|
-
pub const FWPM_KEYING_MODULE_AUTHIP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x11e3dae0_dd26_4590_857d_ab4b28d1a095);
|
533
|
-
pub const FWPM_KEYING_MODULE_IKE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa9bbf787_82a8_45bb_a400_5d7e5952c7a9);
|
534
|
-
pub const FWPM_KEYING_MODULE_IKEV2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x041792cc_8f07_419d_a394_716968cb1647);
|
535
|
-
pub const FWPM_LAYER_ALE_AUTH_CONNECT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc38d57d1_05a7_4c33_904f_7fbceee60e82);
|
536
|
-
pub const FWPM_LAYER_ALE_AUTH_CONNECT_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd632a801_f5ba_4ad6_96e3_607017d9836a);
|
537
|
-
pub const FWPM_LAYER_ALE_AUTH_CONNECT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4a72393b_319f_44bc_84c3_ba54dcb3b6b4);
|
538
|
-
pub const FWPM_LAYER_ALE_AUTH_CONNECT_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc97bc3b8_c9a3_4e33_8695_8e17aad4de09);
|
539
|
-
pub const FWPM_LAYER_ALE_AUTH_LISTEN_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x88bb5dad_76d7_4227_9c71_df0a3ed7be7e);
|
540
|
-
pub const FWPM_LAYER_ALE_AUTH_LISTEN_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x371dfada_9f26_45fd_b4eb_c29eb212893f);
|
541
|
-
pub const FWPM_LAYER_ALE_AUTH_LISTEN_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7ac9de24_17dd_4814_b4bd_a9fbc95a321b);
|
542
|
-
pub const FWPM_LAYER_ALE_AUTH_LISTEN_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x60703b07_63c8_48e9_ada3_12b1af40a617);
|
543
|
-
pub const FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe1cd9fe7_f4b5_4273_96c0_592e487b8650);
|
544
|
-
pub const FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9eeaa99b_bd22_4227_919f_0073c63357b1);
|
545
|
-
pub const FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa3b42c97_9f04_4672_b87e_cee9c483257f);
|
546
|
-
pub const FWPM_LAYER_ALE_AUTH_RECV_ACCEPT_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x89455b97_dbe1_453f_a224_13da895af396);
|
547
|
-
pub const FWPM_LAYER_ALE_BIND_REDIRECT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x66978cad_c704_42ac_86ac_7c1a231bd253);
|
548
|
-
pub const FWPM_LAYER_ALE_BIND_REDIRECT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbef02c9c_606b_4536_8c26_1c2fc7b631d4);
|
549
|
-
pub const FWPM_LAYER_ALE_CONNECT_REDIRECT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc6e63c8c_b784_4562_aa7d_0a67cfcaf9a3);
|
550
|
-
pub const FWPM_LAYER_ALE_CONNECT_REDIRECT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x587e54a7_8046_42ba_a0aa_b716250fc7fd);
|
551
|
-
pub const FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb4766427_e2a2_467a_bd7e_dbcd1bd85a09);
|
552
|
-
pub const FWPM_LAYER_ALE_ENDPOINT_CLOSURE_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbb536ccd_4755_4ba9_9ff7_f9edf8699c7b);
|
553
|
-
pub const FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaf80470a_5596_4c13_9992_539e6fe57967);
|
554
|
-
pub const FWPM_LAYER_ALE_FLOW_ESTABLISHED_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x146ae4a9_a1d2_4d43_a31a_4c42682b8e4f);
|
555
|
-
pub const FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7021d2b3_dfa4_406e_afeb_6afaf7e70efd);
|
556
|
-
pub const FWPM_LAYER_ALE_FLOW_ESTABLISHED_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x46928636_bbca_4b76_941d_0fa7f5d7d372);
|
557
|
-
pub const FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1247d66d_0b60_4a15_8d44_7155d0f53a0c);
|
558
|
-
pub const FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0b5812a2_c3ff_4eca_b88d_c79e20ac6322);
|
559
|
-
pub const FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x55a650e1_5f0a_4eca_a653_88f53b26aa8c);
|
560
|
-
pub const FWPM_LAYER_ALE_RESOURCE_ASSIGNMENT_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xcbc998bb_c51f_4c1a_bb4f_9775fcacab2f);
|
561
|
-
pub const FWPM_LAYER_ALE_RESOURCE_RELEASE_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x74365cce_ccb0_401a_bfc1_b89934ad7e15);
|
562
|
-
pub const FWPM_LAYER_ALE_RESOURCE_RELEASE_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf4e5ce80_edcc_4e13_8a2f_b91454bb057b);
|
563
|
-
pub const FWPM_LAYER_DATAGRAM_DATA_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3d08bf4e_45f6_4930_a922_417098e20027);
|
564
|
-
pub const FWPM_LAYER_DATAGRAM_DATA_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x18e330c6_7248_4e52_aaab_472ed67704fd);
|
565
|
-
pub const FWPM_LAYER_DATAGRAM_DATA_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xfa45fe2f_3cba_4427_87fc_57b9a4b10d00);
|
566
|
-
pub const FWPM_LAYER_DATAGRAM_DATA_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x09d1dfe1_9b86_4a42_be9d_8c315b92a5d0);
|
567
|
-
pub const FWPM_LAYER_EGRESS_VSWITCH_ETHERNET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x86c872b0_76fa_4b79_93a4_0750530ae292);
|
568
|
-
pub const FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb92350b6_91f0_46b6_bdc4_871dfd4a7c98);
|
569
|
-
pub const FWPM_LAYER_EGRESS_VSWITCH_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1b2def23_1881_40bd_82f4_4254e63141cb);
|
570
|
-
pub const FWPM_LAYER_FLAG_BUFFERED: u32 = 8u32;
|
571
|
-
pub const FWPM_LAYER_FLAG_BUILTIN: u32 = 2u32;
|
572
|
-
pub const FWPM_LAYER_FLAG_CLASSIFY_MOSTLY: u32 = 4u32;
|
573
|
-
pub const FWPM_LAYER_FLAG_KERNEL: u32 = 1u32;
|
574
|
-
pub const FWPM_LAYER_IKEEXT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb14b7bdb_dbbd_473e_bed4_8b4708d4f270);
|
575
|
-
pub const FWPM_LAYER_IKEEXT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb64786b3_f687_4eb9_89d2_8ef32acdabe2);
|
576
|
-
pub const FWPM_LAYER_INBOUND_ICMP_ERROR_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x61499990_3cb6_4e84_b950_53b94b6964f3);
|
577
|
-
pub const FWPM_LAYER_INBOUND_ICMP_ERROR_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa6b17075_ebaf_4053_a4e7_213c8121ede5);
|
578
|
-
pub const FWPM_LAYER_INBOUND_ICMP_ERROR_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x65f9bdff_3b2d_4e5d_b8c6_c720651fe898);
|
579
|
-
pub const FWPM_LAYER_INBOUND_ICMP_ERROR_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa6e7ccc0_08fb_468d_a472_9771d5595e09);
|
580
|
-
pub const FWPM_LAYER_INBOUND_IPPACKET_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc86fd1bf_21cd_497e_a0bb_17425c885c58);
|
581
|
-
pub const FWPM_LAYER_INBOUND_IPPACKET_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb5a230d0_a8c0_44f2_916e_991b53ded1f7);
|
582
|
-
pub const FWPM_LAYER_INBOUND_IPPACKET_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf52032cb_991c_46e7_971d_2601459a91ca);
|
583
|
-
pub const FWPM_LAYER_INBOUND_IPPACKET_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xbb24c279_93b4_47a2_83ad_ae1698b50885);
|
584
|
-
pub const FWPM_LAYER_INBOUND_MAC_FRAME_ETHERNET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeffb7edb_0055_4f9a_a231_4ff8131ad191);
|
585
|
-
pub const FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd4220bd3_62ce_4f08_ae88_b56e8526df50);
|
586
|
-
pub const FWPM_LAYER_INBOUND_MAC_FRAME_NATIVE_FAST: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x853aaa8e_2b78_4d24_a804_36db08b29711);
|
587
|
-
pub const FWPM_LAYER_INBOUND_RESERVED2: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf4fb8d55_c076_46d8_a2c7_6a4c722ca4ed);
|
588
|
-
pub const FWPM_LAYER_INBOUND_TRANSPORT_FAST: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe41d2719_05c7_40f0_8983_ea8d17bbc2f6);
|
589
|
-
pub const FWPM_LAYER_INBOUND_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5926dfc8_e3cf_4426_a283_dc393f5d0f9d);
|
590
|
-
pub const FWPM_LAYER_INBOUND_TRANSPORT_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xac4a9833_f69d_4648_b261_6dc84835ef39);
|
591
|
-
pub const FWPM_LAYER_INBOUND_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x634a869f_fc23_4b90_b0c1_bf620a36ae6f);
|
592
|
-
pub const FWPM_LAYER_INBOUND_TRANSPORT_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2a6ff955_3b2b_49d2_9848_ad9d72dcaab7);
|
593
|
-
pub const FWPM_LAYER_INGRESS_VSWITCH_ETHERNET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7d98577a_9a87_41ec_9718_7cf589c9f32d);
|
594
|
-
pub const FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb2696ff6_774f_4554_9f7d_3da3945f8e85);
|
595
|
-
pub const FWPM_LAYER_INGRESS_VSWITCH_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x5ee314fc_7d8a_47f4_b7e3_291a36da4e12);
|
596
|
-
pub const FWPM_LAYER_IPFORWARD_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa82acc24_4ee1_4ee1_b465_fd1d25cb10a4);
|
597
|
-
pub const FWPM_LAYER_IPFORWARD_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9e9ea773_2fae_4210_8f17_34129ef369eb);
|
598
|
-
pub const FWPM_LAYER_IPFORWARD_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7b964818_19c7_493a_b71f_832c3684d28c);
|
599
|
-
pub const FWPM_LAYER_IPFORWARD_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x31524a5d_1dfe_472f_bb93_518ee945d8a2);
|
600
|
-
pub const FWPM_LAYER_IPSEC_KM_DEMUX_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf02b1526_a459_4a51_b9e3_759de52b9d2c);
|
601
|
-
pub const FWPM_LAYER_IPSEC_KM_DEMUX_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x2f755cf6_2fd4_4e88_b3e4_a91bca495235);
|
602
|
-
pub const FWPM_LAYER_IPSEC_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeda65c74_610d_4bc5_948f_3c4f89556867);
|
603
|
-
pub const FWPM_LAYER_IPSEC_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x13c48442_8d87_4261_9a29_59d2abc348b4);
|
604
|
-
pub const FWPM_LAYER_KM_AUTHORIZATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4aa226e9_9020_45fb_956a_c0249d841195);
|
605
|
-
pub const FWPM_LAYER_NAME_RESOLUTION_CACHE_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x0c2aa681_905b_4ccd_a467_4dd811d07b7b);
|
606
|
-
pub const FWPM_LAYER_NAME_RESOLUTION_CACHE_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x92d592fa_6b01_434a_9dea_d1e96ea97da9);
|
607
|
-
pub const FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x41390100_564c_4b32_bc1d_718048354d7c);
|
608
|
-
pub const FWPM_LAYER_OUTBOUND_ICMP_ERROR_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb3598d36_0561_4588_a6bf_e955e3f6264b);
|
609
|
-
pub const FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x7fb03b60_7b8d_4dfa_badd_980176fc4e12);
|
610
|
-
pub const FWPM_LAYER_OUTBOUND_ICMP_ERROR_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x65f2e647_8d0c_4f47_b19b_33a4d3f1357c);
|
611
|
-
pub const FWPM_LAYER_OUTBOUND_IPPACKET_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1e5c9fae_8a84_4135_a331_950b54229ecd);
|
612
|
-
pub const FWPM_LAYER_OUTBOUND_IPPACKET_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x08e4bcb5_b647_48f3_953c_e5ddbd03937e);
|
613
|
-
pub const FWPM_LAYER_OUTBOUND_IPPACKET_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa3b3ab6b_3564_488c_9117_f34e82142763);
|
614
|
-
pub const FWPM_LAYER_OUTBOUND_IPPACKET_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9513d7c4_a934_49dc_91a7_6ccb80cc02e3);
|
615
|
-
pub const FWPM_LAYER_OUTBOUND_MAC_FRAME_ETHERNET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x694673bc_d6db_4870_adee_0acdbdb7f4b2);
|
616
|
-
pub const FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x94c44912_9d6f_4ebf_b995_05ab8a088d1b);
|
617
|
-
pub const FWPM_LAYER_OUTBOUND_MAC_FRAME_NATIVE_FAST: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x470df946_c962_486f_9446_8293cbc75eb8);
|
618
|
-
pub const FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x037f317a_d696_494a_bba5_bffc265e6052);
|
619
|
-
pub const FWPM_LAYER_OUTBOUND_NETWORK_CONNECTION_POLICY_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x22a4fdb1_6d7e_48ae_ae77_3742525c3119);
|
620
|
-
pub const FWPM_LAYER_OUTBOUND_TRANSPORT_FAST: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x13ed4388_a070_4815_9935_7a9be6408b78);
|
621
|
-
pub const FWPM_LAYER_OUTBOUND_TRANSPORT_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x09e61aea_d214_46e2_9b21_b26b0b2f28c8);
|
622
|
-
pub const FWPM_LAYER_OUTBOUND_TRANSPORT_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xc5f10551_bdb0_43d7_a313_50e211f4d68a);
|
623
|
-
pub const FWPM_LAYER_OUTBOUND_TRANSPORT_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe1735bde_013f_4655_b351_a49e15762df0);
|
624
|
-
pub const FWPM_LAYER_OUTBOUND_TRANSPORT_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf433df69_ccbd_482e_b9b2_57165658c3b3);
|
625
|
-
pub const FWPM_LAYER_RPC_EPMAP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x9247bc61_eb07_47ee_872c_bfd78bfd1616);
|
626
|
-
pub const FWPM_LAYER_RPC_EP_ADD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x618dffc7_c450_4943_95db_99b4c16a55d4);
|
627
|
-
pub const FWPM_LAYER_RPC_PROXY_CONN: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x94a4b50b_ba5c_4f27_907a_229fac0c2a7a);
|
628
|
-
pub const FWPM_LAYER_RPC_PROXY_IF: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xf8a38615_e12c_41ac_98df_121ad981aade);
|
629
|
-
pub const FWPM_LAYER_RPC_UM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x75a89dda_95e4_40f3_adc7_7688a9c847e1);
|
630
|
-
pub const FWPM_LAYER_STREAM_PACKET_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xaf52d8ec_cb2d_44e5_ad92_f8dc38d2eb29);
|
631
|
-
pub const FWPM_LAYER_STREAM_PACKET_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x779a8ca3_f099_468f_b5d4_83535c461c02);
|
632
|
-
pub const FWPM_LAYER_STREAM_V4: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3b89653c_c170_49e4_b1cd_e0eeeee19a3e);
|
633
|
-
pub const FWPM_LAYER_STREAM_V4_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x25c4c2c2_25ff_4352_82f9_c54a4a4726dc);
|
634
|
-
pub const FWPM_LAYER_STREAM_V6: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x47c9137a_7ec4_46b3_b6e4_48e926b1eda4);
|
635
|
-
pub const FWPM_LAYER_STREAM_V6_DISCARD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x10a59fc7_b628_4c41_9eb8_cf37d55103cf);
|
636
|
-
pub const FWPM_NETWORK_CONNECTION_POLICY_CONTEXT: FWPM_PROVIDER_CONTEXT_TYPE = 13i32;
|
637
|
-
pub const FWPM_NET_EVENT_FLAG_APP_ID_SET: u32 = 32u32;
|
638
|
-
pub const FWPM_NET_EVENT_FLAG_EFFECTIVE_NAME_SET: u32 = 8192u32;
|
639
|
-
pub const FWPM_NET_EVENT_FLAG_ENTERPRISE_ID_SET: u32 = 2048u32;
|
640
|
-
pub const FWPM_NET_EVENT_FLAG_IP_PROTOCOL_SET: u32 = 1u32;
|
641
|
-
pub const FWPM_NET_EVENT_FLAG_IP_VERSION_SET: u32 = 256u32;
|
642
|
-
pub const FWPM_NET_EVENT_FLAG_LOCAL_ADDR_SET: u32 = 2u32;
|
643
|
-
pub const FWPM_NET_EVENT_FLAG_LOCAL_PORT_SET: u32 = 8u32;
|
644
|
-
pub const FWPM_NET_EVENT_FLAG_PACKAGE_ID_SET: u32 = 1024u32;
|
645
|
-
pub const FWPM_NET_EVENT_FLAG_POLICY_FLAGS_SET: u32 = 4096u32;
|
646
|
-
pub const FWPM_NET_EVENT_FLAG_REAUTH_REASON_SET: u32 = 512u32;
|
647
|
-
pub const FWPM_NET_EVENT_FLAG_REMOTE_ADDR_SET: u32 = 4u32;
|
648
|
-
pub const FWPM_NET_EVENT_FLAG_REMOTE_PORT_SET: u32 = 16u32;
|
649
|
-
pub const FWPM_NET_EVENT_FLAG_SCOPE_ID_SET: u32 = 128u32;
|
650
|
-
pub const FWPM_NET_EVENT_FLAG_USER_ID_SET: u32 = 64u32;
|
651
|
-
pub const FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_BENIGN: u32 = 2u32;
|
652
|
-
pub const FWPM_NET_EVENT_IKEEXT_EM_FAILURE_FLAG_MULTIPLE: u32 = 1u32;
|
653
|
-
pub const FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_BENIGN: u32 = 1u32;
|
654
|
-
pub const FWPM_NET_EVENT_IKEEXT_MM_FAILURE_FLAG_MULTIPLE: u32 = 2u32;
|
655
|
-
pub const FWPM_NET_EVENT_KEYWORD_CAPABILITY_ALLOW: u32 = 8u32;
|
656
|
-
pub const FWPM_NET_EVENT_KEYWORD_CAPABILITY_DROP: u32 = 4u32;
|
657
|
-
pub const FWPM_NET_EVENT_KEYWORD_CLASSIFY_ALLOW: u32 = 16u32;
|
658
|
-
pub const FWPM_NET_EVENT_KEYWORD_INBOUND_BCAST: u32 = 2u32;
|
659
|
-
pub const FWPM_NET_EVENT_KEYWORD_INBOUND_MCAST: u32 = 1u32;
|
660
|
-
pub const FWPM_NET_EVENT_KEYWORD_PORT_SCANNING_DROP: u32 = 32u32;
|
661
|
-
pub const FWPM_NET_EVENT_TYPE_CAPABILITY_ALLOW: FWPM_NET_EVENT_TYPE = 8i32;
|
662
|
-
pub const FWPM_NET_EVENT_TYPE_CAPABILITY_DROP: FWPM_NET_EVENT_TYPE = 7i32;
|
663
|
-
pub const FWPM_NET_EVENT_TYPE_CLASSIFY_ALLOW: FWPM_NET_EVENT_TYPE = 6i32;
|
664
|
-
pub const FWPM_NET_EVENT_TYPE_CLASSIFY_DROP: FWPM_NET_EVENT_TYPE = 3i32;
|
665
|
-
pub const FWPM_NET_EVENT_TYPE_CLASSIFY_DROP_MAC: FWPM_NET_EVENT_TYPE = 9i32;
|
666
|
-
pub const FWPM_NET_EVENT_TYPE_IKEEXT_EM_FAILURE: FWPM_NET_EVENT_TYPE = 2i32;
|
667
|
-
pub const FWPM_NET_EVENT_TYPE_IKEEXT_MM_FAILURE: FWPM_NET_EVENT_TYPE = 0i32;
|
668
|
-
pub const FWPM_NET_EVENT_TYPE_IKEEXT_QM_FAILURE: FWPM_NET_EVENT_TYPE = 1i32;
|
669
|
-
pub const FWPM_NET_EVENT_TYPE_IPSEC_DOSP_DROP: FWPM_NET_EVENT_TYPE = 5i32;
|
670
|
-
pub const FWPM_NET_EVENT_TYPE_IPSEC_KERNEL_DROP: FWPM_NET_EVENT_TYPE = 4i32;
|
671
|
-
pub const FWPM_NET_EVENT_TYPE_LPM_PACKET_ARRIVAL: FWPM_NET_EVENT_TYPE = 10i32;
|
672
|
-
pub const FWPM_NET_EVENT_TYPE_MAX: FWPM_NET_EVENT_TYPE = 11i32;
|
673
|
-
pub const FWPM_PROVIDER_CONTEXT_FLAG_DOWNLEVEL: u32 = 2u32;
|
674
|
-
pub const FWPM_PROVIDER_CONTEXT_FLAG_PERSISTENT: u32 = 1u32;
|
675
|
-
pub const FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_AUTHIP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb25ea800_0d02_46ed_92bd_7fa84bb73e9d);
|
676
|
-
pub const FWPM_PROVIDER_CONTEXT_SECURE_SOCKET_IPSEC: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x8c2d4144_f8e0_42c0_94ce_7ccfc63b2f9b);
|
677
|
-
pub const FWPM_PROVIDER_CONTEXT_TYPE_MAX: FWPM_PROVIDER_CONTEXT_TYPE = 14i32;
|
678
|
-
pub const FWPM_PROVIDER_FLAG_DISABLED: u32 = 16u32;
|
679
|
-
pub const FWPM_PROVIDER_FLAG_PERSISTENT: u32 = 1u32;
|
680
|
-
pub const FWPM_PROVIDER_IKEEXT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x10ad9216_ccde_456c_8b16_e9f04e60a90b);
|
681
|
-
pub const FWPM_PROVIDER_IPSEC_DOSP_CONFIG: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3c6c05a9_c05c_4bb9_8338_2327814ce8bf);
|
682
|
-
pub const FWPM_PROVIDER_MPSSVC_APP_ISOLATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x3cc2631f_2d5d_43a0_b174_614837d863a1);
|
683
|
-
pub const FWPM_PROVIDER_MPSSVC_EDP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa90296f7_46b8_4457_8f84_b05e05d3c622);
|
684
|
-
pub const FWPM_PROVIDER_MPSSVC_TENANT_RESTRICTIONS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xd0718ff9_44da_4f50_9dc2_c963a4247613);
|
685
|
-
pub const FWPM_PROVIDER_MPSSVC_WF: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xdecc16ca_3f33_4346_be1e_8fb4ae0f3d62);
|
686
|
-
pub const FWPM_PROVIDER_MPSSVC_WSH: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x4b153735_1049_4480_aab4_d1b9bdc03710);
|
687
|
-
pub const FWPM_PROVIDER_TCP_CHIMNEY_OFFLOAD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x896aa19e_9a34_4bcb_ae79_beb9127c84b9);
|
688
|
-
pub const FWPM_PROVIDER_TCP_TEMPLATES: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x76cfcd30_3394_432d_bed3_441ae50e63c3);
|
689
|
-
pub const FWPM_SERVICE_RUNNING: FWPM_SERVICE_STATE = 3i32;
|
690
|
-
pub const FWPM_SERVICE_START_PENDING: FWPM_SERVICE_STATE = 1i32;
|
691
|
-
pub const FWPM_SERVICE_STATE_MAX: FWPM_SERVICE_STATE = 4i32;
|
692
|
-
pub const FWPM_SERVICE_STOPPED: FWPM_SERVICE_STATE = 0i32;
|
693
|
-
pub const FWPM_SERVICE_STOP_PENDING: FWPM_SERVICE_STATE = 2i32;
|
694
|
-
pub const FWPM_SESSION_FLAG_DYNAMIC: u32 = 1u32;
|
695
|
-
pub const FWPM_SESSION_FLAG_RESERVED: u32 = 268435456u32;
|
696
|
-
pub const FWPM_SUBLAYER_FLAG_PERSISTENT: u32 = 1u32;
|
697
|
-
pub const FWPM_SUBLAYER_INSPECTION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x877519e1_e6a9_41a5_81b4_8c4f118e4a60);
|
698
|
-
pub const FWPM_SUBLAYER_IPSEC_DOSP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xe076d572_5d3d_48ef_802b_909eddb098bd);
|
699
|
-
pub const FWPM_SUBLAYER_IPSEC_FORWARD_OUTBOUND_TUNNEL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xa5082e73_8f71_4559_8a9a_101cea04ef87);
|
700
|
-
pub const FWPM_SUBLAYER_IPSEC_SECURITY_REALM: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x37a57701_5884_4964_92b8_3e704688b0ad);
|
701
|
-
pub const FWPM_SUBLAYER_IPSEC_TUNNEL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x83f299ed_9ff4_4967_aff4_c309f4dab827);
|
702
|
-
pub const FWPM_SUBLAYER_LIPS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1b75c0ce_ff60_4711_a70f_b4958cc3b2d0);
|
703
|
-
pub const FWPM_SUBLAYER_MPSSVC_APP_ISOLATION: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xffe221c3_92a8_4564_a59f_dafb70756020);
|
704
|
-
pub const FWPM_SUBLAYER_MPSSVC_EDP: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x09a47e38_fa97_471b_b123_18bcd7e65071);
|
705
|
-
pub const FWPM_SUBLAYER_MPSSVC_QUARANTINE: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb3cdd441_af90_41ba_a745_7c6008ff2302);
|
706
|
-
pub const FWPM_SUBLAYER_MPSSVC_TENANT_RESTRICTIONS: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x1ec6c7e1_fdd9_478a_b55f_ff8ba1d2c17d);
|
707
|
-
pub const FWPM_SUBLAYER_MPSSVC_WF: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb3cdd441_af90_41ba_a745_7c6008ff2301);
|
708
|
-
pub const FWPM_SUBLAYER_MPSSVC_WSH: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xb3cdd441_af90_41ba_a745_7c6008ff2300);
|
709
|
-
pub const FWPM_SUBLAYER_RPC_AUDIT: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x758c84f4_fb48_4de9_9aeb_3ed9551ab1fd);
|
710
|
-
pub const FWPM_SUBLAYER_SECURE_SOCKET: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x15a66e17_3f3c_4f7b_aa6c_812aa613dd82);
|
711
|
-
pub const FWPM_SUBLAYER_TCP_CHIMNEY_OFFLOAD: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x337608b9_b7d5_4d5f_82f9_3618618bc058);
|
712
|
-
pub const FWPM_SUBLAYER_TCP_TEMPLATES: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0x24421dcf_0ac5_4caa_9e14_50f6e3636af0);
|
713
|
-
pub const FWPM_SUBLAYER_TEREDO: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xba69dc66_5176_4979_9c89_26a7b46a8327);
|
714
|
-
pub const FWPM_SUBLAYER_UNIVERSAL: windows_sys::core::GUID = windows_sys::core::GUID::from_u128(0xeebecc03_ced4_4380_819a_2734397b2b74);
|
715
|
-
pub const FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_ADD: FWPM_SUBSCRIPTION_FLAGS = 1u32;
|
716
|
-
pub const FWPM_SUBSCRIPTION_FLAG_NOTIFY_ON_DELETE: FWPM_SUBSCRIPTION_FLAGS = 2u32;
|
717
|
-
pub const FWPM_SYSTEM_PORT_IPHTTPS_IN: FWPM_SYSTEM_PORT_TYPE = 2i32;
|
718
|
-
pub const FWPM_SYSTEM_PORT_IPHTTPS_OUT: FWPM_SYSTEM_PORT_TYPE = 3i32;
|
719
|
-
pub const FWPM_SYSTEM_PORT_RPC_EPMAP: FWPM_SYSTEM_PORT_TYPE = 0i32;
|
720
|
-
pub const FWPM_SYSTEM_PORT_TEREDO: FWPM_SYSTEM_PORT_TYPE = 1i32;
|
721
|
-
pub const FWPM_SYSTEM_PORT_TYPE_MAX: FWPM_SYSTEM_PORT_TYPE = 4i32;
|
722
|
-
pub const FWPM_TUNNEL_FLAG_ENABLE_VIRTUAL_IF_TUNNELING: u32 = 2u32;
|
723
|
-
pub const FWPM_TUNNEL_FLAG_POINT_TO_POINT: u32 = 1u32;
|
724
|
-
pub const FWPM_TUNNEL_FLAG_RESERVED0: u32 = 4u32;
|
725
|
-
pub const FWPM_TXN_READ_ONLY: u32 = 1u32;
|
726
|
-
pub const FWPM_VSWITCH_EVENT_DISABLED_FOR_INSPECTION: FWPM_VSWITCH_EVENT_TYPE = 3i32;
|
727
|
-
pub const FWPM_VSWITCH_EVENT_ENABLED_FOR_INSPECTION: FWPM_VSWITCH_EVENT_TYPE = 2i32;
|
728
|
-
pub const FWPM_VSWITCH_EVENT_FILTER_ADD_TO_INCOMPLETE_LAYER: FWPM_VSWITCH_EVENT_TYPE = 0i32;
|
729
|
-
pub const FWPM_VSWITCH_EVENT_FILTER_ENGINE_NOT_IN_REQUIRED_POSITION: FWPM_VSWITCH_EVENT_TYPE = 1i32;
|
730
|
-
pub const FWPM_VSWITCH_EVENT_FILTER_ENGINE_REORDER: FWPM_VSWITCH_EVENT_TYPE = 4i32;
|
731
|
-
pub const FWPM_VSWITCH_EVENT_MAX: FWPM_VSWITCH_EVENT_TYPE = 5i32;
|
732
|
-
pub const FWPM_WEIGHT_RANGE_IKE_EXEMPTIONS: u32 = 12u32;
|
733
|
-
pub const FWPM_WEIGHT_RANGE_IPSEC: u32 = 0u32;
|
734
|
-
pub const FWPS_ALE_ENDPOINT_FLAG_IPSEC_SECURED: u32 = 1u32;
|
735
|
-
pub const FWPS_CLASSIFY_OUT_FLAG_ABSORB: u32 = 1u32;
|
736
|
-
pub const FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_CHECK: u32 = 8u32;
|
737
|
-
pub const FWPS_CLASSIFY_OUT_FLAG_ALE_FAST_CACHE_POSSIBLE: u32 = 16u32;
|
738
|
-
pub const FWPS_CLASSIFY_OUT_FLAG_BUFFER_LIMIT_REACHED: u32 = 2u32;
|
739
|
-
pub const FWPS_CLASSIFY_OUT_FLAG_NO_MORE_DATA: u32 = 4u32;
|
740
|
-
pub const FWPS_FILTER_FLAG_CLEAR_ACTION_RIGHT: u32 = 1u32;
|
741
|
-
pub const FWPS_FILTER_FLAG_HAS_SECURITY_REALM_PROVIDER_CONTEXT: u32 = 8u32;
|
742
|
-
pub const FWPS_FILTER_FLAG_IPSEC_NO_ACQUIRE_INITIATE: u32 = 32u32;
|
743
|
-
pub const FWPS_FILTER_FLAG_OR_CONDITIONS: u32 = 4u32;
|
744
|
-
pub const FWPS_FILTER_FLAG_PERMIT_IF_CALLOUT_UNREGISTERED: u32 = 2u32;
|
745
|
-
pub const FWPS_FILTER_FLAG_RESERVED0: u32 = 64u32;
|
746
|
-
pub const FWPS_FILTER_FLAG_RESERVED1: u32 = 128u32;
|
747
|
-
pub const FWPS_FILTER_FLAG_SILENT_MODE: u32 = 16u32;
|
748
|
-
pub const FWPS_INCOMING_FLAG_ABSORB: u32 = 4u32;
|
749
|
-
pub const FWPS_INCOMING_FLAG_CACHE_SAFE: u32 = 1u32;
|
750
|
-
pub const FWPS_INCOMING_FLAG_CONNECTION_FAILING_INDICATION: u32 = 8u32;
|
751
|
-
pub const FWPS_INCOMING_FLAG_ENFORCE_QUERY: u32 = 2u32;
|
752
|
-
pub const FWPS_INCOMING_FLAG_IS_LOCAL_ONLY_FLOW: u32 = 128u32;
|
753
|
-
pub const FWPS_INCOMING_FLAG_IS_LOOSE_SOURCE_FLOW: u32 = 64u32;
|
754
|
-
pub const FWPS_INCOMING_FLAG_MID_STREAM_INSPECTION: u32 = 16u32;
|
755
|
-
pub const FWPS_INCOMING_FLAG_RECLASSIFY: u32 = 32u32;
|
756
|
-
pub const FWPS_INCOMING_FLAG_RESERVED0: u32 = 256u32;
|
757
|
-
pub const FWPS_L2_INCOMING_FLAG_IS_RAW_IPV4_FRAMING: u32 = 1u32;
|
758
|
-
pub const FWPS_L2_INCOMING_FLAG_IS_RAW_IPV6_FRAMING: u32 = 2u32;
|
759
|
-
pub const FWPS_L2_INCOMING_FLAG_RECLASSIFY_MULTI_DESTINATION: u32 = 8u32;
|
760
|
-
pub const FWPS_L2_METADATA_FIELD_ETHERNET_MAC_HEADER_SIZE: u32 = 1u32;
|
761
|
-
pub const FWPS_L2_METADATA_FIELD_RESERVED: u32 = 2147483648u32;
|
762
|
-
pub const FWPS_L2_METADATA_FIELD_VSWITCH_DESTINATION_PORT_ID: u32 = 32u32;
|
763
|
-
pub const FWPS_L2_METADATA_FIELD_VSWITCH_PACKET_CONTEXT: u32 = 16u32;
|
764
|
-
pub const FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_NIC_INDEX: u32 = 8u32;
|
765
|
-
pub const FWPS_L2_METADATA_FIELD_VSWITCH_SOURCE_PORT_ID: u32 = 4u32;
|
766
|
-
pub const FWPS_L2_METADATA_FIELD_WIFI_OPERATION_MODE: u32 = 2u32;
|
767
|
-
pub const FWPS_METADATA_FIELD_ALE_CLASSIFY_REQUIRED: u32 = 4194304u32;
|
768
|
-
pub const FWPS_METADATA_FIELD_COMPARTMENT_ID: u32 = 2048u32;
|
769
|
-
pub const FWPS_METADATA_FIELD_COMPLETION_HANDLE: u32 = 16384u32;
|
770
|
-
pub const FWPS_METADATA_FIELD_DESTINATION_INTERFACE_INDEX: u32 = 512u32;
|
771
|
-
pub const FWPS_METADATA_FIELD_DESTINATION_PREFIX: u32 = 16777216u32;
|
772
|
-
pub const FWPS_METADATA_FIELD_DISCARD_REASON: u32 = 1u32;
|
773
|
-
pub const FWPS_METADATA_FIELD_ETHER_FRAME_LENGTH: u32 = 33554432u32;
|
774
|
-
pub const FWPS_METADATA_FIELD_FLOW_HANDLE: u32 = 2u32;
|
775
|
-
pub const FWPS_METADATA_FIELD_FORWARD_LAYER_INBOUND_PASS_THRU: u32 = 2097152u32;
|
776
|
-
pub const FWPS_METADATA_FIELD_FORWARD_LAYER_OUTBOUND_PASS_THRU: u32 = 1048576u32;
|
777
|
-
pub const FWPS_METADATA_FIELD_FRAGMENT_DATA: u32 = 4096u32;
|
778
|
-
pub const FWPS_METADATA_FIELD_ICMP_ID_AND_SEQUENCE: u32 = 134217728u32;
|
779
|
-
pub const FWPS_METADATA_FIELD_IP_HEADER_SIZE: u32 = 4u32;
|
780
|
-
pub const FWPS_METADATA_FIELD_LOCAL_REDIRECT_TARGET_PID: u32 = 268435456u32;
|
781
|
-
pub const FWPS_METADATA_FIELD_ORIGINAL_DESTINATION: u32 = 536870912u32;
|
782
|
-
pub const FWPS_METADATA_FIELD_PACKET_DIRECTION: u32 = 262144u32;
|
783
|
-
pub const FWPS_METADATA_FIELD_PACKET_SYSTEM_CRITICAL: u32 = 524288u32;
|
784
|
-
pub const FWPS_METADATA_FIELD_PARENT_ENDPOINT_HANDLE: u32 = 67108864u32;
|
785
|
-
pub const FWPS_METADATA_FIELD_PATH_MTU: u32 = 8192u32;
|
786
|
-
pub const FWPS_METADATA_FIELD_PROCESS_ID: u32 = 32u32;
|
787
|
-
pub const FWPS_METADATA_FIELD_PROCESS_PATH: u32 = 8u32;
|
788
|
-
pub const FWPS_METADATA_FIELD_REDIRECT_RECORD_HANDLE: u32 = 1073741824u32;
|
789
|
-
pub const FWPS_METADATA_FIELD_REMOTE_SCOPE_ID: u32 = 131072u32;
|
790
|
-
pub const FWPS_METADATA_FIELD_RESERVED: u32 = 128u32;
|
791
|
-
pub const FWPS_METADATA_FIELD_SOURCE_INTERFACE_INDEX: u32 = 256u32;
|
792
|
-
pub const FWPS_METADATA_FIELD_SUB_PROCESS_TAG: u32 = 2147483648u32;
|
793
|
-
pub const FWPS_METADATA_FIELD_SYSTEM_FLAGS: u32 = 64u32;
|
794
|
-
pub const FWPS_METADATA_FIELD_TOKEN: u32 = 16u32;
|
795
|
-
pub const FWPS_METADATA_FIELD_TRANSPORT_CONTROL_DATA: u32 = 65536u32;
|
796
|
-
pub const FWPS_METADATA_FIELD_TRANSPORT_ENDPOINT_HANDLE: u32 = 32768u32;
|
797
|
-
pub const FWPS_METADATA_FIELD_TRANSPORT_HEADER_INCLUDE_HEADER: u32 = 8388608u32;
|
798
|
-
pub const FWPS_METADATA_FIELD_TRANSPORT_HEADER_SIZE: u32 = 1024u32;
|
799
|
-
pub const FWPS_RIGHT_ACTION_WRITE: u32 = 1u32;
|
800
|
-
pub const FWP_ACTION_BLOCK: FWP_ACTION_TYPE = 4097u32;
|
801
|
-
pub const FWP_ACTION_CALLOUT_INSPECTION: FWP_ACTION_TYPE = 24580u32;
|
802
|
-
pub const FWP_ACTION_CALLOUT_TERMINATING: FWP_ACTION_TYPE = 20483u32;
|
803
|
-
pub const FWP_ACTION_CALLOUT_UNKNOWN: FWP_ACTION_TYPE = 16389u32;
|
804
|
-
pub const FWP_ACTION_CONTINUE: FWP_ACTION_TYPE = 8198u32;
|
805
|
-
pub const FWP_ACTION_FLAG_CALLOUT: u32 = 16384u32;
|
806
|
-
pub const FWP_ACTION_FLAG_NON_TERMINATING: u32 = 8192u32;
|
807
|
-
pub const FWP_ACTION_FLAG_TERMINATING: u32 = 4096u32;
|
808
|
-
pub const FWP_ACTION_NONE: FWP_ACTION_TYPE = 7u32;
|
809
|
-
pub const FWP_ACTION_NONE_NO_MATCH: FWP_ACTION_TYPE = 8u32;
|
810
|
-
pub const FWP_ACTION_PERMIT: FWP_ACTION_TYPE = 4098u32;
|
811
|
-
pub const FWP_ACTRL_MATCH_FILTER: u32 = 1u32;
|
812
|
-
pub const FWP_AF_ETHER: FWP_AF = 2i32;
|
813
|
-
pub const FWP_AF_INET: FWP_AF = 0i32;
|
814
|
-
pub const FWP_AF_INET6: FWP_AF = 1i32;
|
815
|
-
pub const FWP_AF_NONE: FWP_AF = 3i32;
|
816
|
-
pub const FWP_BYTEMAP_ARRAY64_SIZE: u32 = 8u32;
|
817
|
-
pub const FWP_BYTE_ARRAY16_TYPE: FWP_DATA_TYPE = 11i32;
|
818
|
-
pub const FWP_BYTE_ARRAY6_SIZE: u32 = 6u32;
|
819
|
-
pub const FWP_BYTE_ARRAY6_TYPE: FWP_DATA_TYPE = 18i32;
|
820
|
-
pub const FWP_BYTE_BLOB_TYPE: FWP_DATA_TYPE = 12i32;
|
821
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_L2_BATCH_CLASSIFY: u32 = 128u32;
|
822
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_MID_STREAM_INSPECTION: u32 = 8u32;
|
823
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_OFFLOAD: u32 = 2u32;
|
824
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_RECLASSIFY: u32 = 16u32;
|
825
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_RSC: u32 = 64u32;
|
826
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_URO: u32 = 512u32;
|
827
|
-
pub const FWP_CALLOUT_FLAG_ALLOW_USO: u32 = 256u32;
|
828
|
-
pub const FWP_CALLOUT_FLAG_CONDITIONAL_ON_FLOW: u32 = 1u32;
|
829
|
-
pub const FWP_CALLOUT_FLAG_ENABLE_COMMIT_ADD_NOTIFY: u32 = 4u32;
|
830
|
-
pub const FWP_CALLOUT_FLAG_RESERVED1: u32 = 32u32;
|
831
|
-
pub const FWP_CALLOUT_FLAG_RESERVED2: u32 = 1024u32;
|
832
|
-
pub const FWP_CLASSIFY_OPTION_LOCAL_ONLY_MAPPING: FWP_CLASSIFY_OPTION_TYPE = 7i32;
|
833
|
-
pub const FWP_CLASSIFY_OPTION_LOOSE_SOURCE_MAPPING: FWP_CLASSIFY_OPTION_TYPE = 1i32;
|
834
|
-
pub const FWP_CLASSIFY_OPTION_MAX: FWP_CLASSIFY_OPTION_TYPE = 8i32;
|
835
|
-
pub const FWP_CLASSIFY_OPTION_MCAST_BCAST_LIFETIME: FWP_CLASSIFY_OPTION_TYPE = 3i32;
|
836
|
-
pub const FWP_CLASSIFY_OPTION_MULTICAST_STATE: FWP_CLASSIFY_OPTION_TYPE = 0i32;
|
837
|
-
pub const FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_MM_POLICY_KEY: FWP_CLASSIFY_OPTION_TYPE = 5i32;
|
838
|
-
pub const FWP_CLASSIFY_OPTION_SECURE_SOCKET_AUTHIP_QM_POLICY_KEY: FWP_CLASSIFY_OPTION_TYPE = 6i32;
|
839
|
-
pub const FWP_CLASSIFY_OPTION_SECURE_SOCKET_SECURITY_FLAGS: FWP_CLASSIFY_OPTION_TYPE = 4i32;
|
840
|
-
pub const FWP_CLASSIFY_OPTION_UNICAST_LIFETIME: FWP_CLASSIFY_OPTION_TYPE = 2i32;
|
841
|
-
pub const FWP_CONDITION_FLAG_IS_APPCONTAINER_LOOPBACK: u32 = 4194304u32;
|
842
|
-
pub const FWP_CONDITION_FLAG_IS_AUTH_FW: u32 = 65536u32;
|
843
|
-
pub const FWP_CONDITION_FLAG_IS_CONNECTION_REDIRECTED: u32 = 1048576u32;
|
844
|
-
pub const FWP_CONDITION_FLAG_IS_FRAGMENT: u32 = 32u32;
|
845
|
-
pub const FWP_CONDITION_FLAG_IS_FRAGMENT_GROUP: u32 = 64u32;
|
846
|
-
pub const FWP_CONDITION_FLAG_IS_HONORING_POLICY_AUTHORIZE: u32 = 33554432u32;
|
847
|
-
pub const FWP_CONDITION_FLAG_IS_IMPLICIT_BIND: u32 = 512u32;
|
848
|
-
pub const FWP_CONDITION_FLAG_IS_INBOUND_PASS_THRU: u32 = 524288u32;
|
849
|
-
pub const FWP_CONDITION_FLAG_IS_IPSEC_NATT_RECLASSIFY: u32 = 128u32;
|
850
|
-
pub const FWP_CONDITION_FLAG_IS_IPSEC_SECURED: u32 = 2u32;
|
851
|
-
pub const FWP_CONDITION_FLAG_IS_LOOPBACK: u32 = 1u32;
|
852
|
-
pub const FWP_CONDITION_FLAG_IS_NAME_APP_SPECIFIED: u32 = 16384u32;
|
853
|
-
pub const FWP_CONDITION_FLAG_IS_NON_APPCONTAINER_LOOPBACK: u32 = 8388608u32;
|
854
|
-
pub const FWP_CONDITION_FLAG_IS_OUTBOUND_PASS_THRU: u32 = 262144u32;
|
855
|
-
pub const FWP_CONDITION_FLAG_IS_PROMISCUOUS: u32 = 32768u32;
|
856
|
-
pub const FWP_CONDITION_FLAG_IS_PROXY_CONNECTION: u32 = 2097152u32;
|
857
|
-
pub const FWP_CONDITION_FLAG_IS_RAW_ENDPOINT: u32 = 16u32;
|
858
|
-
pub const FWP_CONDITION_FLAG_IS_REASSEMBLED: u32 = 1024u32;
|
859
|
-
pub const FWP_CONDITION_FLAG_IS_REAUTHORIZE: u32 = 4u32;
|
860
|
-
pub const FWP_CONDITION_FLAG_IS_RECLASSIFY: u32 = 131072u32;
|
861
|
-
pub const FWP_CONDITION_FLAG_IS_RESERVED: u32 = 16777216u32;
|
862
|
-
pub const FWP_CONDITION_FLAG_IS_WILDCARD_BIND: u32 = 8u32;
|
863
|
-
pub const FWP_CONDITION_FLAG_REQUIRES_ALE_CLASSIFY: u32 = 256u32;
|
864
|
-
pub const FWP_CONDITION_L2_IF_CONNECTOR_PRESENT: u32 = 128u32;
|
865
|
-
pub const FWP_CONDITION_L2_IS_IP_FRAGMENT_GROUP: u32 = 64u32;
|
866
|
-
pub const FWP_CONDITION_L2_IS_MALFORMED_PACKET: u32 = 32u32;
|
867
|
-
pub const FWP_CONDITION_L2_IS_MOBILE_BROADBAND: u32 = 4u32;
|
868
|
-
pub const FWP_CONDITION_L2_IS_NATIVE_ETHERNET: u32 = 1u32;
|
869
|
-
pub const FWP_CONDITION_L2_IS_VM2VM: u32 = 16u32;
|
870
|
-
pub const FWP_CONDITION_L2_IS_WIFI: u32 = 2u32;
|
871
|
-
pub const FWP_CONDITION_L2_IS_WIFI_DIRECT_DATA: u32 = 8u32;
|
872
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_CHECK_OFFLOAD: u32 = 65536u32;
|
873
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_CLASSIFY_COMPLETION: u32 = 16u32;
|
874
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_EDP_POLICY_CHANGED: u32 = 512u32;
|
875
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_IPSEC_PROPERTIES_CHANGED: u32 = 32u32;
|
876
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_MID_STREAM_INSPECTION: u32 = 64u32;
|
877
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_NEW_ARRIVAL_INTERFACE: u32 = 2u32;
|
878
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_NEW_INBOUND_MCAST_BCAST_PACKET: u32 = 256u32;
|
879
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_NEW_NEXTHOP_INTERFACE: u32 = 4u32;
|
880
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_POLICY_CHANGE: u32 = 1u32;
|
881
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_PROFILE_CROSSING: u32 = 8u32;
|
882
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_PROXY_HANDLE_CHANGED: u32 = 16384u32;
|
883
|
-
pub const FWP_CONDITION_REAUTHORIZE_REASON_SOCKET_PROPERTY_CHANGED: u32 = 128u32;
|
884
|
-
pub const FWP_CONDITION_SOCKET_PROPERTY_FLAG_ALLOW_EDGE_TRAFFIC: u32 = 2u32;
|
885
|
-
pub const FWP_CONDITION_SOCKET_PROPERTY_FLAG_DENY_EDGE_TRAFFIC: u32 = 4u32;
|
886
|
-
pub const FWP_CONDITION_SOCKET_PROPERTY_FLAG_IS_SYSTEM_PORT_RPC: u32 = 1u32;
|
887
|
-
pub const FWP_DATA_TYPE_MAX: FWP_DATA_TYPE = 259i32;
|
888
|
-
pub const FWP_DIRECTION_INBOUND: FWP_DIRECTION = 1i32;
|
889
|
-
pub const FWP_DIRECTION_MAX: FWP_DIRECTION = 2i32;
|
890
|
-
pub const FWP_DIRECTION_OUTBOUND: FWP_DIRECTION = 0i32;
|
891
|
-
pub const FWP_DOUBLE: FWP_DATA_TYPE = 10i32;
|
892
|
-
pub const FWP_EMPTY: FWP_DATA_TYPE = 0i32;
|
893
|
-
pub const FWP_ETHER_ENCAP_METHOD_ETHER_V2: FWP_ETHER_ENCAP_METHOD = 0i32;
|
894
|
-
pub const FWP_ETHER_ENCAP_METHOD_SNAP: FWP_ETHER_ENCAP_METHOD = 1i32;
|
895
|
-
pub const FWP_ETHER_ENCAP_METHOD_SNAP_W_OUI_ZERO: FWP_ETHER_ENCAP_METHOD = 3i32;
|
896
|
-
pub const FWP_FILTER_ENUM_FLAG_BEST_TERMINATING_MATCH: u32 = 1u32;
|
897
|
-
pub const FWP_FILTER_ENUM_FLAG_BOOTTIME_ONLY: u32 = 4u32;
|
898
|
-
pub const FWP_FILTER_ENUM_FLAG_INCLUDE_BOOTTIME: u32 = 8u32;
|
899
|
-
pub const FWP_FILTER_ENUM_FLAG_INCLUDE_DISABLED: u32 = 16u32;
|
900
|
-
pub const FWP_FILTER_ENUM_FLAG_RESERVED1: u32 = 32u32;
|
901
|
-
pub const FWP_FILTER_ENUM_FLAG_SORTED: u32 = 2u32;
|
902
|
-
pub const FWP_FILTER_ENUM_FULLY_CONTAINED: FWP_FILTER_ENUM_TYPE = 0i32;
|
903
|
-
pub const FWP_FILTER_ENUM_OVERLAPPING: FWP_FILTER_ENUM_TYPE = 1i32;
|
904
|
-
pub const FWP_FILTER_ENUM_TYPE_MAX: FWP_FILTER_ENUM_TYPE = 2i32;
|
905
|
-
pub const FWP_FLOAT: FWP_DATA_TYPE = 9i32;
|
906
|
-
pub const FWP_INT16: FWP_DATA_TYPE = 6i32;
|
907
|
-
pub const FWP_INT32: FWP_DATA_TYPE = 7i32;
|
908
|
-
pub const FWP_INT64: FWP_DATA_TYPE = 8i32;
|
909
|
-
pub const FWP_INT8: FWP_DATA_TYPE = 5i32;
|
910
|
-
pub const FWP_IP_VERSION_MAX: FWP_IP_VERSION = 3i32;
|
911
|
-
pub const FWP_IP_VERSION_NONE: FWP_IP_VERSION = 2i32;
|
912
|
-
pub const FWP_IP_VERSION_V4: FWP_IP_VERSION = 0i32;
|
913
|
-
pub const FWP_IP_VERSION_V6: FWP_IP_VERSION = 1i32;
|
914
|
-
pub const FWP_MATCH_EQUAL: FWP_MATCH_TYPE = 0i32;
|
915
|
-
pub const FWP_MATCH_EQUAL_CASE_INSENSITIVE: FWP_MATCH_TYPE = 9i32;
|
916
|
-
pub const FWP_MATCH_FLAGS_ALL_SET: FWP_MATCH_TYPE = 6i32;
|
917
|
-
pub const FWP_MATCH_FLAGS_ANY_SET: FWP_MATCH_TYPE = 7i32;
|
918
|
-
pub const FWP_MATCH_FLAGS_NONE_SET: FWP_MATCH_TYPE = 8i32;
|
919
|
-
pub const FWP_MATCH_GREATER: FWP_MATCH_TYPE = 1i32;
|
920
|
-
pub const FWP_MATCH_GREATER_OR_EQUAL: FWP_MATCH_TYPE = 3i32;
|
921
|
-
pub const FWP_MATCH_LESS: FWP_MATCH_TYPE = 2i32;
|
922
|
-
pub const FWP_MATCH_LESS_OR_EQUAL: FWP_MATCH_TYPE = 4i32;
|
923
|
-
pub const FWP_MATCH_NOT_EQUAL: FWP_MATCH_TYPE = 10i32;
|
924
|
-
pub const FWP_MATCH_NOT_PREFIX: FWP_MATCH_TYPE = 12i32;
|
925
|
-
pub const FWP_MATCH_PREFIX: FWP_MATCH_TYPE = 11i32;
|
926
|
-
pub const FWP_MATCH_RANGE: FWP_MATCH_TYPE = 5i32;
|
927
|
-
pub const FWP_MATCH_TYPE_MAX: FWP_MATCH_TYPE = 13i32;
|
928
|
-
pub const FWP_NETWORK_CONNECTION_POLICY_MAX: FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE = 3i32;
|
929
|
-
pub const FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP: FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE = 2i32;
|
930
|
-
pub const FWP_NETWORK_CONNECTION_POLICY_NEXT_HOP_INTERFACE: FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE = 1i32;
|
931
|
-
pub const FWP_NETWORK_CONNECTION_POLICY_SOURCE_ADDRESS: FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE = 0i32;
|
932
|
-
pub const FWP_OPTION_VALUE_ALLOW_GLOBAL_MULTICAST_STATE: u32 = 2u32;
|
933
|
-
pub const FWP_OPTION_VALUE_ALLOW_MULTICAST_STATE: u32 = 0u32;
|
934
|
-
pub const FWP_OPTION_VALUE_DENY_MULTICAST_STATE: u32 = 1u32;
|
935
|
-
pub const FWP_OPTION_VALUE_DISABLE_LOCAL_ONLY_MAPPING: u32 = 0u32;
|
936
|
-
pub const FWP_OPTION_VALUE_DISABLE_LOOSE_SOURCE: u32 = 0u32;
|
937
|
-
pub const FWP_OPTION_VALUE_ENABLE_LOCAL_ONLY_MAPPING: u32 = 1u32;
|
938
|
-
pub const FWP_OPTION_VALUE_ENABLE_LOOSE_SOURCE: u32 = 1u32;
|
939
|
-
pub const FWP_RANGE_TYPE: FWP_DATA_TYPE = 258i32;
|
940
|
-
pub const FWP_SECURITY_DESCRIPTOR_TYPE: FWP_DATA_TYPE = 14i32;
|
941
|
-
pub const FWP_SID: FWP_DATA_TYPE = 13i32;
|
942
|
-
pub const FWP_SINGLE_DATA_TYPE_MAX: FWP_DATA_TYPE = 255i32;
|
943
|
-
pub const FWP_TOKEN_ACCESS_INFORMATION_TYPE: FWP_DATA_TYPE = 16i32;
|
944
|
-
pub const FWP_TOKEN_INFORMATION_TYPE: FWP_DATA_TYPE = 15i32;
|
945
|
-
pub const FWP_UINT16: FWP_DATA_TYPE = 2i32;
|
946
|
-
pub const FWP_UINT32: FWP_DATA_TYPE = 3i32;
|
947
|
-
pub const FWP_UINT64: FWP_DATA_TYPE = 4i32;
|
948
|
-
pub const FWP_UINT8: FWP_DATA_TYPE = 1i32;
|
949
|
-
pub const FWP_UNICODE_STRING_TYPE: FWP_DATA_TYPE = 17i32;
|
950
|
-
pub const FWP_V4_ADDR_MASK: FWP_DATA_TYPE = 256i32;
|
951
|
-
pub const FWP_V6_ADDR_MASK: FWP_DATA_TYPE = 257i32;
|
952
|
-
pub const FWP_V6_ADDR_SIZE: u32 = 16u32;
|
953
|
-
pub const FWP_VSWITCH_NETWORK_TYPE_EXTERNAL: FWP_VSWITCH_NETWORK_TYPE = 3i32;
|
954
|
-
pub const FWP_VSWITCH_NETWORK_TYPE_INTERNAL: FWP_VSWITCH_NETWORK_TYPE = 2i32;
|
955
|
-
pub const FWP_VSWITCH_NETWORK_TYPE_PRIVATE: FWP_VSWITCH_NETWORK_TYPE = 1i32;
|
956
|
-
pub const FWP_VSWITCH_NETWORK_TYPE_UNKNOWN: FWP_VSWITCH_NETWORK_TYPE = 0i32;
|
957
|
-
pub const IKEEXT_ANONYMOUS: IKEEXT_AUTHENTICATION_METHOD_TYPE = 3i32;
|
958
|
-
pub const IKEEXT_AUTHENTICATION_METHOD_TYPE_MAX: IKEEXT_AUTHENTICATION_METHOD_TYPE = 13i32;
|
959
|
-
pub const IKEEXT_CERTIFICATE: IKEEXT_AUTHENTICATION_METHOD_TYPE = 1i32;
|
960
|
-
pub const IKEEXT_CERTIFICATE_ECDSA_P256: IKEEXT_AUTHENTICATION_METHOD_TYPE = 7i32;
|
961
|
-
pub const IKEEXT_CERTIFICATE_ECDSA_P384: IKEEXT_AUTHENTICATION_METHOD_TYPE = 8i32;
|
962
|
-
pub const IKEEXT_CERT_AUTH_ALLOW_HTTP_CERT_LOOKUP: IKEEXT_CERT_AUTH = 16u32;
|
963
|
-
pub const IKEEXT_CERT_AUTH_DISABLE_SSL_CERT_VALIDATION: IKEEXT_CERT_AUTH = 8u32;
|
964
|
-
pub const IKEEXT_CERT_AUTH_ENABLE_CRL_CHECK_STRONG: IKEEXT_CERT_AUTH = 4u32;
|
965
|
-
pub const IKEEXT_CERT_AUTH_FLAG_DISABLE_CRL_CHECK: u32 = 2u32;
|
966
|
-
pub const IKEEXT_CERT_AUTH_FLAG_DISABLE_REQUEST_PAYLOAD: u32 = 64u32;
|
967
|
-
pub const IKEEXT_CERT_AUTH_FLAG_SSL_ONE_WAY: IKEEXT_CERT_AUTH = 1u32;
|
968
|
-
pub const IKEEXT_CERT_AUTH_URL_CONTAINS_BUNDLE: IKEEXT_CERT_AUTH = 32u32;
|
969
|
-
pub const IKEEXT_CERT_CONFIG_ENTERPRISE_STORE: IKEEXT_CERT_CONFIG_TYPE = 1i32;
|
970
|
-
pub const IKEEXT_CERT_CONFIG_EXPLICIT_TRUST_LIST: IKEEXT_CERT_CONFIG_TYPE = 0i32;
|
971
|
-
pub const IKEEXT_CERT_CONFIG_TRUSTED_ROOT_STORE: IKEEXT_CERT_CONFIG_TYPE = 2i32;
|
972
|
-
pub const IKEEXT_CERT_CONFIG_TYPE_MAX: IKEEXT_CERT_CONFIG_TYPE = 4i32;
|
973
|
-
pub const IKEEXT_CERT_CONFIG_UNSPECIFIED: IKEEXT_CERT_CONFIG_TYPE = 3i32;
|
974
|
-
pub const IKEEXT_CERT_CREDENTIAL_FLAG_NAP_CERT: u32 = 1u32;
|
975
|
-
pub const IKEEXT_CERT_CRITERIA_CN: IKEEXT_CERT_CRITERIA_NAME_TYPE = 3i32;
|
976
|
-
pub const IKEEXT_CERT_CRITERIA_DC: IKEEXT_CERT_CRITERIA_NAME_TYPE = 6i32;
|
977
|
-
pub const IKEEXT_CERT_CRITERIA_DNS: IKEEXT_CERT_CRITERIA_NAME_TYPE = 0i32;
|
978
|
-
pub const IKEEXT_CERT_CRITERIA_NAME_TYPE_MAX: IKEEXT_CERT_CRITERIA_NAME_TYPE = 7i32;
|
979
|
-
pub const IKEEXT_CERT_CRITERIA_O: IKEEXT_CERT_CRITERIA_NAME_TYPE = 5i32;
|
980
|
-
pub const IKEEXT_CERT_CRITERIA_OU: IKEEXT_CERT_CRITERIA_NAME_TYPE = 4i32;
|
981
|
-
pub const IKEEXT_CERT_CRITERIA_RFC822: IKEEXT_CERT_CRITERIA_NAME_TYPE = 2i32;
|
982
|
-
pub const IKEEXT_CERT_CRITERIA_UPN: IKEEXT_CERT_CRITERIA_NAME_TYPE = 1i32;
|
983
|
-
pub const IKEEXT_CERT_FLAG_DISABLE_REQUEST_PAYLOAD: IKEEXT_CERT_FLAGS = 2u32;
|
984
|
-
pub const IKEEXT_CERT_FLAG_ENABLE_ACCOUNT_MAPPING: IKEEXT_CERT_FLAGS = 1u32;
|
985
|
-
pub const IKEEXT_CERT_FLAG_FOLLOW_RENEWAL_CERTIFICATE: IKEEXT_CERT_FLAGS = 256u32;
|
986
|
-
pub const IKEEXT_CERT_FLAG_IGNORE_INIT_CERT_MAP_FAILURE: IKEEXT_CERT_FLAGS = 16u32;
|
987
|
-
pub const IKEEXT_CERT_FLAG_INTERMEDIATE_CA: IKEEXT_CERT_FLAGS = 8u32;
|
988
|
-
pub const IKEEXT_CERT_FLAG_PREFER_NAP_CERTIFICATE_OUTBOUND: IKEEXT_CERT_FLAGS = 32u32;
|
989
|
-
pub const IKEEXT_CERT_FLAG_SELECT_NAP_CERTIFICATE: IKEEXT_CERT_FLAGS = 64u32;
|
990
|
-
pub const IKEEXT_CERT_FLAG_USE_NAP_CERTIFICATE: IKEEXT_CERT_FLAGS = 4u32;
|
991
|
-
pub const IKEEXT_CERT_FLAG_VERIFY_NAP_CERTIFICATE: IKEEXT_CERT_FLAGS = 128u32;
|
992
|
-
pub const IKEEXT_CERT_HASH_LEN: u32 = 20u32;
|
993
|
-
pub const IKEEXT_CIPHER_3DES: IKEEXT_CIPHER_TYPE = 1i32;
|
994
|
-
pub const IKEEXT_CIPHER_AES_128: IKEEXT_CIPHER_TYPE = 2i32;
|
995
|
-
pub const IKEEXT_CIPHER_AES_192: IKEEXT_CIPHER_TYPE = 3i32;
|
996
|
-
pub const IKEEXT_CIPHER_AES_256: IKEEXT_CIPHER_TYPE = 4i32;
|
997
|
-
pub const IKEEXT_CIPHER_AES_GCM_128_16ICV: IKEEXT_CIPHER_TYPE = 5i32;
|
998
|
-
pub const IKEEXT_CIPHER_AES_GCM_256_16ICV: IKEEXT_CIPHER_TYPE = 6i32;
|
999
|
-
pub const IKEEXT_CIPHER_DES: IKEEXT_CIPHER_TYPE = 0i32;
|
1000
|
-
pub const IKEEXT_CIPHER_TYPE_MAX: IKEEXT_CIPHER_TYPE = 7i32;
|
1001
|
-
pub const IKEEXT_DH_ECP_256: IKEEXT_DH_GROUP = 4i32;
|
1002
|
-
pub const IKEEXT_DH_ECP_384: IKEEXT_DH_GROUP = 5i32;
|
1003
|
-
pub const IKEEXT_DH_GROUP_1: IKEEXT_DH_GROUP = 1i32;
|
1004
|
-
pub const IKEEXT_DH_GROUP_14: IKEEXT_DH_GROUP = 3i32;
|
1005
|
-
pub const IKEEXT_DH_GROUP_2: IKEEXT_DH_GROUP = 2i32;
|
1006
|
-
pub const IKEEXT_DH_GROUP_2048: IKEEXT_DH_GROUP = 3i32;
|
1007
|
-
pub const IKEEXT_DH_GROUP_24: IKEEXT_DH_GROUP = 6i32;
|
1008
|
-
pub const IKEEXT_DH_GROUP_MAX: IKEEXT_DH_GROUP = 7i32;
|
1009
|
-
pub const IKEEXT_DH_GROUP_NONE: IKEEXT_DH_GROUP = 0i32;
|
1010
|
-
pub const IKEEXT_EAP: IKEEXT_AUTHENTICATION_METHOD_TYPE = 11i32;
|
1011
|
-
pub const IKEEXT_EAP_FLAG_LOCAL_AUTH_ONLY: IKEEXT_EAP_AUTHENTICATION_FLAGS = 1u32;
|
1012
|
-
pub const IKEEXT_EAP_FLAG_REMOTE_AUTH_ONLY: IKEEXT_EAP_AUTHENTICATION_FLAGS = 2u32;
|
1013
|
-
pub const IKEEXT_EM_SA_STATE_AUTH_COMPLETE: IKEEXT_EM_SA_STATE = 3i32;
|
1014
|
-
pub const IKEEXT_EM_SA_STATE_COMPLETE: IKEEXT_EM_SA_STATE = 5i32;
|
1015
|
-
pub const IKEEXT_EM_SA_STATE_FINAL: IKEEXT_EM_SA_STATE = 4i32;
|
1016
|
-
pub const IKEEXT_EM_SA_STATE_MAX: IKEEXT_EM_SA_STATE = 6i32;
|
1017
|
-
pub const IKEEXT_EM_SA_STATE_NONE: IKEEXT_EM_SA_STATE = 0i32;
|
1018
|
-
pub const IKEEXT_EM_SA_STATE_SENT_ATTS: IKEEXT_EM_SA_STATE = 1i32;
|
1019
|
-
pub const IKEEXT_EM_SA_STATE_SSPI_SENT: IKEEXT_EM_SA_STATE = 2i32;
|
1020
|
-
pub const IKEEXT_IMPERSONATION_MAX: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE = 2i32;
|
1021
|
-
pub const IKEEXT_IMPERSONATION_NONE: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE = 0i32;
|
1022
|
-
pub const IKEEXT_IMPERSONATION_SOCKET_PRINCIPAL: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE = 1i32;
|
1023
|
-
pub const IKEEXT_INTEGRITY_MD5: IKEEXT_INTEGRITY_TYPE = 0i32;
|
1024
|
-
pub const IKEEXT_INTEGRITY_SHA1: IKEEXT_INTEGRITY_TYPE = 1i32;
|
1025
|
-
pub const IKEEXT_INTEGRITY_SHA_256: IKEEXT_INTEGRITY_TYPE = 2i32;
|
1026
|
-
pub const IKEEXT_INTEGRITY_SHA_384: IKEEXT_INTEGRITY_TYPE = 3i32;
|
1027
|
-
pub const IKEEXT_INTEGRITY_TYPE_MAX: IKEEXT_INTEGRITY_TYPE = 4i32;
|
1028
|
-
pub const IKEEXT_IPV6_CGA: IKEEXT_AUTHENTICATION_METHOD_TYPE = 6i32;
|
1029
|
-
pub const IKEEXT_KERBEROS: IKEEXT_AUTHENTICATION_METHOD_TYPE = 2i32;
|
1030
|
-
pub const IKEEXT_KERB_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION: IKEEXT_KERBEROS_AUTHENTICATION_FLAGS = 1u32;
|
1031
|
-
pub const IKEEXT_KERB_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS: IKEEXT_KERBEROS_AUTHENTICATION_FLAGS = 2u32;
|
1032
|
-
pub const IKEEXT_KERB_AUTH_FORCE_PROXY_ON_INITIATOR: u32 = 4u32;
|
1033
|
-
pub const IKEEXT_KEY_MODULE_AUTHIP: IKEEXT_KEY_MODULE_TYPE = 1i32;
|
1034
|
-
pub const IKEEXT_KEY_MODULE_IKE: IKEEXT_KEY_MODULE_TYPE = 0i32;
|
1035
|
-
pub const IKEEXT_KEY_MODULE_IKEV2: IKEEXT_KEY_MODULE_TYPE = 2i32;
|
1036
|
-
pub const IKEEXT_KEY_MODULE_MAX: IKEEXT_KEY_MODULE_TYPE = 3i32;
|
1037
|
-
pub const IKEEXT_MM_SA_STATE_COMPLETE: IKEEXT_MM_SA_STATE = 5i32;
|
1038
|
-
pub const IKEEXT_MM_SA_STATE_FINAL: IKEEXT_MM_SA_STATE = 3i32;
|
1039
|
-
pub const IKEEXT_MM_SA_STATE_FINAL_SENT: IKEEXT_MM_SA_STATE = 4i32;
|
1040
|
-
pub const IKEEXT_MM_SA_STATE_MAX: IKEEXT_MM_SA_STATE = 6i32;
|
1041
|
-
pub const IKEEXT_MM_SA_STATE_NONE: IKEEXT_MM_SA_STATE = 0i32;
|
1042
|
-
pub const IKEEXT_MM_SA_STATE_SA_SENT: IKEEXT_MM_SA_STATE = 1i32;
|
1043
|
-
pub const IKEEXT_MM_SA_STATE_SSPI_SENT: IKEEXT_MM_SA_STATE = 2i32;
|
1044
|
-
pub const IKEEXT_NTLM_V2: IKEEXT_AUTHENTICATION_METHOD_TYPE = 5i32;
|
1045
|
-
pub const IKEEXT_NTLM_V2_AUTH_DONT_ACCEPT_EXPLICIT_CREDENTIALS: u32 = 1u32;
|
1046
|
-
pub const IKEEXT_POLICY_ENABLE_IKEV2_FRAGMENTATION: u32 = 128u32;
|
1047
|
-
pub const IKEEXT_POLICY_FLAG_DISABLE_DIAGNOSTICS: IKEEXT_POLICY_FLAG = 1u32;
|
1048
|
-
pub const IKEEXT_POLICY_FLAG_ENABLE_OPTIONAL_DH: IKEEXT_POLICY_FLAG = 8u32;
|
1049
|
-
pub const IKEEXT_POLICY_FLAG_IMS_VPN: u32 = 64u32;
|
1050
|
-
pub const IKEEXT_POLICY_FLAG_MOBIKE_NOT_SUPPORTED: u32 = 16u32;
|
1051
|
-
pub const IKEEXT_POLICY_FLAG_NO_IMPERSONATION_LUID_VERIFY: IKEEXT_POLICY_FLAG = 4u32;
|
1052
|
-
pub const IKEEXT_POLICY_FLAG_NO_MACHINE_LUID_VERIFY: IKEEXT_POLICY_FLAG = 2u32;
|
1053
|
-
pub const IKEEXT_POLICY_FLAG_SITE_TO_SITE: u32 = 32u32;
|
1054
|
-
pub const IKEEXT_POLICY_SUPPORT_LOW_POWER_MODE: u32 = 256u32;
|
1055
|
-
pub const IKEEXT_PRESHARED_KEY: IKEEXT_AUTHENTICATION_METHOD_TYPE = 0i32;
|
1056
|
-
pub const IKEEXT_PSK_FLAG_LOCAL_AUTH_ONLY: IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS = 1u32;
|
1057
|
-
pub const IKEEXT_PSK_FLAG_REMOTE_AUTH_ONLY: IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS = 2u32;
|
1058
|
-
pub const IKEEXT_QM_SA_STATE_COMPLETE: IKEEXT_QM_SA_STATE = 3i32;
|
1059
|
-
pub const IKEEXT_QM_SA_STATE_FINAL: IKEEXT_QM_SA_STATE = 2i32;
|
1060
|
-
pub const IKEEXT_QM_SA_STATE_INITIAL: IKEEXT_QM_SA_STATE = 1i32;
|
1061
|
-
pub const IKEEXT_QM_SA_STATE_MAX: IKEEXT_QM_SA_STATE = 4i32;
|
1062
|
-
pub const IKEEXT_QM_SA_STATE_NONE: IKEEXT_QM_SA_STATE = 0i32;
|
1063
|
-
pub const IKEEXT_RESERVED: IKEEXT_AUTHENTICATION_METHOD_TYPE = 12i32;
|
1064
|
-
pub const IKEEXT_RESERVED_AUTH_DISABLE_INITIATOR_TOKEN_GENERATION: IKEEXT_RESERVED_AUTHENTICATION_FLAGS = 1u32;
|
1065
|
-
pub const IKEEXT_SA_ROLE_INITIATOR: IKEEXT_SA_ROLE = 0i32;
|
1066
|
-
pub const IKEEXT_SA_ROLE_MAX: IKEEXT_SA_ROLE = 2i32;
|
1067
|
-
pub const IKEEXT_SA_ROLE_RESPONDER: IKEEXT_SA_ROLE = 1i32;
|
1068
|
-
pub const IKEEXT_SSL: IKEEXT_AUTHENTICATION_METHOD_TYPE = 4i32;
|
1069
|
-
pub const IKEEXT_SSL_ECDSA_P256: IKEEXT_AUTHENTICATION_METHOD_TYPE = 9i32;
|
1070
|
-
pub const IKEEXT_SSL_ECDSA_P384: IKEEXT_AUTHENTICATION_METHOD_TYPE = 10i32;
|
1071
|
-
pub const IPSEC_AUTH_AES_128: IPSEC_AUTH_TYPE = 3i32;
|
1072
|
-
pub const IPSEC_AUTH_AES_192: IPSEC_AUTH_TYPE = 4i32;
|
1073
|
-
pub const IPSEC_AUTH_AES_256: IPSEC_AUTH_TYPE = 5i32;
|
1074
|
-
pub const IPSEC_AUTH_CONFIG_GCM_AES_128: u32 = 3u32;
|
1075
|
-
pub const IPSEC_AUTH_CONFIG_GCM_AES_192: u32 = 4u32;
|
1076
|
-
pub const IPSEC_AUTH_CONFIG_GCM_AES_256: u32 = 5u32;
|
1077
|
-
pub const IPSEC_AUTH_CONFIG_HMAC_MD5_96: u32 = 0u32;
|
1078
|
-
pub const IPSEC_AUTH_CONFIG_HMAC_SHA_1_96: u32 = 1u32;
|
1079
|
-
pub const IPSEC_AUTH_CONFIG_HMAC_SHA_256_128: u32 = 2u32;
|
1080
|
-
pub const IPSEC_AUTH_CONFIG_MAX: u32 = 6u32;
|
1081
|
-
pub const IPSEC_AUTH_MAX: IPSEC_AUTH_TYPE = 6i32;
|
1082
|
-
pub const IPSEC_AUTH_MD5: IPSEC_AUTH_TYPE = 0i32;
|
1083
|
-
pub const IPSEC_AUTH_SHA_1: IPSEC_AUTH_TYPE = 1i32;
|
1084
|
-
pub const IPSEC_AUTH_SHA_256: IPSEC_AUTH_TYPE = 2i32;
|
1085
|
-
pub const IPSEC_CIPHER_CONFIG_CBC_3DES: u32 = 2u32;
|
1086
|
-
pub const IPSEC_CIPHER_CONFIG_CBC_AES_128: u32 = 3u32;
|
1087
|
-
pub const IPSEC_CIPHER_CONFIG_CBC_AES_192: u32 = 4u32;
|
1088
|
-
pub const IPSEC_CIPHER_CONFIG_CBC_AES_256: u32 = 5u32;
|
1089
|
-
pub const IPSEC_CIPHER_CONFIG_CBC_DES: u32 = 1u32;
|
1090
|
-
pub const IPSEC_CIPHER_CONFIG_GCM_AES_128: u32 = 6u32;
|
1091
|
-
pub const IPSEC_CIPHER_CONFIG_GCM_AES_192: u32 = 7u32;
|
1092
|
-
pub const IPSEC_CIPHER_CONFIG_GCM_AES_256: u32 = 8u32;
|
1093
|
-
pub const IPSEC_CIPHER_CONFIG_MAX: u32 = 9u32;
|
1094
|
-
pub const IPSEC_CIPHER_TYPE_3DES: IPSEC_CIPHER_TYPE = 2i32;
|
1095
|
-
pub const IPSEC_CIPHER_TYPE_AES_128: IPSEC_CIPHER_TYPE = 3i32;
|
1096
|
-
pub const IPSEC_CIPHER_TYPE_AES_192: IPSEC_CIPHER_TYPE = 4i32;
|
1097
|
-
pub const IPSEC_CIPHER_TYPE_AES_256: IPSEC_CIPHER_TYPE = 5i32;
|
1098
|
-
pub const IPSEC_CIPHER_TYPE_DES: IPSEC_CIPHER_TYPE = 1i32;
|
1099
|
-
pub const IPSEC_CIPHER_TYPE_MAX: IPSEC_CIPHER_TYPE = 6i32;
|
1100
|
-
pub const IPSEC_DOSP_DSCP_DISABLE_VALUE: u32 = 255u32;
|
1101
|
-
pub const IPSEC_DOSP_FLAG_DISABLE_AUTHIP: IPSEC_DOSP_FLAGS = 4u32;
|
1102
|
-
pub const IPSEC_DOSP_FLAG_DISABLE_DEFAULT_BLOCK: IPSEC_DOSP_FLAGS = 8u32;
|
1103
|
-
pub const IPSEC_DOSP_FLAG_ENABLE_IKEV1: IPSEC_DOSP_FLAGS = 1u32;
|
1104
|
-
pub const IPSEC_DOSP_FLAG_ENABLE_IKEV2: IPSEC_DOSP_FLAGS = 2u32;
|
1105
|
-
pub const IPSEC_DOSP_FLAG_FILTER_BLOCK: IPSEC_DOSP_FLAGS = 16u32;
|
1106
|
-
pub const IPSEC_DOSP_FLAG_FILTER_EXEMPT: IPSEC_DOSP_FLAGS = 32u32;
|
1107
|
-
pub const IPSEC_DOSP_RATE_LIMIT_DISABLE_VALUE: u32 = 0u32;
|
1108
|
-
pub const IPSEC_FAILURE_ME: IPSEC_FAILURE_POINT = 1i32;
|
1109
|
-
pub const IPSEC_FAILURE_NONE: IPSEC_FAILURE_POINT = 0i32;
|
1110
|
-
pub const IPSEC_FAILURE_PEER: IPSEC_FAILURE_POINT = 2i32;
|
1111
|
-
pub const IPSEC_FAILURE_POINT_MAX: IPSEC_FAILURE_POINT = 3i32;
|
1112
|
-
pub const IPSEC_KEYING_POLICY_FLAG_TERMINATING_MATCH: u32 = 1u32;
|
1113
|
-
pub const IPSEC_KEY_MANAGER_FLAG_DICTATE_KEY: u32 = 1u32;
|
1114
|
-
pub const IPSEC_PFS_1: IPSEC_PFS_GROUP = 1i32;
|
1115
|
-
pub const IPSEC_PFS_14: IPSEC_PFS_GROUP = 3i32;
|
1116
|
-
pub const IPSEC_PFS_2: IPSEC_PFS_GROUP = 2i32;
|
1117
|
-
pub const IPSEC_PFS_2048: IPSEC_PFS_GROUP = 3i32;
|
1118
|
-
pub const IPSEC_PFS_24: IPSEC_PFS_GROUP = 7i32;
|
1119
|
-
pub const IPSEC_PFS_ECP_256: IPSEC_PFS_GROUP = 4i32;
|
1120
|
-
pub const IPSEC_PFS_ECP_384: IPSEC_PFS_GROUP = 5i32;
|
1121
|
-
pub const IPSEC_PFS_MAX: IPSEC_PFS_GROUP = 8i32;
|
1122
|
-
pub const IPSEC_PFS_MM: IPSEC_PFS_GROUP = 6i32;
|
1123
|
-
pub const IPSEC_PFS_NONE: IPSEC_PFS_GROUP = 0i32;
|
1124
|
-
pub const IPSEC_POLICY_FLAG_BANDWIDTH1: u32 = 268435456u32;
|
1125
|
-
pub const IPSEC_POLICY_FLAG_BANDWIDTH2: u32 = 536870912u32;
|
1126
|
-
pub const IPSEC_POLICY_FLAG_BANDWIDTH3: u32 = 1073741824u32;
|
1127
|
-
pub const IPSEC_POLICY_FLAG_BANDWIDTH4: u32 = 2147483648u32;
|
1128
|
-
pub const IPSEC_POLICY_FLAG_CLEAR_DF_ON_TUNNEL: IPSEC_POLICY_FLAG = 8u32;
|
1129
|
-
pub const IPSEC_POLICY_FLAG_DONT_NEGOTIATE_BYTE_LIFETIME: IPSEC_POLICY_FLAG = 128u32;
|
1130
|
-
pub const IPSEC_POLICY_FLAG_DONT_NEGOTIATE_SECOND_LIFETIME: IPSEC_POLICY_FLAG = 64u32;
|
1131
|
-
pub const IPSEC_POLICY_FLAG_ENABLE_SERVER_ADDR_ASSIGNMENT: IPSEC_POLICY_FLAG = 512u32;
|
1132
|
-
pub const IPSEC_POLICY_FLAG_ENABLE_V6_IN_V4_TUNNELING: IPSEC_POLICY_FLAG = 256u32;
|
1133
|
-
pub const IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_DICTATE_KEY: IPSEC_POLICY_FLAG = 8192u32;
|
1134
|
-
pub const IPSEC_POLICY_FLAG_KEY_MANAGER_ALLOW_NOTIFY_KEY: u32 = 16384u32;
|
1135
|
-
pub const IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_GENERAL_NAT_TRAVERSAL: IPSEC_POLICY_FLAG = 32u32;
|
1136
|
-
pub const IPSEC_POLICY_FLAG_NAT_ENCAP_ALLOW_PEER_BEHIND_NAT: IPSEC_POLICY_FLAG = 16u32;
|
1137
|
-
pub const IPSEC_POLICY_FLAG_ND_BOUNDARY: IPSEC_POLICY_FLAG = 4u32;
|
1138
|
-
pub const IPSEC_POLICY_FLAG_ND_SECURE: IPSEC_POLICY_FLAG = 2u32;
|
1139
|
-
pub const IPSEC_POLICY_FLAG_RESERVED1: u32 = 32768u32;
|
1140
|
-
pub const IPSEC_POLICY_FLAG_SITE_TO_SITE_TUNNEL: u32 = 65536u32;
|
1141
|
-
pub const IPSEC_POLICY_FLAG_TUNNEL_ALLOW_OUTBOUND_CLEAR_CONNECTION: IPSEC_POLICY_FLAG = 1024u32;
|
1142
|
-
pub const IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ALREADY_SECURE_CONNECTION: IPSEC_POLICY_FLAG = 2048u32;
|
1143
|
-
pub const IPSEC_POLICY_FLAG_TUNNEL_BYPASS_ICMPV6: IPSEC_POLICY_FLAG = 4096u32;
|
1144
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ALLOW_NULL_TARGET_NAME_MATCH: IPSEC_SA_BUNDLE_FLAGS = 512u32;
|
1145
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ASSUME_UDP_CONTEXT_OUTBOUND: IPSEC_SA_BUNDLE_FLAGS = 2048u32;
|
1146
|
-
pub const IPSEC_SA_BUNDLE_FLAG_CLEAR_DF_ON_TUNNEL: IPSEC_SA_BUNDLE_FLAGS = 1024u32;
|
1147
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ENABLE_OPTIONAL_ASYMMETRIC_IDLE: u32 = 262144u32;
|
1148
|
-
pub const IPSEC_SA_BUNDLE_FLAG_FORCE_INBOUND_CONNECTIONS: u32 = 32768u32;
|
1149
|
-
pub const IPSEC_SA_BUNDLE_FLAG_FORCE_OUTBOUND_CONNECTIONS: u32 = 65536u32;
|
1150
|
-
pub const IPSEC_SA_BUNDLE_FLAG_FORWARD_PATH_INITIATOR: u32 = 131072u32;
|
1151
|
-
pub const IPSEC_SA_BUNDLE_FLAG_GUARANTEE_ENCRYPTION: IPSEC_SA_BUNDLE_FLAGS = 8u32;
|
1152
|
-
pub const IPSEC_SA_BUNDLE_FLAG_IP_IN_IP_PKT: u32 = 4194304u32;
|
1153
|
-
pub const IPSEC_SA_BUNDLE_FLAG_LOCALLY_DICTATED_KEYS: u32 = 1048576u32;
|
1154
|
-
pub const IPSEC_SA_BUNDLE_FLAG_LOW_POWER_MODE_SUPPORT: u32 = 8388608u32;
|
1155
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ND_BOUNDARY: IPSEC_SA_BUNDLE_FLAGS = 2u32;
|
1156
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ND_PEER_BOUNDARY: IPSEC_SA_BUNDLE_FLAGS = 4096u32;
|
1157
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ND_PEER_NAT_BOUNDARY: IPSEC_SA_BUNDLE_FLAGS = 4u32;
|
1158
|
-
pub const IPSEC_SA_BUNDLE_FLAG_ND_SECURE: IPSEC_SA_BUNDLE_FLAGS = 1u32;
|
1159
|
-
pub const IPSEC_SA_BUNDLE_FLAG_NLB: u32 = 16u32;
|
1160
|
-
pub const IPSEC_SA_BUNDLE_FLAG_NO_EXPLICIT_CRED_MATCH: u32 = 128u32;
|
1161
|
-
pub const IPSEC_SA_BUNDLE_FLAG_NO_IMPERSONATION_LUID_VERIFY: u32 = 64u32;
|
1162
|
-
pub const IPSEC_SA_BUNDLE_FLAG_NO_MACHINE_LUID_VERIFY: u32 = 32u32;
|
1163
|
-
pub const IPSEC_SA_BUNDLE_FLAG_PEER_SUPPORTS_GUARANTEE_ENCRYPTION: IPSEC_SA_BUNDLE_FLAGS = 16384u32;
|
1164
|
-
pub const IPSEC_SA_BUNDLE_FLAG_SA_OFFLOADED: u32 = 2097152u32;
|
1165
|
-
pub const IPSEC_SA_BUNDLE_FLAG_SUPPRESS_DUPLICATE_DELETION: IPSEC_SA_BUNDLE_FLAGS = 8192u32;
|
1166
|
-
pub const IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH1: u32 = 268435456u32;
|
1167
|
-
pub const IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH2: u32 = 536870912u32;
|
1168
|
-
pub const IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH3: u32 = 1073741824u32;
|
1169
|
-
pub const IPSEC_SA_BUNDLE_FLAG_TUNNEL_BANDWIDTH4: u32 = 2147483648u32;
|
1170
|
-
pub const IPSEC_SA_BUNDLE_FLAG_USING_DICTATED_KEYS: u32 = 524288u32;
|
1171
|
-
pub const IPSEC_SA_CONTEXT_EVENT_ADD: IPSEC_SA_CONTEXT_EVENT_TYPE0 = 1i32;
|
1172
|
-
pub const IPSEC_SA_CONTEXT_EVENT_DELETE: IPSEC_SA_CONTEXT_EVENT_TYPE0 = 2i32;
|
1173
|
-
pub const IPSEC_SA_CONTEXT_EVENT_MAX: IPSEC_SA_CONTEXT_EVENT_TYPE0 = 3i32;
|
1174
|
-
pub const IPSEC_TOKEN_MODE_EXTENDED: IPSEC_TOKEN_MODE = 1i32;
|
1175
|
-
pub const IPSEC_TOKEN_MODE_MAIN: IPSEC_TOKEN_MODE = 0i32;
|
1176
|
-
pub const IPSEC_TOKEN_MODE_MAX: IPSEC_TOKEN_MODE = 2i32;
|
1177
|
-
pub const IPSEC_TOKEN_PRINCIPAL_LOCAL: IPSEC_TOKEN_PRINCIPAL = 0i32;
|
1178
|
-
pub const IPSEC_TOKEN_PRINCIPAL_MAX: IPSEC_TOKEN_PRINCIPAL = 2i32;
|
1179
|
-
pub const IPSEC_TOKEN_PRINCIPAL_PEER: IPSEC_TOKEN_PRINCIPAL = 1i32;
|
1180
|
-
pub const IPSEC_TOKEN_TYPE_IMPERSONATION: IPSEC_TOKEN_TYPE = 1i32;
|
1181
|
-
pub const IPSEC_TOKEN_TYPE_MACHINE: IPSEC_TOKEN_TYPE = 0i32;
|
1182
|
-
pub const IPSEC_TOKEN_TYPE_MAX: IPSEC_TOKEN_TYPE = 2i32;
|
1183
|
-
pub const IPSEC_TRAFFIC_TYPE_MAX: IPSEC_TRAFFIC_TYPE = 2i32;
|
1184
|
-
pub const IPSEC_TRAFFIC_TYPE_TRANSPORT: IPSEC_TRAFFIC_TYPE = 0i32;
|
1185
|
-
pub const IPSEC_TRAFFIC_TYPE_TUNNEL: IPSEC_TRAFFIC_TYPE = 1i32;
|
1186
|
-
pub const IPSEC_TRANSFORM_AH: IPSEC_TRANSFORM_TYPE = 1i32;
|
1187
|
-
pub const IPSEC_TRANSFORM_ESP_AUTH: IPSEC_TRANSFORM_TYPE = 2i32;
|
1188
|
-
pub const IPSEC_TRANSFORM_ESP_AUTH_AND_CIPHER: IPSEC_TRANSFORM_TYPE = 4i32;
|
1189
|
-
pub const IPSEC_TRANSFORM_ESP_AUTH_FW: IPSEC_TRANSFORM_TYPE = 5i32;
|
1190
|
-
pub const IPSEC_TRANSFORM_ESP_CIPHER: IPSEC_TRANSFORM_TYPE = 3i32;
|
1191
|
-
pub const IPSEC_TRANSFORM_TYPE_MAX: IPSEC_TRANSFORM_TYPE = 6i32;
|
1192
|
-
pub type DL_ADDRESS_TYPE = i32;
|
1193
|
-
pub type FWPM_APPC_NETWORK_CAPABILITY_TYPE = i32;
|
1194
|
-
pub type FWPM_CHANGE_TYPE = i32;
|
1195
|
-
pub type FWPM_CONNECTION_EVENT_TYPE = i32;
|
1196
|
-
pub type FWPM_ENGINE_OPTION = i32;
|
1197
|
-
pub type FWPM_FIELD_TYPE = i32;
|
1198
|
-
pub type FWPM_FILTER_FLAGS = u32;
|
1199
|
-
pub type FWPM_NET_EVENT_TYPE = i32;
|
1200
|
-
pub type FWPM_PROVIDER_CONTEXT_TYPE = i32;
|
1201
|
-
pub type FWPM_SERVICE_STATE = i32;
|
1202
|
-
pub type FWPM_SUBSCRIPTION_FLAGS = u32;
|
1203
|
-
pub type FWPM_SYSTEM_PORT_TYPE = i32;
|
1204
|
-
pub type FWPM_VSWITCH_EVENT_TYPE = i32;
|
1205
|
-
pub type FWP_ACTION_TYPE = u32;
|
1206
|
-
pub type FWP_AF = i32;
|
1207
|
-
pub type FWP_CLASSIFY_OPTION_TYPE = i32;
|
1208
|
-
pub type FWP_DATA_TYPE = i32;
|
1209
|
-
pub type FWP_DIRECTION = i32;
|
1210
|
-
pub type FWP_ETHER_ENCAP_METHOD = i32;
|
1211
|
-
pub type FWP_FILTER_ENUM_TYPE = i32;
|
1212
|
-
pub type FWP_IP_VERSION = i32;
|
1213
|
-
pub type FWP_MATCH_TYPE = i32;
|
1214
|
-
pub type FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE = i32;
|
1215
|
-
pub type FWP_VSWITCH_NETWORK_TYPE = i32;
|
1216
|
-
pub type IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE = i32;
|
1217
|
-
pub type IKEEXT_AUTHENTICATION_METHOD_TYPE = i32;
|
1218
|
-
pub type IKEEXT_CERT_AUTH = u32;
|
1219
|
-
pub type IKEEXT_CERT_CONFIG_TYPE = i32;
|
1220
|
-
pub type IKEEXT_CERT_CRITERIA_NAME_TYPE = i32;
|
1221
|
-
pub type IKEEXT_CERT_FLAGS = u32;
|
1222
|
-
pub type IKEEXT_CIPHER_TYPE = i32;
|
1223
|
-
pub type IKEEXT_DH_GROUP = i32;
|
1224
|
-
pub type IKEEXT_EAP_AUTHENTICATION_FLAGS = u32;
|
1225
|
-
pub type IKEEXT_EM_SA_STATE = i32;
|
1226
|
-
pub type IKEEXT_INTEGRITY_TYPE = i32;
|
1227
|
-
pub type IKEEXT_KERBEROS_AUTHENTICATION_FLAGS = u32;
|
1228
|
-
pub type IKEEXT_KEY_MODULE_TYPE = i32;
|
1229
|
-
pub type IKEEXT_MM_SA_STATE = i32;
|
1230
|
-
pub type IKEEXT_POLICY_FLAG = u32;
|
1231
|
-
pub type IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS = u32;
|
1232
|
-
pub type IKEEXT_QM_SA_STATE = i32;
|
1233
|
-
pub type IKEEXT_RESERVED_AUTHENTICATION_FLAGS = u32;
|
1234
|
-
pub type IKEEXT_SA_ROLE = i32;
|
1235
|
-
pub type IPSEC_AUTH_TYPE = i32;
|
1236
|
-
pub type IPSEC_CIPHER_TYPE = i32;
|
1237
|
-
pub type IPSEC_DOSP_FLAGS = u32;
|
1238
|
-
pub type IPSEC_FAILURE_POINT = i32;
|
1239
|
-
pub type IPSEC_PFS_GROUP = i32;
|
1240
|
-
pub type IPSEC_POLICY_FLAG = u32;
|
1241
|
-
pub type IPSEC_SA_BUNDLE_FLAGS = u32;
|
1242
|
-
pub type IPSEC_SA_CONTEXT_EVENT_TYPE0 = i32;
|
1243
|
-
pub type IPSEC_TOKEN_MODE = i32;
|
1244
|
-
pub type IPSEC_TOKEN_PRINCIPAL = i32;
|
1245
|
-
pub type IPSEC_TOKEN_TYPE = i32;
|
1246
|
-
pub type IPSEC_TRAFFIC_TYPE = i32;
|
1247
|
-
pub type IPSEC_TRANSFORM_TYPE = i32;
|
1248
|
-
#[repr(C)]
|
1249
|
-
#[derive(Clone, Copy)]
|
1250
|
-
pub struct FWPM_ACTION0 {
|
1251
|
-
pub r#type: FWP_ACTION_TYPE,
|
1252
|
-
pub Anonymous: FWPM_ACTION0_0,
|
1253
|
-
}
|
1254
|
-
#[repr(C)]
|
1255
|
-
#[derive(Clone, Copy)]
|
1256
|
-
pub union FWPM_ACTION0_0 {
|
1257
|
-
pub filterType: windows_sys::core::GUID,
|
1258
|
-
pub calloutKey: windows_sys::core::GUID,
|
1259
|
-
}
|
1260
|
-
#[repr(C)]
|
1261
|
-
#[derive(Clone, Copy)]
|
1262
|
-
pub struct FWPM_CALLOUT0 {
|
1263
|
-
pub calloutKey: windows_sys::core::GUID,
|
1264
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
1265
|
-
pub flags: u32,
|
1266
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
1267
|
-
pub providerData: FWP_BYTE_BLOB,
|
1268
|
-
pub applicableLayer: windows_sys::core::GUID,
|
1269
|
-
pub calloutId: u32,
|
1270
|
-
}
|
1271
|
-
#[repr(C)]
|
1272
|
-
#[derive(Clone, Copy)]
|
1273
|
-
pub struct FWPM_CALLOUT_CHANGE0 {
|
1274
|
-
pub changeType: FWPM_CHANGE_TYPE,
|
1275
|
-
pub calloutKey: windows_sys::core::GUID,
|
1276
|
-
pub calloutId: u32,
|
1277
|
-
}
|
1278
|
-
#[repr(C)]
|
1279
|
-
#[derive(Clone, Copy)]
|
1280
|
-
pub struct FWPM_CALLOUT_ENUM_TEMPLATE0 {
|
1281
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
1282
|
-
pub layerKey: windows_sys::core::GUID,
|
1283
|
-
}
|
1284
|
-
#[repr(C)]
|
1285
|
-
#[derive(Clone, Copy)]
|
1286
|
-
pub struct FWPM_CALLOUT_SUBSCRIPTION0 {
|
1287
|
-
pub enumTemplate: *mut FWPM_CALLOUT_ENUM_TEMPLATE0,
|
1288
|
-
pub flags: u32,
|
1289
|
-
pub sessionKey: windows_sys::core::GUID,
|
1290
|
-
}
|
1291
|
-
#[repr(C)]
|
1292
|
-
#[cfg(feature = "Win32_Security")]
|
1293
|
-
#[derive(Clone, Copy)]
|
1294
|
-
pub struct FWPM_CLASSIFY_OPTION0 {
|
1295
|
-
pub r#type: FWP_CLASSIFY_OPTION_TYPE,
|
1296
|
-
pub value: FWP_VALUE0,
|
1297
|
-
}
|
1298
|
-
#[repr(C)]
|
1299
|
-
#[cfg(feature = "Win32_Security")]
|
1300
|
-
#[derive(Clone, Copy)]
|
1301
|
-
pub struct FWPM_CLASSIFY_OPTIONS0 {
|
1302
|
-
pub numOptions: u32,
|
1303
|
-
pub options: *mut FWPM_CLASSIFY_OPTION0,
|
1304
|
-
}
|
1305
|
-
#[repr(C)]
|
1306
|
-
#[derive(Clone, Copy)]
|
1307
|
-
pub struct FWPM_CONNECTION0 {
|
1308
|
-
pub connectionId: u64,
|
1309
|
-
pub ipVersion: FWP_IP_VERSION,
|
1310
|
-
pub Anonymous1: FWPM_CONNECTION0_0,
|
1311
|
-
pub Anonymous2: FWPM_CONNECTION0_1,
|
1312
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
1313
|
-
pub ipsecTrafficModeType: IPSEC_TRAFFIC_TYPE,
|
1314
|
-
pub keyModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1315
|
-
pub mmCrypto: IKEEXT_PROPOSAL0,
|
1316
|
-
pub mmPeer: IKEEXT_CREDENTIAL2,
|
1317
|
-
pub emPeer: IKEEXT_CREDENTIAL2,
|
1318
|
-
pub bytesTransferredIn: u64,
|
1319
|
-
pub bytesTransferredOut: u64,
|
1320
|
-
pub bytesTransferredTotal: u64,
|
1321
|
-
pub startSysTime: super::super::Foundation::FILETIME,
|
1322
|
-
}
|
1323
|
-
#[repr(C)]
|
1324
|
-
#[derive(Clone, Copy)]
|
1325
|
-
pub union FWPM_CONNECTION0_0 {
|
1326
|
-
pub localV4Address: u32,
|
1327
|
-
pub localV6Address: [u8; 16],
|
1328
|
-
}
|
1329
|
-
#[repr(C)]
|
1330
|
-
#[derive(Clone, Copy)]
|
1331
|
-
pub union FWPM_CONNECTION0_1 {
|
1332
|
-
pub remoteV4Address: u32,
|
1333
|
-
pub remoteV6Address: [u8; 16],
|
1334
|
-
}
|
1335
|
-
#[repr(C)]
|
1336
|
-
#[derive(Clone, Copy)]
|
1337
|
-
pub struct FWPM_CONNECTION_ENUM_TEMPLATE0 {
|
1338
|
-
pub connectionId: u64,
|
1339
|
-
pub flags: u32,
|
1340
|
-
}
|
1341
|
-
#[repr(C)]
|
1342
|
-
#[derive(Clone, Copy)]
|
1343
|
-
pub struct FWPM_CONNECTION_SUBSCRIPTION0 {
|
1344
|
-
pub enumTemplate: *mut FWPM_CONNECTION_ENUM_TEMPLATE0,
|
1345
|
-
pub flags: u32,
|
1346
|
-
pub sessionKey: windows_sys::core::GUID,
|
1347
|
-
}
|
1348
|
-
#[repr(C)]
|
1349
|
-
#[derive(Clone, Copy)]
|
1350
|
-
pub struct FWPM_DISPLAY_DATA0 {
|
1351
|
-
pub name: windows_sys::core::PWSTR,
|
1352
|
-
pub description: windows_sys::core::PWSTR,
|
1353
|
-
}
|
1354
|
-
#[repr(C)]
|
1355
|
-
#[derive(Clone, Copy)]
|
1356
|
-
pub struct FWPM_FIELD0 {
|
1357
|
-
pub fieldKey: *mut windows_sys::core::GUID,
|
1358
|
-
pub r#type: FWPM_FIELD_TYPE,
|
1359
|
-
pub dataType: FWP_DATA_TYPE,
|
1360
|
-
}
|
1361
|
-
#[repr(C)]
|
1362
|
-
#[cfg(feature = "Win32_Security")]
|
1363
|
-
#[derive(Clone, Copy)]
|
1364
|
-
pub struct FWPM_FILTER0 {
|
1365
|
-
pub filterKey: windows_sys::core::GUID,
|
1366
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
1367
|
-
pub flags: FWPM_FILTER_FLAGS,
|
1368
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
1369
|
-
pub providerData: FWP_BYTE_BLOB,
|
1370
|
-
pub layerKey: windows_sys::core::GUID,
|
1371
|
-
pub subLayerKey: windows_sys::core::GUID,
|
1372
|
-
pub weight: FWP_VALUE0,
|
1373
|
-
pub numFilterConditions: u32,
|
1374
|
-
pub filterCondition: *mut FWPM_FILTER_CONDITION0,
|
1375
|
-
pub action: FWPM_ACTION0,
|
1376
|
-
pub Anonymous: FWPM_FILTER0_0,
|
1377
|
-
pub reserved: *mut windows_sys::core::GUID,
|
1378
|
-
pub filterId: u64,
|
1379
|
-
pub effectiveWeight: FWP_VALUE0,
|
1380
|
-
}
|
1381
|
-
#[repr(C)]
|
1382
|
-
#[cfg(feature = "Win32_Security")]
|
1383
|
-
#[derive(Clone, Copy)]
|
1384
|
-
pub union FWPM_FILTER0_0 {
|
1385
|
-
pub rawContext: u64,
|
1386
|
-
pub providerContextKey: windows_sys::core::GUID,
|
1387
|
-
}
|
1388
|
-
#[repr(C)]
|
1389
|
-
#[derive(Clone, Copy)]
|
1390
|
-
pub struct FWPM_FILTER_CHANGE0 {
|
1391
|
-
pub changeType: FWPM_CHANGE_TYPE,
|
1392
|
-
pub filterKey: windows_sys::core::GUID,
|
1393
|
-
pub filterId: u64,
|
1394
|
-
}
|
1395
|
-
#[repr(C)]
|
1396
|
-
#[cfg(feature = "Win32_Security")]
|
1397
|
-
#[derive(Clone, Copy)]
|
1398
|
-
pub struct FWPM_FILTER_CONDITION0 {
|
1399
|
-
pub fieldKey: windows_sys::core::GUID,
|
1400
|
-
pub matchType: FWP_MATCH_TYPE,
|
1401
|
-
pub conditionValue: FWP_CONDITION_VALUE0,
|
1402
|
-
}
|
1403
|
-
#[repr(C)]
|
1404
|
-
#[cfg(feature = "Win32_Security")]
|
1405
|
-
#[derive(Clone, Copy)]
|
1406
|
-
pub struct FWPM_FILTER_ENUM_TEMPLATE0 {
|
1407
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
1408
|
-
pub layerKey: windows_sys::core::GUID,
|
1409
|
-
pub enumType: FWP_FILTER_ENUM_TYPE,
|
1410
|
-
pub flags: u32,
|
1411
|
-
pub providerContextTemplate: *mut FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0,
|
1412
|
-
pub numFilterConditions: u32,
|
1413
|
-
pub filterCondition: *mut FWPM_FILTER_CONDITION0,
|
1414
|
-
pub actionMask: u32,
|
1415
|
-
pub calloutKey: *mut windows_sys::core::GUID,
|
1416
|
-
}
|
1417
|
-
#[repr(C)]
|
1418
|
-
#[cfg(feature = "Win32_Security")]
|
1419
|
-
#[derive(Clone, Copy)]
|
1420
|
-
pub struct FWPM_FILTER_SUBSCRIPTION0 {
|
1421
|
-
pub enumTemplate: *mut FWPM_FILTER_ENUM_TEMPLATE0,
|
1422
|
-
pub flags: u32,
|
1423
|
-
pub sessionKey: windows_sys::core::GUID,
|
1424
|
-
}
|
1425
|
-
#[repr(C)]
|
1426
|
-
#[derive(Clone, Copy)]
|
1427
|
-
pub struct FWPM_LAYER0 {
|
1428
|
-
pub layerKey: windows_sys::core::GUID,
|
1429
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
1430
|
-
pub flags: u32,
|
1431
|
-
pub numFields: u32,
|
1432
|
-
pub field: *mut FWPM_FIELD0,
|
1433
|
-
pub defaultSubLayerKey: windows_sys::core::GUID,
|
1434
|
-
pub layerId: u16,
|
1435
|
-
}
|
1436
|
-
#[repr(C)]
|
1437
|
-
#[derive(Clone, Copy)]
|
1438
|
-
pub struct FWPM_LAYER_ENUM_TEMPLATE0 {
|
1439
|
-
pub reserved: u64,
|
1440
|
-
}
|
1441
|
-
#[repr(C)]
|
1442
|
-
#[derive(Clone, Copy)]
|
1443
|
-
pub struct FWPM_LAYER_STATISTICS0 {
|
1444
|
-
pub layerId: windows_sys::core::GUID,
|
1445
|
-
pub classifyPermitCount: u32,
|
1446
|
-
pub classifyBlockCount: u32,
|
1447
|
-
pub classifyVetoCount: u32,
|
1448
|
-
pub numCacheEntries: u32,
|
1449
|
-
}
|
1450
|
-
#[repr(C)]
|
1451
|
-
#[cfg(feature = "Win32_Security")]
|
1452
|
-
#[derive(Clone, Copy)]
|
1453
|
-
pub struct FWPM_NETWORK_CONNECTION_POLICY_SETTING0 {
|
1454
|
-
pub r#type: FWP_NETWORK_CONNECTION_POLICY_SETTING_TYPE,
|
1455
|
-
pub value: FWP_VALUE0,
|
1456
|
-
}
|
1457
|
-
#[repr(C)]
|
1458
|
-
#[cfg(feature = "Win32_Security")]
|
1459
|
-
#[derive(Clone, Copy)]
|
1460
|
-
pub struct FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0 {
|
1461
|
-
pub numSettings: u32,
|
1462
|
-
pub settings: *mut FWPM_NETWORK_CONNECTION_POLICY_SETTING0,
|
1463
|
-
}
|
1464
|
-
#[repr(C)]
|
1465
|
-
#[cfg(feature = "Win32_Security")]
|
1466
|
-
#[derive(Clone, Copy)]
|
1467
|
-
pub struct FWPM_NET_EVENT0 {
|
1468
|
-
pub header: FWPM_NET_EVENT_HEADER0,
|
1469
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1470
|
-
pub Anonymous: FWPM_NET_EVENT0_0,
|
1471
|
-
}
|
1472
|
-
#[repr(C)]
|
1473
|
-
#[cfg(feature = "Win32_Security")]
|
1474
|
-
#[derive(Clone, Copy)]
|
1475
|
-
pub union FWPM_NET_EVENT0_0 {
|
1476
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE0,
|
1477
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE0,
|
1478
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE0,
|
1479
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP0,
|
1480
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1481
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1482
|
-
}
|
1483
|
-
#[repr(C)]
|
1484
|
-
#[cfg(feature = "Win32_Security")]
|
1485
|
-
#[derive(Clone, Copy)]
|
1486
|
-
pub struct FWPM_NET_EVENT1 {
|
1487
|
-
pub header: FWPM_NET_EVENT_HEADER1,
|
1488
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1489
|
-
pub Anonymous: FWPM_NET_EVENT1_0,
|
1490
|
-
}
|
1491
|
-
#[repr(C)]
|
1492
|
-
#[cfg(feature = "Win32_Security")]
|
1493
|
-
#[derive(Clone, Copy)]
|
1494
|
-
pub union FWPM_NET_EVENT1_0 {
|
1495
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE1,
|
1496
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE0,
|
1497
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE1,
|
1498
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP1,
|
1499
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1500
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1501
|
-
}
|
1502
|
-
#[repr(C)]
|
1503
|
-
#[cfg(feature = "Win32_Security")]
|
1504
|
-
#[derive(Clone, Copy)]
|
1505
|
-
pub struct FWPM_NET_EVENT2 {
|
1506
|
-
pub header: FWPM_NET_EVENT_HEADER2,
|
1507
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1508
|
-
pub Anonymous: FWPM_NET_EVENT2_0,
|
1509
|
-
}
|
1510
|
-
#[repr(C)]
|
1511
|
-
#[cfg(feature = "Win32_Security")]
|
1512
|
-
#[derive(Clone, Copy)]
|
1513
|
-
pub union FWPM_NET_EVENT2_0 {
|
1514
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE1,
|
1515
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE0,
|
1516
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE1,
|
1517
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP2,
|
1518
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1519
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1520
|
-
pub classifyAllow: *mut FWPM_NET_EVENT_CLASSIFY_ALLOW0,
|
1521
|
-
pub capabilityDrop: *mut FWPM_NET_EVENT_CAPABILITY_DROP0,
|
1522
|
-
pub capabilityAllow: *mut FWPM_NET_EVENT_CAPABILITY_ALLOW0,
|
1523
|
-
pub classifyDropMac: *mut FWPM_NET_EVENT_CLASSIFY_DROP_MAC0,
|
1524
|
-
}
|
1525
|
-
#[repr(C)]
|
1526
|
-
#[cfg(feature = "Win32_Security")]
|
1527
|
-
#[derive(Clone, Copy)]
|
1528
|
-
pub struct FWPM_NET_EVENT3 {
|
1529
|
-
pub header: FWPM_NET_EVENT_HEADER3,
|
1530
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1531
|
-
pub Anonymous: FWPM_NET_EVENT3_0,
|
1532
|
-
}
|
1533
|
-
#[repr(C)]
|
1534
|
-
#[cfg(feature = "Win32_Security")]
|
1535
|
-
#[derive(Clone, Copy)]
|
1536
|
-
pub union FWPM_NET_EVENT3_0 {
|
1537
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE1,
|
1538
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE0,
|
1539
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE1,
|
1540
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP2,
|
1541
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1542
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1543
|
-
pub classifyAllow: *mut FWPM_NET_EVENT_CLASSIFY_ALLOW0,
|
1544
|
-
pub capabilityDrop: *mut FWPM_NET_EVENT_CAPABILITY_DROP0,
|
1545
|
-
pub capabilityAllow: *mut FWPM_NET_EVENT_CAPABILITY_ALLOW0,
|
1546
|
-
pub classifyDropMac: *mut FWPM_NET_EVENT_CLASSIFY_DROP_MAC0,
|
1547
|
-
}
|
1548
|
-
#[repr(C)]
|
1549
|
-
#[cfg(feature = "Win32_Security")]
|
1550
|
-
#[derive(Clone, Copy)]
|
1551
|
-
pub struct FWPM_NET_EVENT4 {
|
1552
|
-
pub header: FWPM_NET_EVENT_HEADER3,
|
1553
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1554
|
-
pub Anonymous: FWPM_NET_EVENT4_0,
|
1555
|
-
}
|
1556
|
-
#[repr(C)]
|
1557
|
-
#[cfg(feature = "Win32_Security")]
|
1558
|
-
#[derive(Clone, Copy)]
|
1559
|
-
pub union FWPM_NET_EVENT4_0 {
|
1560
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE2,
|
1561
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE1,
|
1562
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE1,
|
1563
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP2,
|
1564
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1565
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1566
|
-
pub classifyAllow: *mut FWPM_NET_EVENT_CLASSIFY_ALLOW0,
|
1567
|
-
pub capabilityDrop: *mut FWPM_NET_EVENT_CAPABILITY_DROP0,
|
1568
|
-
pub capabilityAllow: *mut FWPM_NET_EVENT_CAPABILITY_ALLOW0,
|
1569
|
-
pub classifyDropMac: *mut FWPM_NET_EVENT_CLASSIFY_DROP_MAC0,
|
1570
|
-
}
|
1571
|
-
#[repr(C)]
|
1572
|
-
#[cfg(feature = "Win32_Security")]
|
1573
|
-
#[derive(Clone, Copy)]
|
1574
|
-
pub struct FWPM_NET_EVENT5 {
|
1575
|
-
pub header: FWPM_NET_EVENT_HEADER3,
|
1576
|
-
pub r#type: FWPM_NET_EVENT_TYPE,
|
1577
|
-
pub Anonymous: FWPM_NET_EVENT5_0,
|
1578
|
-
}
|
1579
|
-
#[repr(C)]
|
1580
|
-
#[cfg(feature = "Win32_Security")]
|
1581
|
-
#[derive(Clone, Copy)]
|
1582
|
-
pub union FWPM_NET_EVENT5_0 {
|
1583
|
-
pub ikeMmFailure: *mut FWPM_NET_EVENT_IKEEXT_MM_FAILURE2,
|
1584
|
-
pub ikeQmFailure: *mut FWPM_NET_EVENT_IKEEXT_QM_FAILURE1,
|
1585
|
-
pub ikeEmFailure: *mut FWPM_NET_EVENT_IKEEXT_EM_FAILURE1,
|
1586
|
-
pub classifyDrop: *mut FWPM_NET_EVENT_CLASSIFY_DROP2,
|
1587
|
-
pub ipsecDrop: *mut FWPM_NET_EVENT_IPSEC_KERNEL_DROP0,
|
1588
|
-
pub idpDrop: *mut FWPM_NET_EVENT_IPSEC_DOSP_DROP0,
|
1589
|
-
pub classifyAllow: *mut FWPM_NET_EVENT_CLASSIFY_ALLOW0,
|
1590
|
-
pub capabilityDrop: *mut FWPM_NET_EVENT_CAPABILITY_DROP0,
|
1591
|
-
pub capabilityAllow: *mut FWPM_NET_EVENT_CAPABILITY_ALLOW0,
|
1592
|
-
pub classifyDropMac: *mut FWPM_NET_EVENT_CLASSIFY_DROP_MAC0,
|
1593
|
-
pub lpmPacketArrival: *mut FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0,
|
1594
|
-
}
|
1595
|
-
#[repr(C)]
|
1596
|
-
#[derive(Clone, Copy)]
|
1597
|
-
pub struct FWPM_NET_EVENT_CAPABILITY_ALLOW0 {
|
1598
|
-
pub networkCapabilityId: FWPM_APPC_NETWORK_CAPABILITY_TYPE,
|
1599
|
-
pub filterId: u64,
|
1600
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1601
|
-
}
|
1602
|
-
#[repr(C)]
|
1603
|
-
#[derive(Clone, Copy)]
|
1604
|
-
pub struct FWPM_NET_EVENT_CAPABILITY_DROP0 {
|
1605
|
-
pub networkCapabilityId: FWPM_APPC_NETWORK_CAPABILITY_TYPE,
|
1606
|
-
pub filterId: u64,
|
1607
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1608
|
-
}
|
1609
|
-
#[repr(C)]
|
1610
|
-
#[derive(Clone, Copy)]
|
1611
|
-
pub struct FWPM_NET_EVENT_CLASSIFY_ALLOW0 {
|
1612
|
-
pub filterId: u64,
|
1613
|
-
pub layerId: u16,
|
1614
|
-
pub reauthReason: u32,
|
1615
|
-
pub originalProfile: u32,
|
1616
|
-
pub currentProfile: u32,
|
1617
|
-
pub msFwpDirection: u32,
|
1618
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1619
|
-
}
|
1620
|
-
#[repr(C)]
|
1621
|
-
#[derive(Clone, Copy)]
|
1622
|
-
pub struct FWPM_NET_EVENT_CLASSIFY_DROP0 {
|
1623
|
-
pub filterId: u64,
|
1624
|
-
pub layerId: u16,
|
1625
|
-
}
|
1626
|
-
#[repr(C)]
|
1627
|
-
#[derive(Clone, Copy)]
|
1628
|
-
pub struct FWPM_NET_EVENT_CLASSIFY_DROP1 {
|
1629
|
-
pub filterId: u64,
|
1630
|
-
pub layerId: u16,
|
1631
|
-
pub reauthReason: u32,
|
1632
|
-
pub originalProfile: u32,
|
1633
|
-
pub currentProfile: u32,
|
1634
|
-
pub msFwpDirection: u32,
|
1635
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1636
|
-
}
|
1637
|
-
#[repr(C)]
|
1638
|
-
#[derive(Clone, Copy)]
|
1639
|
-
pub struct FWPM_NET_EVENT_CLASSIFY_DROP2 {
|
1640
|
-
pub filterId: u64,
|
1641
|
-
pub layerId: u16,
|
1642
|
-
pub reauthReason: u32,
|
1643
|
-
pub originalProfile: u32,
|
1644
|
-
pub currentProfile: u32,
|
1645
|
-
pub msFwpDirection: u32,
|
1646
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1647
|
-
pub vSwitchId: FWP_BYTE_BLOB,
|
1648
|
-
pub vSwitchSourcePort: u32,
|
1649
|
-
pub vSwitchDestinationPort: u32,
|
1650
|
-
}
|
1651
|
-
#[repr(C)]
|
1652
|
-
#[derive(Clone, Copy)]
|
1653
|
-
pub struct FWPM_NET_EVENT_CLASSIFY_DROP_MAC0 {
|
1654
|
-
pub localMacAddr: FWP_BYTE_ARRAY6,
|
1655
|
-
pub remoteMacAddr: FWP_BYTE_ARRAY6,
|
1656
|
-
pub mediaType: u32,
|
1657
|
-
pub ifType: u32,
|
1658
|
-
pub etherType: u16,
|
1659
|
-
pub ndisPortNumber: u32,
|
1660
|
-
pub reserved: u32,
|
1661
|
-
pub vlanTag: u16,
|
1662
|
-
pub ifLuid: u64,
|
1663
|
-
pub filterId: u64,
|
1664
|
-
pub layerId: u16,
|
1665
|
-
pub reauthReason: u32,
|
1666
|
-
pub originalProfile: u32,
|
1667
|
-
pub currentProfile: u32,
|
1668
|
-
pub msFwpDirection: u32,
|
1669
|
-
pub isLoopback: super::super::Foundation::BOOL,
|
1670
|
-
pub vSwitchId: FWP_BYTE_BLOB,
|
1671
|
-
pub vSwitchSourcePort: u32,
|
1672
|
-
pub vSwitchDestinationPort: u32,
|
1673
|
-
}
|
1674
|
-
#[repr(C)]
|
1675
|
-
#[cfg(feature = "Win32_Security")]
|
1676
|
-
#[derive(Clone, Copy)]
|
1677
|
-
pub struct FWPM_NET_EVENT_ENUM_TEMPLATE0 {
|
1678
|
-
pub startTime: super::super::Foundation::FILETIME,
|
1679
|
-
pub endTime: super::super::Foundation::FILETIME,
|
1680
|
-
pub numFilterConditions: u32,
|
1681
|
-
pub filterCondition: *mut FWPM_FILTER_CONDITION0,
|
1682
|
-
}
|
1683
|
-
#[repr(C)]
|
1684
|
-
#[cfg(feature = "Win32_Security")]
|
1685
|
-
#[derive(Clone, Copy)]
|
1686
|
-
pub struct FWPM_NET_EVENT_HEADER0 {
|
1687
|
-
pub timeStamp: super::super::Foundation::FILETIME,
|
1688
|
-
pub flags: u32,
|
1689
|
-
pub ipVersion: FWP_IP_VERSION,
|
1690
|
-
pub ipProtocol: u8,
|
1691
|
-
pub Anonymous1: FWPM_NET_EVENT_HEADER0_0,
|
1692
|
-
pub Anonymous2: FWPM_NET_EVENT_HEADER0_1,
|
1693
|
-
pub localPort: u16,
|
1694
|
-
pub remotePort: u16,
|
1695
|
-
pub scopeId: u32,
|
1696
|
-
pub appId: FWP_BYTE_BLOB,
|
1697
|
-
pub userId: *mut super::super::Security::SID,
|
1698
|
-
}
|
1699
|
-
#[repr(C)]
|
1700
|
-
#[cfg(feature = "Win32_Security")]
|
1701
|
-
#[derive(Clone, Copy)]
|
1702
|
-
pub union FWPM_NET_EVENT_HEADER0_0 {
|
1703
|
-
pub localAddrV4: u32,
|
1704
|
-
pub localAddrV6: FWP_BYTE_ARRAY16,
|
1705
|
-
}
|
1706
|
-
#[repr(C)]
|
1707
|
-
#[cfg(feature = "Win32_Security")]
|
1708
|
-
#[derive(Clone, Copy)]
|
1709
|
-
pub union FWPM_NET_EVENT_HEADER0_1 {
|
1710
|
-
pub remoteAddrV4: u32,
|
1711
|
-
pub remoteAddrV6: FWP_BYTE_ARRAY16,
|
1712
|
-
}
|
1713
|
-
#[repr(C)]
|
1714
|
-
#[cfg(feature = "Win32_Security")]
|
1715
|
-
#[derive(Clone, Copy)]
|
1716
|
-
pub struct FWPM_NET_EVENT_HEADER1 {
|
1717
|
-
pub timeStamp: super::super::Foundation::FILETIME,
|
1718
|
-
pub flags: u32,
|
1719
|
-
pub ipVersion: FWP_IP_VERSION,
|
1720
|
-
pub ipProtocol: u8,
|
1721
|
-
pub Anonymous1: FWPM_NET_EVENT_HEADER1_0,
|
1722
|
-
pub Anonymous2: FWPM_NET_EVENT_HEADER1_1,
|
1723
|
-
pub localPort: u16,
|
1724
|
-
pub remotePort: u16,
|
1725
|
-
pub scopeId: u32,
|
1726
|
-
pub appId: FWP_BYTE_BLOB,
|
1727
|
-
pub userId: *mut super::super::Security::SID,
|
1728
|
-
pub Anonymous3: FWPM_NET_EVENT_HEADER1_2,
|
1729
|
-
}
|
1730
|
-
#[repr(C)]
|
1731
|
-
#[cfg(feature = "Win32_Security")]
|
1732
|
-
#[derive(Clone, Copy)]
|
1733
|
-
pub union FWPM_NET_EVENT_HEADER1_0 {
|
1734
|
-
pub localAddrV4: u32,
|
1735
|
-
pub localAddrV6: FWP_BYTE_ARRAY16,
|
1736
|
-
}
|
1737
|
-
#[repr(C)]
|
1738
|
-
#[cfg(feature = "Win32_Security")]
|
1739
|
-
#[derive(Clone, Copy)]
|
1740
|
-
pub union FWPM_NET_EVENT_HEADER1_1 {
|
1741
|
-
pub remoteAddrV4: u32,
|
1742
|
-
pub remoteAddrV6: FWP_BYTE_ARRAY16,
|
1743
|
-
}
|
1744
|
-
#[repr(C)]
|
1745
|
-
#[cfg(feature = "Win32_Security")]
|
1746
|
-
#[derive(Clone, Copy)]
|
1747
|
-
pub union FWPM_NET_EVENT_HEADER1_2 {
|
1748
|
-
pub Anonymous: FWPM_NET_EVENT_HEADER1_2_0,
|
1749
|
-
}
|
1750
|
-
#[repr(C)]
|
1751
|
-
#[cfg(feature = "Win32_Security")]
|
1752
|
-
#[derive(Clone, Copy)]
|
1753
|
-
pub struct FWPM_NET_EVENT_HEADER1_2_0 {
|
1754
|
-
pub reserved1: FWP_AF,
|
1755
|
-
pub Anonymous: FWPM_NET_EVENT_HEADER1_2_0_0,
|
1756
|
-
}
|
1757
|
-
#[repr(C)]
|
1758
|
-
#[cfg(feature = "Win32_Security")]
|
1759
|
-
#[derive(Clone, Copy)]
|
1760
|
-
pub union FWPM_NET_EVENT_HEADER1_2_0_0 {
|
1761
|
-
pub Anonymous: FWPM_NET_EVENT_HEADER1_2_0_0_0,
|
1762
|
-
}
|
1763
|
-
#[repr(C)]
|
1764
|
-
#[cfg(feature = "Win32_Security")]
|
1765
|
-
#[derive(Clone, Copy)]
|
1766
|
-
pub struct FWPM_NET_EVENT_HEADER1_2_0_0_0 {
|
1767
|
-
pub reserved2: FWP_BYTE_ARRAY6,
|
1768
|
-
pub reserved3: FWP_BYTE_ARRAY6,
|
1769
|
-
pub reserved4: u32,
|
1770
|
-
pub reserved5: u32,
|
1771
|
-
pub reserved6: u16,
|
1772
|
-
pub reserved7: u32,
|
1773
|
-
pub reserved8: u32,
|
1774
|
-
pub reserved9: u16,
|
1775
|
-
pub reserved10: u64,
|
1776
|
-
}
|
1777
|
-
#[repr(C)]
|
1778
|
-
#[cfg(feature = "Win32_Security")]
|
1779
|
-
#[derive(Clone, Copy)]
|
1780
|
-
pub struct FWPM_NET_EVENT_HEADER2 {
|
1781
|
-
pub timeStamp: super::super::Foundation::FILETIME,
|
1782
|
-
pub flags: u32,
|
1783
|
-
pub ipVersion: FWP_IP_VERSION,
|
1784
|
-
pub ipProtocol: u8,
|
1785
|
-
pub Anonymous1: FWPM_NET_EVENT_HEADER2_0,
|
1786
|
-
pub Anonymous2: FWPM_NET_EVENT_HEADER2_1,
|
1787
|
-
pub localPort: u16,
|
1788
|
-
pub remotePort: u16,
|
1789
|
-
pub scopeId: u32,
|
1790
|
-
pub appId: FWP_BYTE_BLOB,
|
1791
|
-
pub userId: *mut super::super::Security::SID,
|
1792
|
-
pub addressFamily: FWP_AF,
|
1793
|
-
pub packageSid: *mut super::super::Security::SID,
|
1794
|
-
}
|
1795
|
-
#[repr(C)]
|
1796
|
-
#[cfg(feature = "Win32_Security")]
|
1797
|
-
#[derive(Clone, Copy)]
|
1798
|
-
pub union FWPM_NET_EVENT_HEADER2_0 {
|
1799
|
-
pub localAddrV4: u32,
|
1800
|
-
pub localAddrV6: FWP_BYTE_ARRAY16,
|
1801
|
-
}
|
1802
|
-
#[repr(C)]
|
1803
|
-
#[cfg(feature = "Win32_Security")]
|
1804
|
-
#[derive(Clone, Copy)]
|
1805
|
-
pub union FWPM_NET_EVENT_HEADER2_1 {
|
1806
|
-
pub remoteAddrV4: u32,
|
1807
|
-
pub remoteAddrV6: FWP_BYTE_ARRAY16,
|
1808
|
-
}
|
1809
|
-
#[repr(C)]
|
1810
|
-
#[cfg(feature = "Win32_Security")]
|
1811
|
-
#[derive(Clone, Copy)]
|
1812
|
-
pub struct FWPM_NET_EVENT_HEADER3 {
|
1813
|
-
pub timeStamp: super::super::Foundation::FILETIME,
|
1814
|
-
pub flags: u32,
|
1815
|
-
pub ipVersion: FWP_IP_VERSION,
|
1816
|
-
pub ipProtocol: u8,
|
1817
|
-
pub Anonymous1: FWPM_NET_EVENT_HEADER3_0,
|
1818
|
-
pub Anonymous2: FWPM_NET_EVENT_HEADER3_1,
|
1819
|
-
pub localPort: u16,
|
1820
|
-
pub remotePort: u16,
|
1821
|
-
pub scopeId: u32,
|
1822
|
-
pub appId: FWP_BYTE_BLOB,
|
1823
|
-
pub userId: *mut super::super::Security::SID,
|
1824
|
-
pub addressFamily: FWP_AF,
|
1825
|
-
pub packageSid: *mut super::super::Security::SID,
|
1826
|
-
pub enterpriseId: windows_sys::core::PWSTR,
|
1827
|
-
pub policyFlags: u64,
|
1828
|
-
pub effectiveName: FWP_BYTE_BLOB,
|
1829
|
-
}
|
1830
|
-
#[repr(C)]
|
1831
|
-
#[cfg(feature = "Win32_Security")]
|
1832
|
-
#[derive(Clone, Copy)]
|
1833
|
-
pub union FWPM_NET_EVENT_HEADER3_0 {
|
1834
|
-
pub localAddrV4: u32,
|
1835
|
-
pub localAddrV6: FWP_BYTE_ARRAY16,
|
1836
|
-
}
|
1837
|
-
#[repr(C)]
|
1838
|
-
#[cfg(feature = "Win32_Security")]
|
1839
|
-
#[derive(Clone, Copy)]
|
1840
|
-
pub union FWPM_NET_EVENT_HEADER3_1 {
|
1841
|
-
pub remoteAddrV4: u32,
|
1842
|
-
pub remoteAddrV6: FWP_BYTE_ARRAY16,
|
1843
|
-
}
|
1844
|
-
#[repr(C)]
|
1845
|
-
#[derive(Clone, Copy)]
|
1846
|
-
pub struct FWPM_NET_EVENT_IKEEXT_EM_FAILURE0 {
|
1847
|
-
pub failureErrorCode: u32,
|
1848
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1849
|
-
pub flags: u32,
|
1850
|
-
pub emState: IKEEXT_EM_SA_STATE,
|
1851
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1852
|
-
pub emAuthMethod: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
1853
|
-
pub endCertHash: [u8; 20],
|
1854
|
-
pub mmId: u64,
|
1855
|
-
pub qmFilterId: u64,
|
1856
|
-
}
|
1857
|
-
#[repr(C)]
|
1858
|
-
#[derive(Clone, Copy)]
|
1859
|
-
pub struct FWPM_NET_EVENT_IKEEXT_EM_FAILURE1 {
|
1860
|
-
pub failureErrorCode: u32,
|
1861
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1862
|
-
pub flags: u32,
|
1863
|
-
pub emState: IKEEXT_EM_SA_STATE,
|
1864
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1865
|
-
pub emAuthMethod: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
1866
|
-
pub endCertHash: [u8; 20],
|
1867
|
-
pub mmId: u64,
|
1868
|
-
pub qmFilterId: u64,
|
1869
|
-
pub localPrincipalNameForAuth: windows_sys::core::PWSTR,
|
1870
|
-
pub remotePrincipalNameForAuth: windows_sys::core::PWSTR,
|
1871
|
-
pub numLocalPrincipalGroupSids: u32,
|
1872
|
-
pub localPrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1873
|
-
pub numRemotePrincipalGroupSids: u32,
|
1874
|
-
pub remotePrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1875
|
-
pub saTrafficType: IPSEC_TRAFFIC_TYPE,
|
1876
|
-
}
|
1877
|
-
#[repr(C)]
|
1878
|
-
#[derive(Clone, Copy)]
|
1879
|
-
pub struct FWPM_NET_EVENT_IKEEXT_MM_FAILURE0 {
|
1880
|
-
pub failureErrorCode: u32,
|
1881
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1882
|
-
pub flags: u32,
|
1883
|
-
pub keyingModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1884
|
-
pub mmState: IKEEXT_MM_SA_STATE,
|
1885
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1886
|
-
pub mmAuthMethod: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
1887
|
-
pub endCertHash: [u8; 20],
|
1888
|
-
pub mmId: u64,
|
1889
|
-
pub mmFilterId: u64,
|
1890
|
-
}
|
1891
|
-
#[repr(C)]
|
1892
|
-
#[derive(Clone, Copy)]
|
1893
|
-
pub struct FWPM_NET_EVENT_IKEEXT_MM_FAILURE1 {
|
1894
|
-
pub failureErrorCode: u32,
|
1895
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1896
|
-
pub flags: u32,
|
1897
|
-
pub keyingModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1898
|
-
pub mmState: IKEEXT_MM_SA_STATE,
|
1899
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1900
|
-
pub mmAuthMethod: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
1901
|
-
pub endCertHash: [u8; 20],
|
1902
|
-
pub mmId: u64,
|
1903
|
-
pub mmFilterId: u64,
|
1904
|
-
pub localPrincipalNameForAuth: windows_sys::core::PWSTR,
|
1905
|
-
pub remotePrincipalNameForAuth: windows_sys::core::PWSTR,
|
1906
|
-
pub numLocalPrincipalGroupSids: u32,
|
1907
|
-
pub localPrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1908
|
-
pub numRemotePrincipalGroupSids: u32,
|
1909
|
-
pub remotePrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1910
|
-
}
|
1911
|
-
#[repr(C)]
|
1912
|
-
#[derive(Clone, Copy)]
|
1913
|
-
pub struct FWPM_NET_EVENT_IKEEXT_MM_FAILURE2 {
|
1914
|
-
pub failureErrorCode: u32,
|
1915
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1916
|
-
pub flags: u32,
|
1917
|
-
pub keyingModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1918
|
-
pub mmState: IKEEXT_MM_SA_STATE,
|
1919
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1920
|
-
pub mmAuthMethod: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
1921
|
-
pub endCertHash: [u8; 20],
|
1922
|
-
pub mmId: u64,
|
1923
|
-
pub mmFilterId: u64,
|
1924
|
-
pub localPrincipalNameForAuth: windows_sys::core::PWSTR,
|
1925
|
-
pub remotePrincipalNameForAuth: windows_sys::core::PWSTR,
|
1926
|
-
pub numLocalPrincipalGroupSids: u32,
|
1927
|
-
pub localPrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1928
|
-
pub numRemotePrincipalGroupSids: u32,
|
1929
|
-
pub remotePrincipalGroupSids: *mut windows_sys::core::PWSTR,
|
1930
|
-
pub providerContextKey: *mut windows_sys::core::GUID,
|
1931
|
-
}
|
1932
|
-
#[repr(C)]
|
1933
|
-
#[cfg(feature = "Win32_Security")]
|
1934
|
-
#[derive(Clone, Copy)]
|
1935
|
-
pub struct FWPM_NET_EVENT_IKEEXT_QM_FAILURE0 {
|
1936
|
-
pub failureErrorCode: u32,
|
1937
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1938
|
-
pub keyingModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1939
|
-
pub qmState: IKEEXT_QM_SA_STATE,
|
1940
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1941
|
-
pub saTrafficType: IPSEC_TRAFFIC_TYPE,
|
1942
|
-
pub Anonymous1: FWPM_NET_EVENT_IKEEXT_QM_FAILURE0_0,
|
1943
|
-
pub Anonymous2: FWPM_NET_EVENT_IKEEXT_QM_FAILURE0_1,
|
1944
|
-
pub qmFilterId: u64,
|
1945
|
-
}
|
1946
|
-
#[repr(C)]
|
1947
|
-
#[cfg(feature = "Win32_Security")]
|
1948
|
-
#[derive(Clone, Copy)]
|
1949
|
-
pub union FWPM_NET_EVENT_IKEEXT_QM_FAILURE0_0 {
|
1950
|
-
pub localSubNet: FWP_CONDITION_VALUE0,
|
1951
|
-
}
|
1952
|
-
#[repr(C)]
|
1953
|
-
#[cfg(feature = "Win32_Security")]
|
1954
|
-
#[derive(Clone, Copy)]
|
1955
|
-
pub union FWPM_NET_EVENT_IKEEXT_QM_FAILURE0_1 {
|
1956
|
-
pub remoteSubNet: FWP_CONDITION_VALUE0,
|
1957
|
-
}
|
1958
|
-
#[repr(C)]
|
1959
|
-
#[cfg(feature = "Win32_Security")]
|
1960
|
-
#[derive(Clone, Copy)]
|
1961
|
-
pub struct FWPM_NET_EVENT_IKEEXT_QM_FAILURE1 {
|
1962
|
-
pub failureErrorCode: u32,
|
1963
|
-
pub failurePoint: IPSEC_FAILURE_POINT,
|
1964
|
-
pub keyingModuleType: IKEEXT_KEY_MODULE_TYPE,
|
1965
|
-
pub qmState: IKEEXT_QM_SA_STATE,
|
1966
|
-
pub saRole: IKEEXT_SA_ROLE,
|
1967
|
-
pub saTrafficType: IPSEC_TRAFFIC_TYPE,
|
1968
|
-
pub Anonymous1: FWPM_NET_EVENT_IKEEXT_QM_FAILURE1_0,
|
1969
|
-
pub Anonymous2: FWPM_NET_EVENT_IKEEXT_QM_FAILURE1_1,
|
1970
|
-
pub qmFilterId: u64,
|
1971
|
-
pub mmSaLuid: u64,
|
1972
|
-
pub mmProviderContextKey: windows_sys::core::GUID,
|
1973
|
-
}
|
1974
|
-
#[repr(C)]
|
1975
|
-
#[cfg(feature = "Win32_Security")]
|
1976
|
-
#[derive(Clone, Copy)]
|
1977
|
-
pub union FWPM_NET_EVENT_IKEEXT_QM_FAILURE1_0 {
|
1978
|
-
pub localSubNet: FWP_CONDITION_VALUE0,
|
1979
|
-
}
|
1980
|
-
#[repr(C)]
|
1981
|
-
#[cfg(feature = "Win32_Security")]
|
1982
|
-
#[derive(Clone, Copy)]
|
1983
|
-
pub union FWPM_NET_EVENT_IKEEXT_QM_FAILURE1_1 {
|
1984
|
-
pub remoteSubNet: FWP_CONDITION_VALUE0,
|
1985
|
-
}
|
1986
|
-
#[repr(C)]
|
1987
|
-
#[derive(Clone, Copy)]
|
1988
|
-
pub struct FWPM_NET_EVENT_IPSEC_DOSP_DROP0 {
|
1989
|
-
pub ipVersion: FWP_IP_VERSION,
|
1990
|
-
pub Anonymous1: FWPM_NET_EVENT_IPSEC_DOSP_DROP0_0,
|
1991
|
-
pub Anonymous2: FWPM_NET_EVENT_IPSEC_DOSP_DROP0_1,
|
1992
|
-
pub failureStatus: i32,
|
1993
|
-
pub direction: FWP_DIRECTION,
|
1994
|
-
}
|
1995
|
-
#[repr(C)]
|
1996
|
-
#[derive(Clone, Copy)]
|
1997
|
-
pub union FWPM_NET_EVENT_IPSEC_DOSP_DROP0_0 {
|
1998
|
-
pub publicHostV4Addr: u32,
|
1999
|
-
pub publicHostV6Addr: [u8; 16],
|
2000
|
-
}
|
2001
|
-
#[repr(C)]
|
2002
|
-
#[derive(Clone, Copy)]
|
2003
|
-
pub union FWPM_NET_EVENT_IPSEC_DOSP_DROP0_1 {
|
2004
|
-
pub internalHostV4Addr: u32,
|
2005
|
-
pub internalHostV6Addr: [u8; 16],
|
2006
|
-
}
|
2007
|
-
#[repr(C)]
|
2008
|
-
#[derive(Clone, Copy)]
|
2009
|
-
pub struct FWPM_NET_EVENT_IPSEC_KERNEL_DROP0 {
|
2010
|
-
pub failureStatus: i32,
|
2011
|
-
pub direction: FWP_DIRECTION,
|
2012
|
-
pub spi: u32,
|
2013
|
-
pub filterId: u64,
|
2014
|
-
pub layerId: u16,
|
2015
|
-
}
|
2016
|
-
#[repr(C)]
|
2017
|
-
#[derive(Clone, Copy)]
|
2018
|
-
pub struct FWPM_NET_EVENT_LPM_PACKET_ARRIVAL0 {
|
2019
|
-
pub spi: u32,
|
2020
|
-
}
|
2021
|
-
#[repr(C)]
|
2022
|
-
#[cfg(feature = "Win32_Security")]
|
2023
|
-
#[derive(Clone, Copy)]
|
2024
|
-
pub struct FWPM_NET_EVENT_SUBSCRIPTION0 {
|
2025
|
-
pub enumTemplate: *mut FWPM_NET_EVENT_ENUM_TEMPLATE0,
|
2026
|
-
pub flags: u32,
|
2027
|
-
pub sessionKey: windows_sys::core::GUID,
|
2028
|
-
}
|
2029
|
-
#[repr(C)]
|
2030
|
-
#[derive(Clone, Copy)]
|
2031
|
-
pub struct FWPM_PROVIDER0 {
|
2032
|
-
pub providerKey: windows_sys::core::GUID,
|
2033
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2034
|
-
pub flags: u32,
|
2035
|
-
pub providerData: FWP_BYTE_BLOB,
|
2036
|
-
pub serviceName: windows_sys::core::PWSTR,
|
2037
|
-
}
|
2038
|
-
#[repr(C)]
|
2039
|
-
#[derive(Clone, Copy)]
|
2040
|
-
pub struct FWPM_PROVIDER_CHANGE0 {
|
2041
|
-
pub changeType: FWPM_CHANGE_TYPE,
|
2042
|
-
pub providerKey: windows_sys::core::GUID,
|
2043
|
-
}
|
2044
|
-
#[repr(C)]
|
2045
|
-
#[cfg(feature = "Win32_Security")]
|
2046
|
-
#[derive(Clone, Copy)]
|
2047
|
-
pub struct FWPM_PROVIDER_CONTEXT0 {
|
2048
|
-
pub providerContextKey: windows_sys::core::GUID,
|
2049
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2050
|
-
pub flags: u32,
|
2051
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2052
|
-
pub providerData: FWP_BYTE_BLOB,
|
2053
|
-
pub r#type: FWPM_PROVIDER_CONTEXT_TYPE,
|
2054
|
-
pub Anonymous: FWPM_PROVIDER_CONTEXT0_0,
|
2055
|
-
pub providerContextId: u64,
|
2056
|
-
}
|
2057
|
-
#[repr(C)]
|
2058
|
-
#[cfg(feature = "Win32_Security")]
|
2059
|
-
#[derive(Clone, Copy)]
|
2060
|
-
pub union FWPM_PROVIDER_CONTEXT0_0 {
|
2061
|
-
pub keyingPolicy: *mut IPSEC_KEYING_POLICY0,
|
2062
|
-
pub ikeQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY0,
|
2063
|
-
pub ikeQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY0,
|
2064
|
-
pub authipQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY0,
|
2065
|
-
pub authipQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY0,
|
2066
|
-
pub ikeMmPolicy: *mut IKEEXT_POLICY0,
|
2067
|
-
pub authIpMmPolicy: *mut IKEEXT_POLICY0,
|
2068
|
-
pub dataBuffer: *mut FWP_BYTE_BLOB,
|
2069
|
-
pub classifyOptions: *mut FWPM_CLASSIFY_OPTIONS0,
|
2070
|
-
}
|
2071
|
-
#[repr(C)]
|
2072
|
-
#[cfg(feature = "Win32_Security")]
|
2073
|
-
#[derive(Clone, Copy)]
|
2074
|
-
pub struct FWPM_PROVIDER_CONTEXT1 {
|
2075
|
-
pub providerContextKey: windows_sys::core::GUID,
|
2076
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2077
|
-
pub flags: u32,
|
2078
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2079
|
-
pub providerData: FWP_BYTE_BLOB,
|
2080
|
-
pub r#type: FWPM_PROVIDER_CONTEXT_TYPE,
|
2081
|
-
pub Anonymous: FWPM_PROVIDER_CONTEXT1_0,
|
2082
|
-
pub providerContextId: u64,
|
2083
|
-
}
|
2084
|
-
#[repr(C)]
|
2085
|
-
#[cfg(feature = "Win32_Security")]
|
2086
|
-
#[derive(Clone, Copy)]
|
2087
|
-
pub union FWPM_PROVIDER_CONTEXT1_0 {
|
2088
|
-
pub keyingPolicy: *mut IPSEC_KEYING_POLICY0,
|
2089
|
-
pub ikeQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY1,
|
2090
|
-
pub ikeQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY1,
|
2091
|
-
pub authipQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY1,
|
2092
|
-
pub authipQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY1,
|
2093
|
-
pub ikeMmPolicy: *mut IKEEXT_POLICY1,
|
2094
|
-
pub authIpMmPolicy: *mut IKEEXT_POLICY1,
|
2095
|
-
pub dataBuffer: *mut FWP_BYTE_BLOB,
|
2096
|
-
pub classifyOptions: *mut FWPM_CLASSIFY_OPTIONS0,
|
2097
|
-
pub ikeV2QmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY1,
|
2098
|
-
pub ikeV2MmPolicy: *mut IKEEXT_POLICY1,
|
2099
|
-
pub idpOptions: *mut IPSEC_DOSP_OPTIONS0,
|
2100
|
-
}
|
2101
|
-
#[repr(C)]
|
2102
|
-
#[cfg(feature = "Win32_Security")]
|
2103
|
-
#[derive(Clone, Copy)]
|
2104
|
-
pub struct FWPM_PROVIDER_CONTEXT2 {
|
2105
|
-
pub providerContextKey: windows_sys::core::GUID,
|
2106
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2107
|
-
pub flags: u32,
|
2108
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2109
|
-
pub providerData: FWP_BYTE_BLOB,
|
2110
|
-
pub r#type: FWPM_PROVIDER_CONTEXT_TYPE,
|
2111
|
-
pub Anonymous: FWPM_PROVIDER_CONTEXT2_0,
|
2112
|
-
pub providerContextId: u64,
|
2113
|
-
}
|
2114
|
-
#[repr(C)]
|
2115
|
-
#[cfg(feature = "Win32_Security")]
|
2116
|
-
#[derive(Clone, Copy)]
|
2117
|
-
pub union FWPM_PROVIDER_CONTEXT2_0 {
|
2118
|
-
pub keyingPolicy: *mut IPSEC_KEYING_POLICY1,
|
2119
|
-
pub ikeQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2120
|
-
pub ikeQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY2,
|
2121
|
-
pub authipQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2122
|
-
pub authipQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY2,
|
2123
|
-
pub ikeMmPolicy: *mut IKEEXT_POLICY2,
|
2124
|
-
pub authIpMmPolicy: *mut IKEEXT_POLICY2,
|
2125
|
-
pub dataBuffer: *mut FWP_BYTE_BLOB,
|
2126
|
-
pub classifyOptions: *mut FWPM_CLASSIFY_OPTIONS0,
|
2127
|
-
pub ikeV2QmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY2,
|
2128
|
-
pub ikeV2QmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2129
|
-
pub ikeV2MmPolicy: *mut IKEEXT_POLICY2,
|
2130
|
-
pub idpOptions: *mut IPSEC_DOSP_OPTIONS0,
|
2131
|
-
}
|
2132
|
-
#[repr(C)]
|
2133
|
-
#[cfg(feature = "Win32_Security")]
|
2134
|
-
#[derive(Clone, Copy)]
|
2135
|
-
pub struct FWPM_PROVIDER_CONTEXT3 {
|
2136
|
-
pub providerContextKey: windows_sys::core::GUID,
|
2137
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2138
|
-
pub flags: u32,
|
2139
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2140
|
-
pub providerData: FWP_BYTE_BLOB,
|
2141
|
-
pub r#type: FWPM_PROVIDER_CONTEXT_TYPE,
|
2142
|
-
pub Anonymous: FWPM_PROVIDER_CONTEXT3_0,
|
2143
|
-
pub providerContextId: u64,
|
2144
|
-
}
|
2145
|
-
#[repr(C)]
|
2146
|
-
#[cfg(feature = "Win32_Security")]
|
2147
|
-
#[derive(Clone, Copy)]
|
2148
|
-
pub union FWPM_PROVIDER_CONTEXT3_0 {
|
2149
|
-
pub keyingPolicy: *mut IPSEC_KEYING_POLICY1,
|
2150
|
-
pub ikeQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2151
|
-
pub ikeQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY3,
|
2152
|
-
pub authipQmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2153
|
-
pub authipQmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY3,
|
2154
|
-
pub ikeMmPolicy: *mut IKEEXT_POLICY2,
|
2155
|
-
pub authIpMmPolicy: *mut IKEEXT_POLICY2,
|
2156
|
-
pub dataBuffer: *mut FWP_BYTE_BLOB,
|
2157
|
-
pub classifyOptions: *mut FWPM_CLASSIFY_OPTIONS0,
|
2158
|
-
pub ikeV2QmTunnelPolicy: *mut IPSEC_TUNNEL_POLICY3,
|
2159
|
-
pub ikeV2QmTransportPolicy: *mut IPSEC_TRANSPORT_POLICY2,
|
2160
|
-
pub ikeV2MmPolicy: *mut IKEEXT_POLICY2,
|
2161
|
-
pub idpOptions: *mut IPSEC_DOSP_OPTIONS0,
|
2162
|
-
pub networkConnectionPolicy: *mut FWPM_NETWORK_CONNECTION_POLICY_SETTINGS0,
|
2163
|
-
}
|
2164
|
-
#[repr(C)]
|
2165
|
-
#[derive(Clone, Copy)]
|
2166
|
-
pub struct FWPM_PROVIDER_CONTEXT_CHANGE0 {
|
2167
|
-
pub changeType: FWPM_CHANGE_TYPE,
|
2168
|
-
pub providerContextKey: windows_sys::core::GUID,
|
2169
|
-
pub providerContextId: u64,
|
2170
|
-
}
|
2171
|
-
#[repr(C)]
|
2172
|
-
#[derive(Clone, Copy)]
|
2173
|
-
pub struct FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0 {
|
2174
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2175
|
-
pub providerContextType: FWPM_PROVIDER_CONTEXT_TYPE,
|
2176
|
-
}
|
2177
|
-
#[repr(C)]
|
2178
|
-
#[derive(Clone, Copy)]
|
2179
|
-
pub struct FWPM_PROVIDER_CONTEXT_SUBSCRIPTION0 {
|
2180
|
-
pub enumTemplate: *mut FWPM_PROVIDER_CONTEXT_ENUM_TEMPLATE0,
|
2181
|
-
pub flags: FWPM_SUBSCRIPTION_FLAGS,
|
2182
|
-
pub sessionKey: windows_sys::core::GUID,
|
2183
|
-
}
|
2184
|
-
#[repr(C)]
|
2185
|
-
#[derive(Clone, Copy)]
|
2186
|
-
pub struct FWPM_PROVIDER_ENUM_TEMPLATE0 {
|
2187
|
-
pub reserved: u64,
|
2188
|
-
}
|
2189
|
-
#[repr(C)]
|
2190
|
-
#[derive(Clone, Copy)]
|
2191
|
-
pub struct FWPM_PROVIDER_SUBSCRIPTION0 {
|
2192
|
-
pub enumTemplate: *mut FWPM_PROVIDER_ENUM_TEMPLATE0,
|
2193
|
-
pub flags: u32,
|
2194
|
-
pub sessionKey: windows_sys::core::GUID,
|
2195
|
-
}
|
2196
|
-
#[repr(C)]
|
2197
|
-
#[cfg(feature = "Win32_Security")]
|
2198
|
-
#[derive(Clone, Copy)]
|
2199
|
-
pub struct FWPM_SESSION0 {
|
2200
|
-
pub sessionKey: windows_sys::core::GUID,
|
2201
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2202
|
-
pub flags: u32,
|
2203
|
-
pub txnWaitTimeoutInMSec: u32,
|
2204
|
-
pub processId: u32,
|
2205
|
-
pub sid: *mut super::super::Security::SID,
|
2206
|
-
pub username: windows_sys::core::PWSTR,
|
2207
|
-
pub kernelMode: super::super::Foundation::BOOL,
|
2208
|
-
}
|
2209
|
-
#[repr(C)]
|
2210
|
-
#[derive(Clone, Copy)]
|
2211
|
-
pub struct FWPM_SESSION_ENUM_TEMPLATE0 {
|
2212
|
-
pub reserved: u64,
|
2213
|
-
}
|
2214
|
-
#[repr(C)]
|
2215
|
-
#[derive(Clone, Copy)]
|
2216
|
-
pub struct FWPM_STATISTICS0 {
|
2217
|
-
pub numLayerStatistics: u32,
|
2218
|
-
pub layerStatistics: *mut FWPM_LAYER_STATISTICS0,
|
2219
|
-
pub inboundAllowedConnectionsV4: u32,
|
2220
|
-
pub inboundBlockedConnectionsV4: u32,
|
2221
|
-
pub outboundAllowedConnectionsV4: u32,
|
2222
|
-
pub outboundBlockedConnectionsV4: u32,
|
2223
|
-
pub inboundAllowedConnectionsV6: u32,
|
2224
|
-
pub inboundBlockedConnectionsV6: u32,
|
2225
|
-
pub outboundAllowedConnectionsV6: u32,
|
2226
|
-
pub outboundBlockedConnectionsV6: u32,
|
2227
|
-
pub inboundActiveConnectionsV4: u32,
|
2228
|
-
pub outboundActiveConnectionsV4: u32,
|
2229
|
-
pub inboundActiveConnectionsV6: u32,
|
2230
|
-
pub outboundActiveConnectionsV6: u32,
|
2231
|
-
pub reauthDirInbound: u64,
|
2232
|
-
pub reauthDirOutbound: u64,
|
2233
|
-
pub reauthFamilyV4: u64,
|
2234
|
-
pub reauthFamilyV6: u64,
|
2235
|
-
pub reauthProtoOther: u64,
|
2236
|
-
pub reauthProtoIPv4: u64,
|
2237
|
-
pub reauthProtoIPv6: u64,
|
2238
|
-
pub reauthProtoICMP: u64,
|
2239
|
-
pub reauthProtoICMP6: u64,
|
2240
|
-
pub reauthProtoUDP: u64,
|
2241
|
-
pub reauthProtoTCP: u64,
|
2242
|
-
pub reauthReasonPolicyChange: u64,
|
2243
|
-
pub reauthReasonNewArrivalInterface: u64,
|
2244
|
-
pub reauthReasonNewNextHopInterface: u64,
|
2245
|
-
pub reauthReasonProfileCrossing: u64,
|
2246
|
-
pub reauthReasonClassifyCompletion: u64,
|
2247
|
-
pub reauthReasonIPSecPropertiesChanged: u64,
|
2248
|
-
pub reauthReasonMidStreamInspection: u64,
|
2249
|
-
pub reauthReasonSocketPropertyChanged: u64,
|
2250
|
-
pub reauthReasonNewInboundMCastBCastPacket: u64,
|
2251
|
-
pub reauthReasonEDPPolicyChanged: u64,
|
2252
|
-
pub reauthReasonProxyHandleChanged: u64,
|
2253
|
-
}
|
2254
|
-
#[repr(C)]
|
2255
|
-
#[derive(Clone, Copy)]
|
2256
|
-
pub struct FWPM_SUBLAYER0 {
|
2257
|
-
pub subLayerKey: windows_sys::core::GUID,
|
2258
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
2259
|
-
pub flags: u32,
|
2260
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2261
|
-
pub providerData: FWP_BYTE_BLOB,
|
2262
|
-
pub weight: u16,
|
2263
|
-
}
|
2264
|
-
#[repr(C)]
|
2265
|
-
#[derive(Clone, Copy)]
|
2266
|
-
pub struct FWPM_SUBLAYER_CHANGE0 {
|
2267
|
-
pub changeType: FWPM_CHANGE_TYPE,
|
2268
|
-
pub subLayerKey: windows_sys::core::GUID,
|
2269
|
-
}
|
2270
|
-
#[repr(C)]
|
2271
|
-
#[derive(Clone, Copy)]
|
2272
|
-
pub struct FWPM_SUBLAYER_ENUM_TEMPLATE0 {
|
2273
|
-
pub providerKey: *mut windows_sys::core::GUID,
|
2274
|
-
}
|
2275
|
-
#[repr(C)]
|
2276
|
-
#[derive(Clone, Copy)]
|
2277
|
-
pub struct FWPM_SUBLAYER_SUBSCRIPTION0 {
|
2278
|
-
pub enumTemplate: *mut FWPM_SUBLAYER_ENUM_TEMPLATE0,
|
2279
|
-
pub flags: FWPM_SUBSCRIPTION_FLAGS,
|
2280
|
-
pub sessionKey: windows_sys::core::GUID,
|
2281
|
-
}
|
2282
|
-
#[repr(C)]
|
2283
|
-
#[derive(Clone, Copy)]
|
2284
|
-
pub struct FWPM_SYSTEM_PORTS0 {
|
2285
|
-
pub numTypes: u32,
|
2286
|
-
pub types: *mut FWPM_SYSTEM_PORTS_BY_TYPE0,
|
2287
|
-
}
|
2288
|
-
#[repr(C)]
|
2289
|
-
#[derive(Clone, Copy)]
|
2290
|
-
pub struct FWPM_SYSTEM_PORTS_BY_TYPE0 {
|
2291
|
-
pub r#type: FWPM_SYSTEM_PORT_TYPE,
|
2292
|
-
pub numPorts: u32,
|
2293
|
-
pub ports: *mut u16,
|
2294
|
-
}
|
2295
|
-
#[repr(C)]
|
2296
|
-
#[derive(Clone, Copy)]
|
2297
|
-
pub struct FWPM_VSWITCH_EVENT0 {
|
2298
|
-
pub eventType: FWPM_VSWITCH_EVENT_TYPE,
|
2299
|
-
pub vSwitchId: windows_sys::core::PWSTR,
|
2300
|
-
pub Anonymous: FWPM_VSWITCH_EVENT0_0,
|
2301
|
-
}
|
2302
|
-
#[repr(C)]
|
2303
|
-
#[derive(Clone, Copy)]
|
2304
|
-
pub union FWPM_VSWITCH_EVENT0_0 {
|
2305
|
-
pub positionInfo: FWPM_VSWITCH_EVENT0_0_0,
|
2306
|
-
pub reorderInfo: FWPM_VSWITCH_EVENT0_0_1,
|
2307
|
-
}
|
2308
|
-
#[repr(C)]
|
2309
|
-
#[derive(Clone, Copy)]
|
2310
|
-
pub struct FWPM_VSWITCH_EVENT0_0_0 {
|
2311
|
-
pub numvSwitchFilterExtensions: u32,
|
2312
|
-
pub vSwitchFilterExtensions: *mut windows_sys::core::PWSTR,
|
2313
|
-
}
|
2314
|
-
#[repr(C)]
|
2315
|
-
#[derive(Clone, Copy)]
|
2316
|
-
pub struct FWPM_VSWITCH_EVENT0_0_1 {
|
2317
|
-
pub inRequiredPosition: super::super::Foundation::BOOL,
|
2318
|
-
pub numvSwitchFilterExtensions: u32,
|
2319
|
-
pub vSwitchFilterExtensions: *mut windows_sys::core::PWSTR,
|
2320
|
-
}
|
2321
|
-
#[repr(C)]
|
2322
|
-
#[derive(Clone, Copy)]
|
2323
|
-
pub struct FWPM_VSWITCH_EVENT_SUBSCRIPTION0 {
|
2324
|
-
pub flags: u32,
|
2325
|
-
pub sessionKey: windows_sys::core::GUID,
|
2326
|
-
}
|
2327
|
-
#[repr(C)]
|
2328
|
-
#[derive(Clone, Copy)]
|
2329
|
-
pub struct FWP_BYTE_ARRAY16 {
|
2330
|
-
pub byteArray16: [u8; 16],
|
2331
|
-
}
|
2332
|
-
#[repr(C)]
|
2333
|
-
#[derive(Clone, Copy)]
|
2334
|
-
pub struct FWP_BYTE_ARRAY6 {
|
2335
|
-
pub byteArray6: [u8; 6],
|
2336
|
-
}
|
2337
|
-
#[repr(C)]
|
2338
|
-
#[derive(Clone, Copy)]
|
2339
|
-
pub struct FWP_BYTE_BLOB {
|
2340
|
-
pub size: u32,
|
2341
|
-
pub data: *mut u8,
|
2342
|
-
}
|
2343
|
-
#[repr(C)]
|
2344
|
-
#[cfg(feature = "Win32_Security")]
|
2345
|
-
#[derive(Clone, Copy)]
|
2346
|
-
pub struct FWP_CONDITION_VALUE0 {
|
2347
|
-
pub r#type: FWP_DATA_TYPE,
|
2348
|
-
pub Anonymous: FWP_CONDITION_VALUE0_0,
|
2349
|
-
}
|
2350
|
-
#[repr(C)]
|
2351
|
-
#[cfg(feature = "Win32_Security")]
|
2352
|
-
#[derive(Clone, Copy)]
|
2353
|
-
pub union FWP_CONDITION_VALUE0_0 {
|
2354
|
-
pub uint8: u8,
|
2355
|
-
pub uint16: u16,
|
2356
|
-
pub uint32: u32,
|
2357
|
-
pub uint64: *mut u64,
|
2358
|
-
pub int8: i8,
|
2359
|
-
pub int16: i16,
|
2360
|
-
pub int32: i32,
|
2361
|
-
pub int64: *mut i64,
|
2362
|
-
pub float32: f32,
|
2363
|
-
pub double64: *mut f64,
|
2364
|
-
pub byteArray16: *mut FWP_BYTE_ARRAY16,
|
2365
|
-
pub byteBlob: *mut FWP_BYTE_BLOB,
|
2366
|
-
pub sid: *mut super::super::Security::SID,
|
2367
|
-
pub sd: *mut FWP_BYTE_BLOB,
|
2368
|
-
pub tokenInformation: *mut FWP_TOKEN_INFORMATION,
|
2369
|
-
pub tokenAccessInformation: *mut FWP_BYTE_BLOB,
|
2370
|
-
pub unicodeString: windows_sys::core::PWSTR,
|
2371
|
-
pub byteArray6: *mut FWP_BYTE_ARRAY6,
|
2372
|
-
pub v4AddrMask: *mut FWP_V4_ADDR_AND_MASK,
|
2373
|
-
pub v6AddrMask: *mut FWP_V6_ADDR_AND_MASK,
|
2374
|
-
pub rangeValue: *mut FWP_RANGE0,
|
2375
|
-
}
|
2376
|
-
#[repr(C)]
|
2377
|
-
#[cfg(feature = "Win32_Security")]
|
2378
|
-
#[derive(Clone, Copy)]
|
2379
|
-
pub struct FWP_RANGE0 {
|
2380
|
-
pub valueLow: FWP_VALUE0,
|
2381
|
-
pub valueHigh: FWP_VALUE0,
|
2382
|
-
}
|
2383
|
-
#[repr(C)]
|
2384
|
-
#[cfg(feature = "Win32_Security")]
|
2385
|
-
#[derive(Clone, Copy)]
|
2386
|
-
pub struct FWP_TOKEN_INFORMATION {
|
2387
|
-
pub sidCount: u32,
|
2388
|
-
pub sids: *mut super::super::Security::SID_AND_ATTRIBUTES,
|
2389
|
-
pub restrictedSidCount: u32,
|
2390
|
-
pub restrictedSids: *mut super::super::Security::SID_AND_ATTRIBUTES,
|
2391
|
-
}
|
2392
|
-
#[repr(C)]
|
2393
|
-
#[derive(Clone, Copy)]
|
2394
|
-
pub struct FWP_V4_ADDR_AND_MASK {
|
2395
|
-
pub addr: u32,
|
2396
|
-
pub mask: u32,
|
2397
|
-
}
|
2398
|
-
#[repr(C)]
|
2399
|
-
#[derive(Clone, Copy)]
|
2400
|
-
pub struct FWP_V6_ADDR_AND_MASK {
|
2401
|
-
pub addr: [u8; 16],
|
2402
|
-
pub prefixLength: u8,
|
2403
|
-
}
|
2404
|
-
#[repr(C)]
|
2405
|
-
#[cfg(feature = "Win32_Security")]
|
2406
|
-
#[derive(Clone, Copy)]
|
2407
|
-
pub struct FWP_VALUE0 {
|
2408
|
-
pub r#type: FWP_DATA_TYPE,
|
2409
|
-
pub Anonymous: FWP_VALUE0_0,
|
2410
|
-
}
|
2411
|
-
#[repr(C)]
|
2412
|
-
#[cfg(feature = "Win32_Security")]
|
2413
|
-
#[derive(Clone, Copy)]
|
2414
|
-
pub union FWP_VALUE0_0 {
|
2415
|
-
pub uint8: u8,
|
2416
|
-
pub uint16: u16,
|
2417
|
-
pub uint32: u32,
|
2418
|
-
pub uint64: *mut u64,
|
2419
|
-
pub int8: i8,
|
2420
|
-
pub int16: i16,
|
2421
|
-
pub int32: i32,
|
2422
|
-
pub int64: *mut i64,
|
2423
|
-
pub float32: f32,
|
2424
|
-
pub double64: *mut f64,
|
2425
|
-
pub byteArray16: *mut FWP_BYTE_ARRAY16,
|
2426
|
-
pub byteBlob: *mut FWP_BYTE_BLOB,
|
2427
|
-
pub sid: *mut super::super::Security::SID,
|
2428
|
-
pub sd: *mut FWP_BYTE_BLOB,
|
2429
|
-
pub tokenInformation: *mut FWP_TOKEN_INFORMATION,
|
2430
|
-
pub tokenAccessInformation: *mut FWP_BYTE_BLOB,
|
2431
|
-
pub unicodeString: windows_sys::core::PWSTR,
|
2432
|
-
pub byteArray6: *mut FWP_BYTE_ARRAY6,
|
2433
|
-
}
|
2434
|
-
#[repr(C)]
|
2435
|
-
#[derive(Clone, Copy)]
|
2436
|
-
pub struct IKEEXT_AUTHENTICATION_METHOD0 {
|
2437
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2438
|
-
pub Anonymous: IKEEXT_AUTHENTICATION_METHOD0_0,
|
2439
|
-
}
|
2440
|
-
#[repr(C)]
|
2441
|
-
#[derive(Clone, Copy)]
|
2442
|
-
pub union IKEEXT_AUTHENTICATION_METHOD0_0 {
|
2443
|
-
pub presharedKeyAuthentication: IKEEXT_PRESHARED_KEY_AUTHENTICATION0,
|
2444
|
-
pub certificateAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION0,
|
2445
|
-
pub kerberosAuthentication: IKEEXT_KERBEROS_AUTHENTICATION0,
|
2446
|
-
pub ntlmV2Authentication: IKEEXT_NTLM_V2_AUTHENTICATION0,
|
2447
|
-
pub sslAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION0,
|
2448
|
-
pub cgaAuthentication: IKEEXT_IPV6_CGA_AUTHENTICATION0,
|
2449
|
-
}
|
2450
|
-
#[repr(C)]
|
2451
|
-
#[derive(Clone, Copy)]
|
2452
|
-
pub struct IKEEXT_AUTHENTICATION_METHOD1 {
|
2453
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2454
|
-
pub Anonymous: IKEEXT_AUTHENTICATION_METHOD1_0,
|
2455
|
-
}
|
2456
|
-
#[repr(C)]
|
2457
|
-
#[derive(Clone, Copy)]
|
2458
|
-
pub union IKEEXT_AUTHENTICATION_METHOD1_0 {
|
2459
|
-
pub presharedKeyAuthentication: IKEEXT_PRESHARED_KEY_AUTHENTICATION1,
|
2460
|
-
pub certificateAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION1,
|
2461
|
-
pub kerberosAuthentication: IKEEXT_KERBEROS_AUTHENTICATION0,
|
2462
|
-
pub ntlmV2Authentication: IKEEXT_NTLM_V2_AUTHENTICATION0,
|
2463
|
-
pub sslAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION1,
|
2464
|
-
pub cgaAuthentication: IKEEXT_IPV6_CGA_AUTHENTICATION0,
|
2465
|
-
pub eapAuthentication: IKEEXT_EAP_AUTHENTICATION0,
|
2466
|
-
}
|
2467
|
-
#[repr(C)]
|
2468
|
-
#[derive(Clone, Copy)]
|
2469
|
-
pub struct IKEEXT_AUTHENTICATION_METHOD2 {
|
2470
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2471
|
-
pub Anonymous: IKEEXT_AUTHENTICATION_METHOD2_0,
|
2472
|
-
}
|
2473
|
-
#[repr(C)]
|
2474
|
-
#[derive(Clone, Copy)]
|
2475
|
-
pub union IKEEXT_AUTHENTICATION_METHOD2_0 {
|
2476
|
-
pub presharedKeyAuthentication: IKEEXT_PRESHARED_KEY_AUTHENTICATION1,
|
2477
|
-
pub certificateAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION2,
|
2478
|
-
pub kerberosAuthentication: IKEEXT_KERBEROS_AUTHENTICATION1,
|
2479
|
-
pub reservedAuthentication: IKEEXT_RESERVED_AUTHENTICATION0,
|
2480
|
-
pub ntlmV2Authentication: IKEEXT_NTLM_V2_AUTHENTICATION0,
|
2481
|
-
pub sslAuthentication: IKEEXT_CERTIFICATE_AUTHENTICATION2,
|
2482
|
-
pub cgaAuthentication: IKEEXT_IPV6_CGA_AUTHENTICATION0,
|
2483
|
-
pub eapAuthentication: IKEEXT_EAP_AUTHENTICATION0,
|
2484
|
-
}
|
2485
|
-
#[repr(C)]
|
2486
|
-
#[derive(Clone, Copy)]
|
2487
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION0 {
|
2488
|
-
pub inboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2489
|
-
pub Anonymous1: IKEEXT_CERTIFICATE_AUTHENTICATION0_0,
|
2490
|
-
pub outboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2491
|
-
pub Anonymous2: IKEEXT_CERTIFICATE_AUTHENTICATION0_1,
|
2492
|
-
pub flags: IKEEXT_CERT_AUTH,
|
2493
|
-
}
|
2494
|
-
#[repr(C)]
|
2495
|
-
#[derive(Clone, Copy)]
|
2496
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION0_0 {
|
2497
|
-
pub Anonymous: IKEEXT_CERTIFICATE_AUTHENTICATION0_0_0,
|
2498
|
-
pub inboundEnterpriseStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2499
|
-
pub inboundTrustedRootStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2500
|
-
}
|
2501
|
-
#[repr(C)]
|
2502
|
-
#[derive(Clone, Copy)]
|
2503
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION0_0_0 {
|
2504
|
-
pub inboundRootArraySize: u32,
|
2505
|
-
pub inboundRootArray: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2506
|
-
}
|
2507
|
-
#[repr(C)]
|
2508
|
-
#[derive(Clone, Copy)]
|
2509
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION0_1 {
|
2510
|
-
pub Anonymous: IKEEXT_CERTIFICATE_AUTHENTICATION0_1_0,
|
2511
|
-
pub outboundEnterpriseStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2512
|
-
pub outboundTrustedRootStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2513
|
-
}
|
2514
|
-
#[repr(C)]
|
2515
|
-
#[derive(Clone, Copy)]
|
2516
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION0_1_0 {
|
2517
|
-
pub outboundRootArraySize: u32,
|
2518
|
-
pub outboundRootArray: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2519
|
-
}
|
2520
|
-
#[repr(C)]
|
2521
|
-
#[derive(Clone, Copy)]
|
2522
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION1 {
|
2523
|
-
pub inboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2524
|
-
pub Anonymous1: IKEEXT_CERTIFICATE_AUTHENTICATION1_0,
|
2525
|
-
pub outboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2526
|
-
pub Anonymous2: IKEEXT_CERTIFICATE_AUTHENTICATION1_1,
|
2527
|
-
pub flags: IKEEXT_CERT_AUTH,
|
2528
|
-
pub localCertLocationUrl: FWP_BYTE_BLOB,
|
2529
|
-
}
|
2530
|
-
#[repr(C)]
|
2531
|
-
#[derive(Clone, Copy)]
|
2532
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION1_0 {
|
2533
|
-
pub Anonymous: IKEEXT_CERTIFICATE_AUTHENTICATION1_0_0,
|
2534
|
-
pub inboundEnterpriseStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2535
|
-
pub inboundTrustedRootStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2536
|
-
}
|
2537
|
-
#[repr(C)]
|
2538
|
-
#[derive(Clone, Copy)]
|
2539
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION1_0_0 {
|
2540
|
-
pub inboundRootArraySize: u32,
|
2541
|
-
pub inboundRootArray: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2542
|
-
}
|
2543
|
-
#[repr(C)]
|
2544
|
-
#[derive(Clone, Copy)]
|
2545
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION1_1 {
|
2546
|
-
pub Anonymous: IKEEXT_CERTIFICATE_AUTHENTICATION1_1_0,
|
2547
|
-
pub outboundEnterpriseStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2548
|
-
pub outboundTrustedRootStoreConfig: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2549
|
-
}
|
2550
|
-
#[repr(C)]
|
2551
|
-
#[derive(Clone, Copy)]
|
2552
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION1_1_0 {
|
2553
|
-
pub outboundRootArraySize: u32,
|
2554
|
-
pub outboundRootArray: *mut IKEEXT_CERT_ROOT_CONFIG0,
|
2555
|
-
}
|
2556
|
-
#[repr(C)]
|
2557
|
-
#[derive(Clone, Copy)]
|
2558
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2 {
|
2559
|
-
pub inboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2560
|
-
pub Anonymous1: IKEEXT_CERTIFICATE_AUTHENTICATION2_0,
|
2561
|
-
pub outboundConfigType: IKEEXT_CERT_CONFIG_TYPE,
|
2562
|
-
pub Anonymous2: IKEEXT_CERTIFICATE_AUTHENTICATION2_1,
|
2563
|
-
pub flags: IKEEXT_CERT_AUTH,
|
2564
|
-
pub localCertLocationUrl: FWP_BYTE_BLOB,
|
2565
|
-
}
|
2566
|
-
#[repr(C)]
|
2567
|
-
#[derive(Clone, Copy)]
|
2568
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION2_0 {
|
2569
|
-
pub Anonymous1: IKEEXT_CERTIFICATE_AUTHENTICATION2_0_0,
|
2570
|
-
pub Anonymous2: IKEEXT_CERTIFICATE_AUTHENTICATION2_0_1,
|
2571
|
-
pub Anonymous3: IKEEXT_CERTIFICATE_AUTHENTICATION2_0_2,
|
2572
|
-
}
|
2573
|
-
#[repr(C)]
|
2574
|
-
#[derive(Clone, Copy)]
|
2575
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_0_0 {
|
2576
|
-
pub inboundRootArraySize: u32,
|
2577
|
-
pub inboundRootCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2578
|
-
}
|
2579
|
-
#[repr(C)]
|
2580
|
-
#[derive(Clone, Copy)]
|
2581
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_0_1 {
|
2582
|
-
pub inboundEnterpriseStoreArraySize: u32,
|
2583
|
-
pub inboundEnterpriseStoreCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2584
|
-
}
|
2585
|
-
#[repr(C)]
|
2586
|
-
#[derive(Clone, Copy)]
|
2587
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_0_2 {
|
2588
|
-
pub inboundRootStoreArraySize: u32,
|
2589
|
-
pub inboundTrustedRootStoreCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2590
|
-
}
|
2591
|
-
#[repr(C)]
|
2592
|
-
#[derive(Clone, Copy)]
|
2593
|
-
pub union IKEEXT_CERTIFICATE_AUTHENTICATION2_1 {
|
2594
|
-
pub Anonymous1: IKEEXT_CERTIFICATE_AUTHENTICATION2_1_0,
|
2595
|
-
pub Anonymous2: IKEEXT_CERTIFICATE_AUTHENTICATION2_1_1,
|
2596
|
-
pub Anonymous3: IKEEXT_CERTIFICATE_AUTHENTICATION2_1_2,
|
2597
|
-
}
|
2598
|
-
#[repr(C)]
|
2599
|
-
#[derive(Clone, Copy)]
|
2600
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_1_0 {
|
2601
|
-
pub outboundRootArraySize: u32,
|
2602
|
-
pub outboundRootCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2603
|
-
}
|
2604
|
-
#[repr(C)]
|
2605
|
-
#[derive(Clone, Copy)]
|
2606
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_1_1 {
|
2607
|
-
pub outboundEnterpriseStoreArraySize: u32,
|
2608
|
-
pub outboundEnterpriseStoreCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2609
|
-
}
|
2610
|
-
#[repr(C)]
|
2611
|
-
#[derive(Clone, Copy)]
|
2612
|
-
pub struct IKEEXT_CERTIFICATE_AUTHENTICATION2_1_2 {
|
2613
|
-
pub outboundRootStoreArraySize: u32,
|
2614
|
-
pub outboundTrustedRootStoreCriteria: *mut IKEEXT_CERTIFICATE_CRITERIA0,
|
2615
|
-
}
|
2616
|
-
#[repr(C)]
|
2617
|
-
#[derive(Clone, Copy)]
|
2618
|
-
pub struct IKEEXT_CERTIFICATE_CREDENTIAL0 {
|
2619
|
-
pub subjectName: FWP_BYTE_BLOB,
|
2620
|
-
pub certHash: FWP_BYTE_BLOB,
|
2621
|
-
pub flags: u32,
|
2622
|
-
}
|
2623
|
-
#[repr(C)]
|
2624
|
-
#[derive(Clone, Copy)]
|
2625
|
-
pub struct IKEEXT_CERTIFICATE_CREDENTIAL1 {
|
2626
|
-
pub subjectName: FWP_BYTE_BLOB,
|
2627
|
-
pub certHash: FWP_BYTE_BLOB,
|
2628
|
-
pub flags: u32,
|
2629
|
-
pub certificate: FWP_BYTE_BLOB,
|
2630
|
-
}
|
2631
|
-
#[repr(C)]
|
2632
|
-
#[derive(Clone, Copy)]
|
2633
|
-
pub struct IKEEXT_CERTIFICATE_CRITERIA0 {
|
2634
|
-
pub certData: FWP_BYTE_BLOB,
|
2635
|
-
pub certHash: FWP_BYTE_BLOB,
|
2636
|
-
pub eku: *mut IKEEXT_CERT_EKUS0,
|
2637
|
-
pub name: *mut IKEEXT_CERT_NAME0,
|
2638
|
-
pub flags: u32,
|
2639
|
-
}
|
2640
|
-
#[repr(C)]
|
2641
|
-
#[derive(Clone, Copy)]
|
2642
|
-
pub struct IKEEXT_CERT_EKUS0 {
|
2643
|
-
pub numEku: u32,
|
2644
|
-
pub eku: *mut windows_sys::core::PSTR,
|
2645
|
-
}
|
2646
|
-
#[repr(C)]
|
2647
|
-
#[derive(Clone, Copy)]
|
2648
|
-
pub struct IKEEXT_CERT_NAME0 {
|
2649
|
-
pub nameType: IKEEXT_CERT_CRITERIA_NAME_TYPE,
|
2650
|
-
pub certName: windows_sys::core::PWSTR,
|
2651
|
-
}
|
2652
|
-
#[repr(C)]
|
2653
|
-
#[derive(Clone, Copy)]
|
2654
|
-
pub struct IKEEXT_CERT_ROOT_CONFIG0 {
|
2655
|
-
pub certData: FWP_BYTE_BLOB,
|
2656
|
-
pub flags: IKEEXT_CERT_FLAGS,
|
2657
|
-
}
|
2658
|
-
#[repr(C)]
|
2659
|
-
#[derive(Clone, Copy)]
|
2660
|
-
pub struct IKEEXT_CIPHER_ALGORITHM0 {
|
2661
|
-
pub algoIdentifier: IKEEXT_CIPHER_TYPE,
|
2662
|
-
pub keyLen: u32,
|
2663
|
-
pub rounds: u32,
|
2664
|
-
}
|
2665
|
-
#[repr(C)]
|
2666
|
-
#[derive(Clone, Copy)]
|
2667
|
-
pub struct IKEEXT_COMMON_STATISTICS0 {
|
2668
|
-
pub v4Statistics: IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0,
|
2669
|
-
pub v6Statistics: IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0,
|
2670
|
-
pub totalPacketsReceived: u32,
|
2671
|
-
pub totalInvalidPacketsReceived: u32,
|
2672
|
-
pub currentQueuedWorkitems: u32,
|
2673
|
-
}
|
2674
|
-
#[repr(C)]
|
2675
|
-
#[derive(Clone, Copy)]
|
2676
|
-
pub struct IKEEXT_COMMON_STATISTICS1 {
|
2677
|
-
pub v4Statistics: IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1,
|
2678
|
-
pub v6Statistics: IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1,
|
2679
|
-
pub totalPacketsReceived: u32,
|
2680
|
-
pub totalInvalidPacketsReceived: u32,
|
2681
|
-
pub currentQueuedWorkitems: u32,
|
2682
|
-
}
|
2683
|
-
#[repr(C)]
|
2684
|
-
#[derive(Clone, Copy)]
|
2685
|
-
pub struct IKEEXT_COOKIE_PAIR0 {
|
2686
|
-
pub initiator: u64,
|
2687
|
-
pub responder: u64,
|
2688
|
-
}
|
2689
|
-
#[repr(C)]
|
2690
|
-
#[derive(Clone, Copy)]
|
2691
|
-
pub struct IKEEXT_CREDENTIAL0 {
|
2692
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2693
|
-
pub impersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2694
|
-
pub Anonymous: IKEEXT_CREDENTIAL0_0,
|
2695
|
-
}
|
2696
|
-
#[repr(C)]
|
2697
|
-
#[derive(Clone, Copy)]
|
2698
|
-
pub union IKEEXT_CREDENTIAL0_0 {
|
2699
|
-
pub presharedKey: *mut IKEEXT_PRESHARED_KEY_AUTHENTICATION0,
|
2700
|
-
pub certificate: *mut IKEEXT_CERTIFICATE_CREDENTIAL0,
|
2701
|
-
pub name: *mut IKEEXT_NAME_CREDENTIAL0,
|
2702
|
-
}
|
2703
|
-
#[repr(C)]
|
2704
|
-
#[derive(Clone, Copy)]
|
2705
|
-
pub struct IKEEXT_CREDENTIAL1 {
|
2706
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2707
|
-
pub impersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2708
|
-
pub Anonymous: IKEEXT_CREDENTIAL1_0,
|
2709
|
-
}
|
2710
|
-
#[repr(C)]
|
2711
|
-
#[derive(Clone, Copy)]
|
2712
|
-
pub union IKEEXT_CREDENTIAL1_0 {
|
2713
|
-
pub presharedKey: *mut IKEEXT_PRESHARED_KEY_AUTHENTICATION1,
|
2714
|
-
pub certificate: *mut IKEEXT_CERTIFICATE_CREDENTIAL1,
|
2715
|
-
pub name: *mut IKEEXT_NAME_CREDENTIAL0,
|
2716
|
-
}
|
2717
|
-
#[repr(C)]
|
2718
|
-
#[derive(Clone, Copy)]
|
2719
|
-
pub struct IKEEXT_CREDENTIAL2 {
|
2720
|
-
pub authenticationMethodType: IKEEXT_AUTHENTICATION_METHOD_TYPE,
|
2721
|
-
pub impersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2722
|
-
pub Anonymous: IKEEXT_CREDENTIAL2_0,
|
2723
|
-
}
|
2724
|
-
#[repr(C)]
|
2725
|
-
#[derive(Clone, Copy)]
|
2726
|
-
pub union IKEEXT_CREDENTIAL2_0 {
|
2727
|
-
pub presharedKey: *mut IKEEXT_PRESHARED_KEY_AUTHENTICATION1,
|
2728
|
-
pub certificate: *mut IKEEXT_CERTIFICATE_CREDENTIAL1,
|
2729
|
-
pub name: *mut IKEEXT_NAME_CREDENTIAL0,
|
2730
|
-
}
|
2731
|
-
#[repr(C)]
|
2732
|
-
#[derive(Clone, Copy)]
|
2733
|
-
pub struct IKEEXT_CREDENTIALS0 {
|
2734
|
-
pub numCredentials: u32,
|
2735
|
-
pub credentials: *mut IKEEXT_CREDENTIAL_PAIR0,
|
2736
|
-
}
|
2737
|
-
#[repr(C)]
|
2738
|
-
#[derive(Clone, Copy)]
|
2739
|
-
pub struct IKEEXT_CREDENTIALS1 {
|
2740
|
-
pub numCredentials: u32,
|
2741
|
-
pub credentials: *mut IKEEXT_CREDENTIAL_PAIR1,
|
2742
|
-
}
|
2743
|
-
#[repr(C)]
|
2744
|
-
#[derive(Clone, Copy)]
|
2745
|
-
pub struct IKEEXT_CREDENTIALS2 {
|
2746
|
-
pub numCredentials: u32,
|
2747
|
-
pub credentials: *mut IKEEXT_CREDENTIAL_PAIR2,
|
2748
|
-
}
|
2749
|
-
#[repr(C)]
|
2750
|
-
#[derive(Clone, Copy)]
|
2751
|
-
pub struct IKEEXT_CREDENTIAL_PAIR0 {
|
2752
|
-
pub localCredentials: IKEEXT_CREDENTIAL0,
|
2753
|
-
pub peerCredentials: IKEEXT_CREDENTIAL0,
|
2754
|
-
}
|
2755
|
-
#[repr(C)]
|
2756
|
-
#[derive(Clone, Copy)]
|
2757
|
-
pub struct IKEEXT_CREDENTIAL_PAIR1 {
|
2758
|
-
pub localCredentials: IKEEXT_CREDENTIAL1,
|
2759
|
-
pub peerCredentials: IKEEXT_CREDENTIAL1,
|
2760
|
-
}
|
2761
|
-
#[repr(C)]
|
2762
|
-
#[derive(Clone, Copy)]
|
2763
|
-
pub struct IKEEXT_CREDENTIAL_PAIR2 {
|
2764
|
-
pub localCredentials: IKEEXT_CREDENTIAL2,
|
2765
|
-
pub peerCredentials: IKEEXT_CREDENTIAL2,
|
2766
|
-
}
|
2767
|
-
#[repr(C)]
|
2768
|
-
#[derive(Clone, Copy)]
|
2769
|
-
pub struct IKEEXT_EAP_AUTHENTICATION0 {
|
2770
|
-
pub flags: IKEEXT_EAP_AUTHENTICATION_FLAGS,
|
2771
|
-
}
|
2772
|
-
#[repr(C)]
|
2773
|
-
#[derive(Clone, Copy)]
|
2774
|
-
pub struct IKEEXT_EM_POLICY0 {
|
2775
|
-
pub numAuthenticationMethods: u32,
|
2776
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD0,
|
2777
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2778
|
-
}
|
2779
|
-
#[repr(C)]
|
2780
|
-
#[derive(Clone, Copy)]
|
2781
|
-
pub struct IKEEXT_EM_POLICY1 {
|
2782
|
-
pub numAuthenticationMethods: u32,
|
2783
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD1,
|
2784
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2785
|
-
}
|
2786
|
-
#[repr(C)]
|
2787
|
-
#[derive(Clone, Copy)]
|
2788
|
-
pub struct IKEEXT_EM_POLICY2 {
|
2789
|
-
pub numAuthenticationMethods: u32,
|
2790
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD2,
|
2791
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2792
|
-
}
|
2793
|
-
#[repr(C)]
|
2794
|
-
#[derive(Clone, Copy)]
|
2795
|
-
pub struct IKEEXT_INTEGRITY_ALGORITHM0 {
|
2796
|
-
pub algoIdentifier: IKEEXT_INTEGRITY_TYPE,
|
2797
|
-
}
|
2798
|
-
#[repr(C)]
|
2799
|
-
#[derive(Clone, Copy)]
|
2800
|
-
pub struct IKEEXT_IPV6_CGA_AUTHENTICATION0 {
|
2801
|
-
pub keyContainerName: windows_sys::core::PWSTR,
|
2802
|
-
pub cspName: windows_sys::core::PWSTR,
|
2803
|
-
pub cspType: u32,
|
2804
|
-
pub cgaModifier: FWP_BYTE_ARRAY16,
|
2805
|
-
pub cgaCollisionCount: u8,
|
2806
|
-
}
|
2807
|
-
#[repr(C)]
|
2808
|
-
#[derive(Clone, Copy)]
|
2809
|
-
pub struct IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS0 {
|
2810
|
-
pub totalSocketReceiveFailures: u32,
|
2811
|
-
pub totalSocketSendFailures: u32,
|
2812
|
-
}
|
2813
|
-
#[repr(C)]
|
2814
|
-
#[derive(Clone, Copy)]
|
2815
|
-
pub struct IKEEXT_IP_VERSION_SPECIFIC_COMMON_STATISTICS1 {
|
2816
|
-
pub totalSocketReceiveFailures: u32,
|
2817
|
-
pub totalSocketSendFailures: u32,
|
2818
|
-
}
|
2819
|
-
#[repr(C)]
|
2820
|
-
#[derive(Clone, Copy)]
|
2821
|
-
pub struct IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0 {
|
2822
|
-
pub currentActiveMainModes: u32,
|
2823
|
-
pub totalMainModesStarted: u32,
|
2824
|
-
pub totalSuccessfulMainModes: u32,
|
2825
|
-
pub totalFailedMainModes: u32,
|
2826
|
-
pub totalResponderMainModes: u32,
|
2827
|
-
pub currentNewResponderMainModes: u32,
|
2828
|
-
pub currentActiveQuickModes: u32,
|
2829
|
-
pub totalQuickModesStarted: u32,
|
2830
|
-
pub totalSuccessfulQuickModes: u32,
|
2831
|
-
pub totalFailedQuickModes: u32,
|
2832
|
-
pub totalAcquires: u32,
|
2833
|
-
pub totalReinitAcquires: u32,
|
2834
|
-
pub currentActiveExtendedModes: u32,
|
2835
|
-
pub totalExtendedModesStarted: u32,
|
2836
|
-
pub totalSuccessfulExtendedModes: u32,
|
2837
|
-
pub totalFailedExtendedModes: u32,
|
2838
|
-
pub totalImpersonationExtendedModes: u32,
|
2839
|
-
pub totalImpersonationMainModes: u32,
|
2840
|
-
}
|
2841
|
-
#[repr(C)]
|
2842
|
-
#[derive(Clone, Copy)]
|
2843
|
-
pub struct IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1 {
|
2844
|
-
pub currentActiveMainModes: u32,
|
2845
|
-
pub totalMainModesStarted: u32,
|
2846
|
-
pub totalSuccessfulMainModes: u32,
|
2847
|
-
pub totalFailedMainModes: u32,
|
2848
|
-
pub totalResponderMainModes: u32,
|
2849
|
-
pub currentNewResponderMainModes: u32,
|
2850
|
-
pub currentActiveQuickModes: u32,
|
2851
|
-
pub totalQuickModesStarted: u32,
|
2852
|
-
pub totalSuccessfulQuickModes: u32,
|
2853
|
-
pub totalFailedQuickModes: u32,
|
2854
|
-
pub totalAcquires: u32,
|
2855
|
-
pub totalReinitAcquires: u32,
|
2856
|
-
pub currentActiveExtendedModes: u32,
|
2857
|
-
pub totalExtendedModesStarted: u32,
|
2858
|
-
pub totalSuccessfulExtendedModes: u32,
|
2859
|
-
pub totalFailedExtendedModes: u32,
|
2860
|
-
pub totalImpersonationExtendedModes: u32,
|
2861
|
-
pub totalImpersonationMainModes: u32,
|
2862
|
-
}
|
2863
|
-
#[repr(C)]
|
2864
|
-
#[derive(Clone, Copy)]
|
2865
|
-
pub struct IKEEXT_KERBEROS_AUTHENTICATION0 {
|
2866
|
-
pub flags: IKEEXT_KERBEROS_AUTHENTICATION_FLAGS,
|
2867
|
-
}
|
2868
|
-
#[repr(C)]
|
2869
|
-
#[derive(Clone, Copy)]
|
2870
|
-
pub struct IKEEXT_KERBEROS_AUTHENTICATION1 {
|
2871
|
-
pub flags: IKEEXT_KERBEROS_AUTHENTICATION_FLAGS,
|
2872
|
-
pub proxyServer: windows_sys::core::PWSTR,
|
2873
|
-
}
|
2874
|
-
#[repr(C)]
|
2875
|
-
#[derive(Clone, Copy)]
|
2876
|
-
pub struct IKEEXT_KEYMODULE_STATISTICS0 {
|
2877
|
-
pub v4Statistics: IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0,
|
2878
|
-
pub v6Statistics: IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS0,
|
2879
|
-
pub errorFrequencyTable: [u32; 97],
|
2880
|
-
pub mainModeNegotiationTime: u32,
|
2881
|
-
pub quickModeNegotiationTime: u32,
|
2882
|
-
pub extendedModeNegotiationTime: u32,
|
2883
|
-
}
|
2884
|
-
#[repr(C)]
|
2885
|
-
#[derive(Clone, Copy)]
|
2886
|
-
pub struct IKEEXT_KEYMODULE_STATISTICS1 {
|
2887
|
-
pub v4Statistics: IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1,
|
2888
|
-
pub v6Statistics: IKEEXT_IP_VERSION_SPECIFIC_KEYMODULE_STATISTICS1,
|
2889
|
-
pub errorFrequencyTable: [u32; 97],
|
2890
|
-
pub mainModeNegotiationTime: u32,
|
2891
|
-
pub quickModeNegotiationTime: u32,
|
2892
|
-
pub extendedModeNegotiationTime: u32,
|
2893
|
-
}
|
2894
|
-
#[repr(C)]
|
2895
|
-
#[derive(Clone, Copy)]
|
2896
|
-
pub struct IKEEXT_NAME_CREDENTIAL0 {
|
2897
|
-
pub principalName: windows_sys::core::PWSTR,
|
2898
|
-
}
|
2899
|
-
#[repr(C)]
|
2900
|
-
#[derive(Clone, Copy)]
|
2901
|
-
pub struct IKEEXT_NTLM_V2_AUTHENTICATION0 {
|
2902
|
-
pub flags: u32,
|
2903
|
-
}
|
2904
|
-
#[repr(C)]
|
2905
|
-
#[derive(Clone, Copy)]
|
2906
|
-
pub struct IKEEXT_POLICY0 {
|
2907
|
-
pub softExpirationTime: u32,
|
2908
|
-
pub numAuthenticationMethods: u32,
|
2909
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD0,
|
2910
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2911
|
-
pub numIkeProposals: u32,
|
2912
|
-
pub ikeProposals: *mut IKEEXT_PROPOSAL0,
|
2913
|
-
pub flags: IKEEXT_POLICY_FLAG,
|
2914
|
-
pub maxDynamicFilters: u32,
|
2915
|
-
}
|
2916
|
-
#[repr(C)]
|
2917
|
-
#[derive(Clone, Copy)]
|
2918
|
-
pub struct IKEEXT_POLICY1 {
|
2919
|
-
pub softExpirationTime: u32,
|
2920
|
-
pub numAuthenticationMethods: u32,
|
2921
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD1,
|
2922
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2923
|
-
pub numIkeProposals: u32,
|
2924
|
-
pub ikeProposals: *mut IKEEXT_PROPOSAL0,
|
2925
|
-
pub flags: IKEEXT_POLICY_FLAG,
|
2926
|
-
pub maxDynamicFilters: u32,
|
2927
|
-
pub retransmitDurationSecs: u32,
|
2928
|
-
}
|
2929
|
-
#[repr(C)]
|
2930
|
-
#[derive(Clone, Copy)]
|
2931
|
-
pub struct IKEEXT_POLICY2 {
|
2932
|
-
pub softExpirationTime: u32,
|
2933
|
-
pub numAuthenticationMethods: u32,
|
2934
|
-
pub authenticationMethods: *mut IKEEXT_AUTHENTICATION_METHOD2,
|
2935
|
-
pub initiatorImpersonationType: IKEEXT_AUTHENTICATION_IMPERSONATION_TYPE,
|
2936
|
-
pub numIkeProposals: u32,
|
2937
|
-
pub ikeProposals: *mut IKEEXT_PROPOSAL0,
|
2938
|
-
pub flags: IKEEXT_POLICY_FLAG,
|
2939
|
-
pub maxDynamicFilters: u32,
|
2940
|
-
pub retransmitDurationSecs: u32,
|
2941
|
-
}
|
2942
|
-
#[repr(C)]
|
2943
|
-
#[derive(Clone, Copy)]
|
2944
|
-
pub struct IKEEXT_PRESHARED_KEY_AUTHENTICATION0 {
|
2945
|
-
pub presharedKey: FWP_BYTE_BLOB,
|
2946
|
-
}
|
2947
|
-
#[repr(C)]
|
2948
|
-
#[derive(Clone, Copy)]
|
2949
|
-
pub struct IKEEXT_PRESHARED_KEY_AUTHENTICATION1 {
|
2950
|
-
pub presharedKey: FWP_BYTE_BLOB,
|
2951
|
-
pub flags: IKEEXT_PRESHARED_KEY_AUTHENTICATION_FLAGS,
|
2952
|
-
}
|
2953
|
-
#[repr(C)]
|
2954
|
-
#[derive(Clone, Copy)]
|
2955
|
-
pub struct IKEEXT_PROPOSAL0 {
|
2956
|
-
pub cipherAlgorithm: IKEEXT_CIPHER_ALGORITHM0,
|
2957
|
-
pub integrityAlgorithm: IKEEXT_INTEGRITY_ALGORITHM0,
|
2958
|
-
pub maxLifetimeSeconds: u32,
|
2959
|
-
pub dhGroup: IKEEXT_DH_GROUP,
|
2960
|
-
pub quickModeLimit: u32,
|
2961
|
-
}
|
2962
|
-
#[repr(C)]
|
2963
|
-
#[derive(Clone, Copy)]
|
2964
|
-
pub struct IKEEXT_RESERVED_AUTHENTICATION0 {
|
2965
|
-
pub flags: IKEEXT_RESERVED_AUTHENTICATION_FLAGS,
|
2966
|
-
}
|
2967
|
-
#[repr(C)]
|
2968
|
-
#[derive(Clone, Copy)]
|
2969
|
-
pub struct IKEEXT_SA_DETAILS0 {
|
2970
|
-
pub saId: u64,
|
2971
|
-
pub keyModuleType: IKEEXT_KEY_MODULE_TYPE,
|
2972
|
-
pub ipVersion: FWP_IP_VERSION,
|
2973
|
-
pub Anonymous: IKEEXT_SA_DETAILS0_0,
|
2974
|
-
pub ikeTraffic: IKEEXT_TRAFFIC0,
|
2975
|
-
pub ikeProposal: IKEEXT_PROPOSAL0,
|
2976
|
-
pub cookiePair: IKEEXT_COOKIE_PAIR0,
|
2977
|
-
pub ikeCredentials: IKEEXT_CREDENTIALS0,
|
2978
|
-
pub ikePolicyKey: windows_sys::core::GUID,
|
2979
|
-
pub virtualIfTunnelId: u64,
|
2980
|
-
}
|
2981
|
-
#[repr(C)]
|
2982
|
-
#[derive(Clone, Copy)]
|
2983
|
-
pub union IKEEXT_SA_DETAILS0_0 {
|
2984
|
-
pub v4UdpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
2985
|
-
}
|
2986
|
-
#[repr(C)]
|
2987
|
-
#[derive(Clone, Copy)]
|
2988
|
-
pub struct IKEEXT_SA_DETAILS1 {
|
2989
|
-
pub saId: u64,
|
2990
|
-
pub keyModuleType: IKEEXT_KEY_MODULE_TYPE,
|
2991
|
-
pub ipVersion: FWP_IP_VERSION,
|
2992
|
-
pub Anonymous: IKEEXT_SA_DETAILS1_0,
|
2993
|
-
pub ikeTraffic: IKEEXT_TRAFFIC0,
|
2994
|
-
pub ikeProposal: IKEEXT_PROPOSAL0,
|
2995
|
-
pub cookiePair: IKEEXT_COOKIE_PAIR0,
|
2996
|
-
pub ikeCredentials: IKEEXT_CREDENTIALS1,
|
2997
|
-
pub ikePolicyKey: windows_sys::core::GUID,
|
2998
|
-
pub virtualIfTunnelId: u64,
|
2999
|
-
pub correlationKey: FWP_BYTE_BLOB,
|
3000
|
-
}
|
3001
|
-
#[repr(C)]
|
3002
|
-
#[derive(Clone, Copy)]
|
3003
|
-
pub union IKEEXT_SA_DETAILS1_0 {
|
3004
|
-
pub v4UdpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3005
|
-
}
|
3006
|
-
#[repr(C)]
|
3007
|
-
#[derive(Clone, Copy)]
|
3008
|
-
pub struct IKEEXT_SA_DETAILS2 {
|
3009
|
-
pub saId: u64,
|
3010
|
-
pub keyModuleType: IKEEXT_KEY_MODULE_TYPE,
|
3011
|
-
pub ipVersion: FWP_IP_VERSION,
|
3012
|
-
pub Anonymous: IKEEXT_SA_DETAILS2_0,
|
3013
|
-
pub ikeTraffic: IKEEXT_TRAFFIC0,
|
3014
|
-
pub ikeProposal: IKEEXT_PROPOSAL0,
|
3015
|
-
pub cookiePair: IKEEXT_COOKIE_PAIR0,
|
3016
|
-
pub ikeCredentials: IKEEXT_CREDENTIALS2,
|
3017
|
-
pub ikePolicyKey: windows_sys::core::GUID,
|
3018
|
-
pub virtualIfTunnelId: u64,
|
3019
|
-
pub correlationKey: FWP_BYTE_BLOB,
|
3020
|
-
}
|
3021
|
-
#[repr(C)]
|
3022
|
-
#[derive(Clone, Copy)]
|
3023
|
-
pub union IKEEXT_SA_DETAILS2_0 {
|
3024
|
-
pub v4UdpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3025
|
-
}
|
3026
|
-
#[repr(C)]
|
3027
|
-
#[cfg(feature = "Win32_Security")]
|
3028
|
-
#[derive(Clone, Copy)]
|
3029
|
-
pub struct IKEEXT_SA_ENUM_TEMPLATE0 {
|
3030
|
-
pub localSubNet: FWP_CONDITION_VALUE0,
|
3031
|
-
pub remoteSubNet: FWP_CONDITION_VALUE0,
|
3032
|
-
pub localMainModeCertHash: FWP_BYTE_BLOB,
|
3033
|
-
}
|
3034
|
-
#[repr(C)]
|
3035
|
-
#[derive(Clone, Copy)]
|
3036
|
-
pub struct IKEEXT_STATISTICS0 {
|
3037
|
-
pub ikeStatistics: IKEEXT_KEYMODULE_STATISTICS0,
|
3038
|
-
pub authipStatistics: IKEEXT_KEYMODULE_STATISTICS0,
|
3039
|
-
pub commonStatistics: IKEEXT_COMMON_STATISTICS0,
|
3040
|
-
}
|
3041
|
-
#[repr(C)]
|
3042
|
-
#[derive(Clone, Copy)]
|
3043
|
-
pub struct IKEEXT_STATISTICS1 {
|
3044
|
-
pub ikeStatistics: IKEEXT_KEYMODULE_STATISTICS1,
|
3045
|
-
pub authipStatistics: IKEEXT_KEYMODULE_STATISTICS1,
|
3046
|
-
pub ikeV2Statistics: IKEEXT_KEYMODULE_STATISTICS1,
|
3047
|
-
pub commonStatistics: IKEEXT_COMMON_STATISTICS1,
|
3048
|
-
}
|
3049
|
-
#[repr(C)]
|
3050
|
-
#[derive(Clone, Copy)]
|
3051
|
-
pub struct IKEEXT_TRAFFIC0 {
|
3052
|
-
pub ipVersion: FWP_IP_VERSION,
|
3053
|
-
pub Anonymous1: IKEEXT_TRAFFIC0_0,
|
3054
|
-
pub Anonymous2: IKEEXT_TRAFFIC0_1,
|
3055
|
-
pub authIpFilterId: u64,
|
3056
|
-
}
|
3057
|
-
#[repr(C)]
|
3058
|
-
#[derive(Clone, Copy)]
|
3059
|
-
pub union IKEEXT_TRAFFIC0_0 {
|
3060
|
-
pub localV4Address: u32,
|
3061
|
-
pub localV6Address: [u8; 16],
|
3062
|
-
}
|
3063
|
-
#[repr(C)]
|
3064
|
-
#[derive(Clone, Copy)]
|
3065
|
-
pub union IKEEXT_TRAFFIC0_1 {
|
3066
|
-
pub remoteV4Address: u32,
|
3067
|
-
pub remoteV6Address: [u8; 16],
|
3068
|
-
}
|
3069
|
-
#[repr(C)]
|
3070
|
-
#[derive(Clone, Copy)]
|
3071
|
-
pub struct IPSEC_ADDRESS_INFO0 {
|
3072
|
-
pub numV4Addresses: u32,
|
3073
|
-
pub v4Addresses: *mut u32,
|
3074
|
-
pub numV6Addresses: u32,
|
3075
|
-
pub v6Addresses: *mut FWP_BYTE_ARRAY16,
|
3076
|
-
}
|
3077
|
-
#[repr(C)]
|
3078
|
-
#[derive(Clone, Copy)]
|
3079
|
-
pub struct IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0 {
|
3080
|
-
pub invalidSpisOnInbound: u32,
|
3081
|
-
pub decryptionFailuresOnInbound: u32,
|
3082
|
-
pub authenticationFailuresOnInbound: u32,
|
3083
|
-
pub udpEspValidationFailuresOnInbound: u32,
|
3084
|
-
pub replayCheckFailuresOnInbound: u32,
|
3085
|
-
pub invalidClearTextInbound: u32,
|
3086
|
-
pub saNotInitializedOnInbound: u32,
|
3087
|
-
pub receiveOverIncorrectSaInbound: u32,
|
3088
|
-
pub secureReceivesNotMatchingFilters: u32,
|
3089
|
-
}
|
3090
|
-
#[repr(C)]
|
3091
|
-
#[derive(Clone, Copy)]
|
3092
|
-
pub struct IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1 {
|
3093
|
-
pub invalidSpisOnInbound: u32,
|
3094
|
-
pub decryptionFailuresOnInbound: u32,
|
3095
|
-
pub authenticationFailuresOnInbound: u32,
|
3096
|
-
pub udpEspValidationFailuresOnInbound: u32,
|
3097
|
-
pub replayCheckFailuresOnInbound: u32,
|
3098
|
-
pub invalidClearTextInbound: u32,
|
3099
|
-
pub saNotInitializedOnInbound: u32,
|
3100
|
-
pub receiveOverIncorrectSaInbound: u32,
|
3101
|
-
pub secureReceivesNotMatchingFilters: u32,
|
3102
|
-
pub totalDropPacketsInbound: u32,
|
3103
|
-
}
|
3104
|
-
#[repr(C)]
|
3105
|
-
#[derive(Clone, Copy)]
|
3106
|
-
pub struct IPSEC_AGGREGATE_SA_STATISTICS0 {
|
3107
|
-
pub activeSas: u32,
|
3108
|
-
pub pendingSaNegotiations: u32,
|
3109
|
-
pub totalSasAdded: u32,
|
3110
|
-
pub totalSasDeleted: u32,
|
3111
|
-
pub successfulRekeys: u32,
|
3112
|
-
pub activeTunnels: u32,
|
3113
|
-
pub offloadedSas: u32,
|
3114
|
-
}
|
3115
|
-
#[repr(C)]
|
3116
|
-
#[derive(Clone, Copy)]
|
3117
|
-
pub struct IPSEC_AH_DROP_PACKET_STATISTICS0 {
|
3118
|
-
pub invalidSpisOnInbound: u32,
|
3119
|
-
pub authenticationFailuresOnInbound: u32,
|
3120
|
-
pub replayCheckFailuresOnInbound: u32,
|
3121
|
-
pub saNotInitializedOnInbound: u32,
|
3122
|
-
}
|
3123
|
-
#[repr(C)]
|
3124
|
-
#[derive(Clone, Copy)]
|
3125
|
-
pub struct IPSEC_AUTH_AND_CIPHER_TRANSFORM0 {
|
3126
|
-
pub authTransform: IPSEC_AUTH_TRANSFORM0,
|
3127
|
-
pub cipherTransform: IPSEC_CIPHER_TRANSFORM0,
|
3128
|
-
}
|
3129
|
-
#[repr(C)]
|
3130
|
-
#[derive(Clone, Copy)]
|
3131
|
-
pub struct IPSEC_AUTH_TRANSFORM0 {
|
3132
|
-
pub authTransformId: IPSEC_AUTH_TRANSFORM_ID0,
|
3133
|
-
pub cryptoModuleId: *mut windows_sys::core::GUID,
|
3134
|
-
}
|
3135
|
-
#[repr(C)]
|
3136
|
-
#[derive(Clone, Copy)]
|
3137
|
-
pub struct IPSEC_AUTH_TRANSFORM_ID0 {
|
3138
|
-
pub authType: IPSEC_AUTH_TYPE,
|
3139
|
-
pub authConfig: u8,
|
3140
|
-
}
|
3141
|
-
#[repr(C)]
|
3142
|
-
#[derive(Clone, Copy)]
|
3143
|
-
pub struct IPSEC_CIPHER_TRANSFORM0 {
|
3144
|
-
pub cipherTransformId: IPSEC_CIPHER_TRANSFORM_ID0,
|
3145
|
-
pub cryptoModuleId: *mut windows_sys::core::GUID,
|
3146
|
-
}
|
3147
|
-
#[repr(C)]
|
3148
|
-
#[derive(Clone, Copy)]
|
3149
|
-
pub struct IPSEC_CIPHER_TRANSFORM_ID0 {
|
3150
|
-
pub cipherType: IPSEC_CIPHER_TYPE,
|
3151
|
-
pub cipherConfig: u8,
|
3152
|
-
}
|
3153
|
-
#[repr(C)]
|
3154
|
-
#[derive(Clone, Copy)]
|
3155
|
-
pub struct IPSEC_DOSP_OPTIONS0 {
|
3156
|
-
pub stateIdleTimeoutSeconds: u32,
|
3157
|
-
pub perIPRateLimitQueueIdleTimeoutSeconds: u32,
|
3158
|
-
pub ipV6IPsecUnauthDscp: u8,
|
3159
|
-
pub ipV6IPsecUnauthRateLimitBytesPerSec: u32,
|
3160
|
-
pub ipV6IPsecUnauthPerIPRateLimitBytesPerSec: u32,
|
3161
|
-
pub ipV6IPsecAuthDscp: u8,
|
3162
|
-
pub ipV6IPsecAuthRateLimitBytesPerSec: u32,
|
3163
|
-
pub icmpV6Dscp: u8,
|
3164
|
-
pub icmpV6RateLimitBytesPerSec: u32,
|
3165
|
-
pub ipV6FilterExemptDscp: u8,
|
3166
|
-
pub ipV6FilterExemptRateLimitBytesPerSec: u32,
|
3167
|
-
pub defBlockExemptDscp: u8,
|
3168
|
-
pub defBlockExemptRateLimitBytesPerSec: u32,
|
3169
|
-
pub maxStateEntries: u32,
|
3170
|
-
pub maxPerIPRateLimitQueues: u32,
|
3171
|
-
pub flags: IPSEC_DOSP_FLAGS,
|
3172
|
-
pub numPublicIFLuids: u32,
|
3173
|
-
pub publicIFLuids: *mut u64,
|
3174
|
-
pub numInternalIFLuids: u32,
|
3175
|
-
pub internalIFLuids: *mut u64,
|
3176
|
-
pub publicV6AddrMask: FWP_V6_ADDR_AND_MASK,
|
3177
|
-
pub internalV6AddrMask: FWP_V6_ADDR_AND_MASK,
|
3178
|
-
}
|
3179
|
-
#[repr(C)]
|
3180
|
-
#[derive(Clone, Copy)]
|
3181
|
-
pub struct IPSEC_DOSP_STATE0 {
|
3182
|
-
pub publicHostV6Addr: [u8; 16],
|
3183
|
-
pub internalHostV6Addr: [u8; 16],
|
3184
|
-
pub totalInboundIPv6IPsecAuthPackets: u64,
|
3185
|
-
pub totalOutboundIPv6IPsecAuthPackets: u64,
|
3186
|
-
pub durationSecs: u32,
|
3187
|
-
}
|
3188
|
-
#[repr(C)]
|
3189
|
-
#[derive(Clone, Copy)]
|
3190
|
-
pub struct IPSEC_DOSP_STATE_ENUM_TEMPLATE0 {
|
3191
|
-
pub publicV6AddrMask: FWP_V6_ADDR_AND_MASK,
|
3192
|
-
pub internalV6AddrMask: FWP_V6_ADDR_AND_MASK,
|
3193
|
-
}
|
3194
|
-
#[repr(C)]
|
3195
|
-
#[derive(Clone, Copy)]
|
3196
|
-
pub struct IPSEC_DOSP_STATISTICS0 {
|
3197
|
-
pub totalStateEntriesCreated: u64,
|
3198
|
-
pub currentStateEntries: u64,
|
3199
|
-
pub totalInboundAllowedIPv6IPsecUnauthPkts: u64,
|
3200
|
-
pub totalInboundRatelimitDiscardedIPv6IPsecUnauthPkts: u64,
|
3201
|
-
pub totalInboundPerIPRatelimitDiscardedIPv6IPsecUnauthPkts: u64,
|
3202
|
-
pub totalInboundOtherDiscardedIPv6IPsecUnauthPkts: u64,
|
3203
|
-
pub totalInboundAllowedIPv6IPsecAuthPkts: u64,
|
3204
|
-
pub totalInboundRatelimitDiscardedIPv6IPsecAuthPkts: u64,
|
3205
|
-
pub totalInboundOtherDiscardedIPv6IPsecAuthPkts: u64,
|
3206
|
-
pub totalInboundAllowedICMPv6Pkts: u64,
|
3207
|
-
pub totalInboundRatelimitDiscardedICMPv6Pkts: u64,
|
3208
|
-
pub totalInboundAllowedIPv6FilterExemptPkts: u64,
|
3209
|
-
pub totalInboundRatelimitDiscardedIPv6FilterExemptPkts: u64,
|
3210
|
-
pub totalInboundDiscardedIPv6FilterBlockPkts: u64,
|
3211
|
-
pub totalInboundAllowedDefBlockExemptPkts: u64,
|
3212
|
-
pub totalInboundRatelimitDiscardedDefBlockExemptPkts: u64,
|
3213
|
-
pub totalInboundDiscardedDefBlockPkts: u64,
|
3214
|
-
pub currentInboundIPv6IPsecUnauthPerIPRateLimitQueues: u64,
|
3215
|
-
}
|
3216
|
-
#[repr(C)]
|
3217
|
-
#[derive(Clone, Copy)]
|
3218
|
-
pub struct IPSEC_ESP_DROP_PACKET_STATISTICS0 {
|
3219
|
-
pub invalidSpisOnInbound: u32,
|
3220
|
-
pub decryptionFailuresOnInbound: u32,
|
3221
|
-
pub authenticationFailuresOnInbound: u32,
|
3222
|
-
pub replayCheckFailuresOnInbound: u32,
|
3223
|
-
pub saNotInitializedOnInbound: u32,
|
3224
|
-
}
|
3225
|
-
#[repr(C)]
|
3226
|
-
#[derive(Clone, Copy)]
|
3227
|
-
pub struct IPSEC_GETSPI0 {
|
3228
|
-
pub inboundIpsecTraffic: IPSEC_TRAFFIC0,
|
3229
|
-
pub ipVersion: FWP_IP_VERSION,
|
3230
|
-
pub Anonymous: IPSEC_GETSPI0_0,
|
3231
|
-
pub rngCryptoModuleID: *mut windows_sys::core::GUID,
|
3232
|
-
}
|
3233
|
-
#[repr(C)]
|
3234
|
-
#[derive(Clone, Copy)]
|
3235
|
-
pub union IPSEC_GETSPI0_0 {
|
3236
|
-
pub inboundUdpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3237
|
-
}
|
3238
|
-
#[repr(C)]
|
3239
|
-
#[derive(Clone, Copy)]
|
3240
|
-
pub struct IPSEC_GETSPI1 {
|
3241
|
-
pub inboundIpsecTraffic: IPSEC_TRAFFIC1,
|
3242
|
-
pub ipVersion: FWP_IP_VERSION,
|
3243
|
-
pub Anonymous: IPSEC_GETSPI1_0,
|
3244
|
-
pub rngCryptoModuleID: *mut windows_sys::core::GUID,
|
3245
|
-
}
|
3246
|
-
#[repr(C)]
|
3247
|
-
#[derive(Clone, Copy)]
|
3248
|
-
pub union IPSEC_GETSPI1_0 {
|
3249
|
-
pub inboundUdpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3250
|
-
}
|
3251
|
-
#[repr(C)]
|
3252
|
-
#[derive(Clone, Copy)]
|
3253
|
-
pub struct IPSEC_ID0 {
|
3254
|
-
pub mmTargetName: windows_sys::core::PWSTR,
|
3255
|
-
pub emTargetName: windows_sys::core::PWSTR,
|
3256
|
-
pub numTokens: u32,
|
3257
|
-
pub tokens: *mut IPSEC_TOKEN0,
|
3258
|
-
pub explicitCredentials: u64,
|
3259
|
-
pub logonId: u64,
|
3260
|
-
}
|
3261
|
-
#[repr(C)]
|
3262
|
-
#[derive(Clone, Copy)]
|
3263
|
-
pub struct IPSEC_KEYING_POLICY0 {
|
3264
|
-
pub numKeyMods: u32,
|
3265
|
-
pub keyModKeys: *mut windows_sys::core::GUID,
|
3266
|
-
}
|
3267
|
-
#[repr(C)]
|
3268
|
-
#[derive(Clone, Copy)]
|
3269
|
-
pub struct IPSEC_KEYING_POLICY1 {
|
3270
|
-
pub numKeyMods: u32,
|
3271
|
-
pub keyModKeys: *mut windows_sys::core::GUID,
|
3272
|
-
pub flags: u32,
|
3273
|
-
}
|
3274
|
-
#[repr(C)]
|
3275
|
-
#[derive(Clone, Copy)]
|
3276
|
-
pub struct IPSEC_KEYMODULE_STATE0 {
|
3277
|
-
pub keyModuleKey: windows_sys::core::GUID,
|
3278
|
-
pub stateBlob: FWP_BYTE_BLOB,
|
3279
|
-
}
|
3280
|
-
#[repr(C)]
|
3281
|
-
#[derive(Clone, Copy)]
|
3282
|
-
pub struct IPSEC_KEY_MANAGER0 {
|
3283
|
-
pub keyManagerKey: windows_sys::core::GUID,
|
3284
|
-
pub displayData: FWPM_DISPLAY_DATA0,
|
3285
|
-
pub flags: u32,
|
3286
|
-
pub keyDictationTimeoutHint: u8,
|
3287
|
-
}
|
3288
|
-
#[repr(C)]
|
3289
|
-
#[cfg(feature = "Win32_Security")]
|
3290
|
-
#[derive(Clone, Copy)]
|
3291
|
-
pub struct IPSEC_KEY_MANAGER_CALLBACKS0 {
|
3292
|
-
pub reserved: windows_sys::core::GUID,
|
3293
|
-
pub flags: u32,
|
3294
|
-
pub keyDictationCheck: IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0,
|
3295
|
-
pub keyDictation: IPSEC_KEY_MANAGER_DICTATE_KEY0,
|
3296
|
-
pub keyNotify: IPSEC_KEY_MANAGER_NOTIFY_KEY0,
|
3297
|
-
}
|
3298
|
-
#[repr(C)]
|
3299
|
-
#[derive(Clone, Copy)]
|
3300
|
-
pub struct IPSEC_PROPOSAL0 {
|
3301
|
-
pub lifetime: IPSEC_SA_LIFETIME0,
|
3302
|
-
pub numSaTransforms: u32,
|
3303
|
-
pub saTransforms: *mut IPSEC_SA_TRANSFORM0,
|
3304
|
-
pub pfsGroup: IPSEC_PFS_GROUP,
|
3305
|
-
}
|
3306
|
-
#[repr(C)]
|
3307
|
-
#[derive(Clone, Copy)]
|
3308
|
-
pub struct IPSEC_SA0 {
|
3309
|
-
pub spi: u32,
|
3310
|
-
pub saTransformType: IPSEC_TRANSFORM_TYPE,
|
3311
|
-
pub Anonymous: IPSEC_SA0_0,
|
3312
|
-
}
|
3313
|
-
#[repr(C)]
|
3314
|
-
#[derive(Clone, Copy)]
|
3315
|
-
pub union IPSEC_SA0_0 {
|
3316
|
-
pub ahInformation: *mut IPSEC_SA_AUTH_INFORMATION0,
|
3317
|
-
pub espAuthInformation: *mut IPSEC_SA_AUTH_INFORMATION0,
|
3318
|
-
pub espCipherInformation: *mut IPSEC_SA_CIPHER_INFORMATION0,
|
3319
|
-
pub espAuthAndCipherInformation: *mut IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0,
|
3320
|
-
pub espAuthFwInformation: *mut IPSEC_SA_AUTH_INFORMATION0,
|
3321
|
-
}
|
3322
|
-
#[repr(C)]
|
3323
|
-
#[derive(Clone, Copy)]
|
3324
|
-
pub struct IPSEC_SA_AUTH_AND_CIPHER_INFORMATION0 {
|
3325
|
-
pub saCipherInformation: IPSEC_SA_CIPHER_INFORMATION0,
|
3326
|
-
pub saAuthInformation: IPSEC_SA_AUTH_INFORMATION0,
|
3327
|
-
}
|
3328
|
-
#[repr(C)]
|
3329
|
-
#[derive(Clone, Copy)]
|
3330
|
-
pub struct IPSEC_SA_AUTH_INFORMATION0 {
|
3331
|
-
pub authTransform: IPSEC_AUTH_TRANSFORM0,
|
3332
|
-
pub authKey: FWP_BYTE_BLOB,
|
3333
|
-
}
|
3334
|
-
#[repr(C)]
|
3335
|
-
#[derive(Clone, Copy)]
|
3336
|
-
pub struct IPSEC_SA_BUNDLE0 {
|
3337
|
-
pub flags: IPSEC_SA_BUNDLE_FLAGS,
|
3338
|
-
pub lifetime: IPSEC_SA_LIFETIME0,
|
3339
|
-
pub idleTimeoutSeconds: u32,
|
3340
|
-
pub ndAllowClearTimeoutSeconds: u32,
|
3341
|
-
pub ipsecId: *mut IPSEC_ID0,
|
3342
|
-
pub napContext: u32,
|
3343
|
-
pub qmSaId: u32,
|
3344
|
-
pub numSAs: u32,
|
3345
|
-
pub saList: *mut IPSEC_SA0,
|
3346
|
-
pub keyModuleState: *mut IPSEC_KEYMODULE_STATE0,
|
3347
|
-
pub ipVersion: FWP_IP_VERSION,
|
3348
|
-
pub Anonymous: IPSEC_SA_BUNDLE0_0,
|
3349
|
-
pub mmSaId: u64,
|
3350
|
-
pub pfsGroup: IPSEC_PFS_GROUP,
|
3351
|
-
}
|
3352
|
-
#[repr(C)]
|
3353
|
-
#[derive(Clone, Copy)]
|
3354
|
-
pub union IPSEC_SA_BUNDLE0_0 {
|
3355
|
-
pub peerV4PrivateAddress: u32,
|
3356
|
-
}
|
3357
|
-
#[repr(C)]
|
3358
|
-
#[derive(Clone, Copy)]
|
3359
|
-
pub struct IPSEC_SA_BUNDLE1 {
|
3360
|
-
pub flags: IPSEC_SA_BUNDLE_FLAGS,
|
3361
|
-
pub lifetime: IPSEC_SA_LIFETIME0,
|
3362
|
-
pub idleTimeoutSeconds: u32,
|
3363
|
-
pub ndAllowClearTimeoutSeconds: u32,
|
3364
|
-
pub ipsecId: *mut IPSEC_ID0,
|
3365
|
-
pub napContext: u32,
|
3366
|
-
pub qmSaId: u32,
|
3367
|
-
pub numSAs: u32,
|
3368
|
-
pub saList: *mut IPSEC_SA0,
|
3369
|
-
pub keyModuleState: *mut IPSEC_KEYMODULE_STATE0,
|
3370
|
-
pub ipVersion: FWP_IP_VERSION,
|
3371
|
-
pub Anonymous: IPSEC_SA_BUNDLE1_0,
|
3372
|
-
pub mmSaId: u64,
|
3373
|
-
pub pfsGroup: IPSEC_PFS_GROUP,
|
3374
|
-
pub saLookupContext: windows_sys::core::GUID,
|
3375
|
-
pub qmFilterId: u64,
|
3376
|
-
}
|
3377
|
-
#[repr(C)]
|
3378
|
-
#[derive(Clone, Copy)]
|
3379
|
-
pub union IPSEC_SA_BUNDLE1_0 {
|
3380
|
-
pub peerV4PrivateAddress: u32,
|
3381
|
-
}
|
3382
|
-
#[repr(C)]
|
3383
|
-
#[derive(Clone, Copy)]
|
3384
|
-
pub struct IPSEC_SA_CIPHER_INFORMATION0 {
|
3385
|
-
pub cipherTransform: IPSEC_CIPHER_TRANSFORM0,
|
3386
|
-
pub cipherKey: FWP_BYTE_BLOB,
|
3387
|
-
}
|
3388
|
-
#[repr(C)]
|
3389
|
-
#[cfg(feature = "Win32_Security")]
|
3390
|
-
#[derive(Clone, Copy)]
|
3391
|
-
pub struct IPSEC_SA_CONTEXT0 {
|
3392
|
-
pub saContextId: u64,
|
3393
|
-
pub inboundSa: *mut IPSEC_SA_DETAILS0,
|
3394
|
-
pub outboundSa: *mut IPSEC_SA_DETAILS0,
|
3395
|
-
}
|
3396
|
-
#[repr(C)]
|
3397
|
-
#[cfg(feature = "Win32_Security")]
|
3398
|
-
#[derive(Clone, Copy)]
|
3399
|
-
pub struct IPSEC_SA_CONTEXT1 {
|
3400
|
-
pub saContextId: u64,
|
3401
|
-
pub inboundSa: *mut IPSEC_SA_DETAILS1,
|
3402
|
-
pub outboundSa: *mut IPSEC_SA_DETAILS1,
|
3403
|
-
}
|
3404
|
-
#[repr(C)]
|
3405
|
-
#[derive(Clone, Copy)]
|
3406
|
-
pub struct IPSEC_SA_CONTEXT_CHANGE0 {
|
3407
|
-
pub changeType: IPSEC_SA_CONTEXT_EVENT_TYPE0,
|
3408
|
-
pub saContextId: u64,
|
3409
|
-
}
|
3410
|
-
#[repr(C)]
|
3411
|
-
#[cfg(feature = "Win32_Security")]
|
3412
|
-
#[derive(Clone, Copy)]
|
3413
|
-
pub struct IPSEC_SA_CONTEXT_ENUM_TEMPLATE0 {
|
3414
|
-
pub localSubNet: FWP_CONDITION_VALUE0,
|
3415
|
-
pub remoteSubNet: FWP_CONDITION_VALUE0,
|
3416
|
-
}
|
3417
|
-
#[repr(C)]
|
3418
|
-
#[cfg(feature = "Win32_Security")]
|
3419
|
-
#[derive(Clone, Copy)]
|
3420
|
-
pub struct IPSEC_SA_CONTEXT_SUBSCRIPTION0 {
|
3421
|
-
pub enumTemplate: *mut IPSEC_SA_CONTEXT_ENUM_TEMPLATE0,
|
3422
|
-
pub flags: u32,
|
3423
|
-
pub sessionKey: windows_sys::core::GUID,
|
3424
|
-
}
|
3425
|
-
#[repr(C)]
|
3426
|
-
#[cfg(feature = "Win32_Security")]
|
3427
|
-
#[derive(Clone, Copy)]
|
3428
|
-
pub struct IPSEC_SA_DETAILS0 {
|
3429
|
-
pub ipVersion: FWP_IP_VERSION,
|
3430
|
-
pub saDirection: FWP_DIRECTION,
|
3431
|
-
pub traffic: IPSEC_TRAFFIC0,
|
3432
|
-
pub saBundle: IPSEC_SA_BUNDLE0,
|
3433
|
-
pub Anonymous: IPSEC_SA_DETAILS0_0,
|
3434
|
-
pub transportFilter: *mut FWPM_FILTER0,
|
3435
|
-
}
|
3436
|
-
#[repr(C)]
|
3437
|
-
#[cfg(feature = "Win32_Security")]
|
3438
|
-
#[derive(Clone, Copy)]
|
3439
|
-
pub union IPSEC_SA_DETAILS0_0 {
|
3440
|
-
pub udpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3441
|
-
}
|
3442
|
-
#[repr(C)]
|
3443
|
-
#[cfg(feature = "Win32_Security")]
|
3444
|
-
#[derive(Clone, Copy)]
|
3445
|
-
pub struct IPSEC_SA_DETAILS1 {
|
3446
|
-
pub ipVersion: FWP_IP_VERSION,
|
3447
|
-
pub saDirection: FWP_DIRECTION,
|
3448
|
-
pub traffic: IPSEC_TRAFFIC1,
|
3449
|
-
pub saBundle: IPSEC_SA_BUNDLE1,
|
3450
|
-
pub Anonymous: IPSEC_SA_DETAILS1_0,
|
3451
|
-
pub transportFilter: *mut FWPM_FILTER0,
|
3452
|
-
pub virtualIfTunnelInfo: IPSEC_VIRTUAL_IF_TUNNEL_INFO0,
|
3453
|
-
}
|
3454
|
-
#[repr(C)]
|
3455
|
-
#[cfg(feature = "Win32_Security")]
|
3456
|
-
#[derive(Clone, Copy)]
|
3457
|
-
pub union IPSEC_SA_DETAILS1_0 {
|
3458
|
-
pub udpEncapsulation: *mut IPSEC_V4_UDP_ENCAPSULATION0,
|
3459
|
-
}
|
3460
|
-
#[repr(C)]
|
3461
|
-
#[derive(Clone, Copy)]
|
3462
|
-
pub struct IPSEC_SA_ENUM_TEMPLATE0 {
|
3463
|
-
pub saDirection: FWP_DIRECTION,
|
3464
|
-
}
|
3465
|
-
#[repr(C)]
|
3466
|
-
#[derive(Clone, Copy)]
|
3467
|
-
pub struct IPSEC_SA_IDLE_TIMEOUT0 {
|
3468
|
-
pub idleTimeoutSeconds: u32,
|
3469
|
-
pub idleTimeoutSecondsFailOver: u32,
|
3470
|
-
}
|
3471
|
-
#[repr(C)]
|
3472
|
-
#[derive(Clone, Copy)]
|
3473
|
-
pub struct IPSEC_SA_LIFETIME0 {
|
3474
|
-
pub lifetimeSeconds: u32,
|
3475
|
-
pub lifetimeKilobytes: u32,
|
3476
|
-
pub lifetimePackets: u32,
|
3477
|
-
}
|
3478
|
-
#[repr(C)]
|
3479
|
-
#[derive(Clone, Copy)]
|
3480
|
-
pub struct IPSEC_SA_TRANSFORM0 {
|
3481
|
-
pub ipsecTransformType: IPSEC_TRANSFORM_TYPE,
|
3482
|
-
pub Anonymous: IPSEC_SA_TRANSFORM0_0,
|
3483
|
-
}
|
3484
|
-
#[repr(C)]
|
3485
|
-
#[derive(Clone, Copy)]
|
3486
|
-
pub union IPSEC_SA_TRANSFORM0_0 {
|
3487
|
-
pub ahTransform: *mut IPSEC_AUTH_TRANSFORM0,
|
3488
|
-
pub espAuthTransform: *mut IPSEC_AUTH_TRANSFORM0,
|
3489
|
-
pub espCipherTransform: *mut IPSEC_CIPHER_TRANSFORM0,
|
3490
|
-
pub espAuthAndCipherTransform: *mut IPSEC_AUTH_AND_CIPHER_TRANSFORM0,
|
3491
|
-
pub espAuthFwTransform: *mut IPSEC_AUTH_TRANSFORM0,
|
3492
|
-
}
|
3493
|
-
#[repr(C)]
|
3494
|
-
#[derive(Clone, Copy)]
|
3495
|
-
pub struct IPSEC_STATISTICS0 {
|
3496
|
-
pub aggregateSaStatistics: IPSEC_AGGREGATE_SA_STATISTICS0,
|
3497
|
-
pub espDropPacketStatistics: IPSEC_ESP_DROP_PACKET_STATISTICS0,
|
3498
|
-
pub ahDropPacketStatistics: IPSEC_AH_DROP_PACKET_STATISTICS0,
|
3499
|
-
pub aggregateDropPacketStatistics: IPSEC_AGGREGATE_DROP_PACKET_STATISTICS0,
|
3500
|
-
pub inboundTrafficStatistics: IPSEC_TRAFFIC_STATISTICS0,
|
3501
|
-
pub outboundTrafficStatistics: IPSEC_TRAFFIC_STATISTICS0,
|
3502
|
-
}
|
3503
|
-
#[repr(C)]
|
3504
|
-
#[derive(Clone, Copy)]
|
3505
|
-
pub struct IPSEC_STATISTICS1 {
|
3506
|
-
pub aggregateSaStatistics: IPSEC_AGGREGATE_SA_STATISTICS0,
|
3507
|
-
pub espDropPacketStatistics: IPSEC_ESP_DROP_PACKET_STATISTICS0,
|
3508
|
-
pub ahDropPacketStatistics: IPSEC_AH_DROP_PACKET_STATISTICS0,
|
3509
|
-
pub aggregateDropPacketStatistics: IPSEC_AGGREGATE_DROP_PACKET_STATISTICS1,
|
3510
|
-
pub inboundTrafficStatistics: IPSEC_TRAFFIC_STATISTICS1,
|
3511
|
-
pub outboundTrafficStatistics: IPSEC_TRAFFIC_STATISTICS1,
|
3512
|
-
}
|
3513
|
-
#[repr(C)]
|
3514
|
-
#[derive(Clone, Copy)]
|
3515
|
-
pub struct IPSEC_TOKEN0 {
|
3516
|
-
pub r#type: IPSEC_TOKEN_TYPE,
|
3517
|
-
pub principal: IPSEC_TOKEN_PRINCIPAL,
|
3518
|
-
pub mode: IPSEC_TOKEN_MODE,
|
3519
|
-
pub token: u64,
|
3520
|
-
}
|
3521
|
-
#[repr(C)]
|
3522
|
-
#[derive(Clone, Copy)]
|
3523
|
-
pub struct IPSEC_TRAFFIC0 {
|
3524
|
-
pub ipVersion: FWP_IP_VERSION,
|
3525
|
-
pub Anonymous1: IPSEC_TRAFFIC0_0,
|
3526
|
-
pub Anonymous2: IPSEC_TRAFFIC0_1,
|
3527
|
-
pub trafficType: IPSEC_TRAFFIC_TYPE,
|
3528
|
-
pub Anonymous3: IPSEC_TRAFFIC0_2,
|
3529
|
-
pub remotePort: u16,
|
3530
|
-
}
|
3531
|
-
#[repr(C)]
|
3532
|
-
#[derive(Clone, Copy)]
|
3533
|
-
pub union IPSEC_TRAFFIC0_0 {
|
3534
|
-
pub localV4Address: u32,
|
3535
|
-
pub localV6Address: [u8; 16],
|
3536
|
-
}
|
3537
|
-
#[repr(C)]
|
3538
|
-
#[derive(Clone, Copy)]
|
3539
|
-
pub union IPSEC_TRAFFIC0_1 {
|
3540
|
-
pub remoteV4Address: u32,
|
3541
|
-
pub remoteV6Address: [u8; 16],
|
3542
|
-
}
|
3543
|
-
#[repr(C)]
|
3544
|
-
#[derive(Clone, Copy)]
|
3545
|
-
pub union IPSEC_TRAFFIC0_2 {
|
3546
|
-
pub ipsecFilterId: u64,
|
3547
|
-
pub tunnelPolicyId: u64,
|
3548
|
-
}
|
3549
|
-
#[repr(C)]
|
3550
|
-
#[derive(Clone, Copy)]
|
3551
|
-
pub struct IPSEC_TRAFFIC1 {
|
3552
|
-
pub ipVersion: FWP_IP_VERSION,
|
3553
|
-
pub Anonymous1: IPSEC_TRAFFIC1_0,
|
3554
|
-
pub Anonymous2: IPSEC_TRAFFIC1_1,
|
3555
|
-
pub trafficType: IPSEC_TRAFFIC_TYPE,
|
3556
|
-
pub Anonymous3: IPSEC_TRAFFIC1_2,
|
3557
|
-
pub remotePort: u16,
|
3558
|
-
pub localPort: u16,
|
3559
|
-
pub ipProtocol: u8,
|
3560
|
-
pub localIfLuid: u64,
|
3561
|
-
pub realIfProfileId: u32,
|
3562
|
-
}
|
3563
|
-
#[repr(C)]
|
3564
|
-
#[derive(Clone, Copy)]
|
3565
|
-
pub union IPSEC_TRAFFIC1_0 {
|
3566
|
-
pub localV4Address: u32,
|
3567
|
-
pub localV6Address: [u8; 16],
|
3568
|
-
}
|
3569
|
-
#[repr(C)]
|
3570
|
-
#[derive(Clone, Copy)]
|
3571
|
-
pub union IPSEC_TRAFFIC1_1 {
|
3572
|
-
pub remoteV4Address: u32,
|
3573
|
-
pub remoteV6Address: [u8; 16],
|
3574
|
-
}
|
3575
|
-
#[repr(C)]
|
3576
|
-
#[derive(Clone, Copy)]
|
3577
|
-
pub union IPSEC_TRAFFIC1_2 {
|
3578
|
-
pub ipsecFilterId: u64,
|
3579
|
-
pub tunnelPolicyId: u64,
|
3580
|
-
}
|
3581
|
-
#[repr(C)]
|
3582
|
-
#[derive(Clone, Copy)]
|
3583
|
-
pub struct IPSEC_TRAFFIC_SELECTOR0 {
|
3584
|
-
pub protocolId: u8,
|
3585
|
-
pub portStart: u16,
|
3586
|
-
pub portEnd: u16,
|
3587
|
-
pub ipVersion: FWP_IP_VERSION,
|
3588
|
-
pub Anonymous1: IPSEC_TRAFFIC_SELECTOR0_0,
|
3589
|
-
pub Anonymous2: IPSEC_TRAFFIC_SELECTOR0_1,
|
3590
|
-
}
|
3591
|
-
#[repr(C)]
|
3592
|
-
#[derive(Clone, Copy)]
|
3593
|
-
pub union IPSEC_TRAFFIC_SELECTOR0_0 {
|
3594
|
-
pub startV4Address: u32,
|
3595
|
-
pub startV6Address: [u8; 16],
|
3596
|
-
}
|
3597
|
-
#[repr(C)]
|
3598
|
-
#[derive(Clone, Copy)]
|
3599
|
-
pub union IPSEC_TRAFFIC_SELECTOR0_1 {
|
3600
|
-
pub endV4Address: u32,
|
3601
|
-
pub endV6Address: [u8; 16],
|
3602
|
-
}
|
3603
|
-
#[repr(C)]
|
3604
|
-
#[derive(Clone, Copy)]
|
3605
|
-
pub struct IPSEC_TRAFFIC_SELECTOR_POLICY0 {
|
3606
|
-
pub flags: u32,
|
3607
|
-
pub numLocalTrafficSelectors: u32,
|
3608
|
-
pub localTrafficSelectors: *mut IPSEC_TRAFFIC_SELECTOR0,
|
3609
|
-
pub numRemoteTrafficSelectors: u32,
|
3610
|
-
pub remoteTrafficSelectors: *mut IPSEC_TRAFFIC_SELECTOR0,
|
3611
|
-
}
|
3612
|
-
#[repr(C)]
|
3613
|
-
#[derive(Clone, Copy)]
|
3614
|
-
pub struct IPSEC_TRAFFIC_STATISTICS0 {
|
3615
|
-
pub encryptedByteCount: u64,
|
3616
|
-
pub authenticatedAHByteCount: u64,
|
3617
|
-
pub authenticatedESPByteCount: u64,
|
3618
|
-
pub transportByteCount: u64,
|
3619
|
-
pub tunnelByteCount: u64,
|
3620
|
-
pub offloadByteCount: u64,
|
3621
|
-
}
|
3622
|
-
#[repr(C)]
|
3623
|
-
#[derive(Clone, Copy)]
|
3624
|
-
pub struct IPSEC_TRAFFIC_STATISTICS1 {
|
3625
|
-
pub encryptedByteCount: u64,
|
3626
|
-
pub authenticatedAHByteCount: u64,
|
3627
|
-
pub authenticatedESPByteCount: u64,
|
3628
|
-
pub transportByteCount: u64,
|
3629
|
-
pub tunnelByteCount: u64,
|
3630
|
-
pub offloadByteCount: u64,
|
3631
|
-
pub totalSuccessfulPackets: u64,
|
3632
|
-
}
|
3633
|
-
#[repr(C)]
|
3634
|
-
#[derive(Clone, Copy)]
|
3635
|
-
pub struct IPSEC_TRANSPORT_POLICY0 {
|
3636
|
-
pub numIpsecProposals: u32,
|
3637
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3638
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3639
|
-
pub ndAllowClearTimeoutSeconds: u32,
|
3640
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3641
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY0,
|
3642
|
-
}
|
3643
|
-
#[repr(C)]
|
3644
|
-
#[derive(Clone, Copy)]
|
3645
|
-
pub struct IPSEC_TRANSPORT_POLICY1 {
|
3646
|
-
pub numIpsecProposals: u32,
|
3647
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3648
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3649
|
-
pub ndAllowClearTimeoutSeconds: u32,
|
3650
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3651
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY1,
|
3652
|
-
}
|
3653
|
-
#[repr(C)]
|
3654
|
-
#[derive(Clone, Copy)]
|
3655
|
-
pub struct IPSEC_TRANSPORT_POLICY2 {
|
3656
|
-
pub numIpsecProposals: u32,
|
3657
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3658
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3659
|
-
pub ndAllowClearTimeoutSeconds: u32,
|
3660
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3661
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY2,
|
3662
|
-
}
|
3663
|
-
#[repr(C)]
|
3664
|
-
#[derive(Clone, Copy)]
|
3665
|
-
pub struct IPSEC_TUNNEL_ENDPOINT0 {
|
3666
|
-
pub ipVersion: FWP_IP_VERSION,
|
3667
|
-
pub Anonymous: IPSEC_TUNNEL_ENDPOINT0_0,
|
3668
|
-
}
|
3669
|
-
#[repr(C)]
|
3670
|
-
#[derive(Clone, Copy)]
|
3671
|
-
pub union IPSEC_TUNNEL_ENDPOINT0_0 {
|
3672
|
-
pub v4Address: u32,
|
3673
|
-
pub v6Address: [u8; 16],
|
3674
|
-
}
|
3675
|
-
#[repr(C)]
|
3676
|
-
#[derive(Clone, Copy)]
|
3677
|
-
pub struct IPSEC_TUNNEL_ENDPOINTS0 {
|
3678
|
-
pub ipVersion: FWP_IP_VERSION,
|
3679
|
-
pub Anonymous1: IPSEC_TUNNEL_ENDPOINTS0_0,
|
3680
|
-
pub Anonymous2: IPSEC_TUNNEL_ENDPOINTS0_1,
|
3681
|
-
}
|
3682
|
-
#[repr(C)]
|
3683
|
-
#[derive(Clone, Copy)]
|
3684
|
-
pub union IPSEC_TUNNEL_ENDPOINTS0_0 {
|
3685
|
-
pub localV4Address: u32,
|
3686
|
-
pub localV6Address: [u8; 16],
|
3687
|
-
}
|
3688
|
-
#[repr(C)]
|
3689
|
-
#[derive(Clone, Copy)]
|
3690
|
-
pub union IPSEC_TUNNEL_ENDPOINTS0_1 {
|
3691
|
-
pub remoteV4Address: u32,
|
3692
|
-
pub remoteV6Address: [u8; 16],
|
3693
|
-
}
|
3694
|
-
#[repr(C)]
|
3695
|
-
#[derive(Clone, Copy)]
|
3696
|
-
pub struct IPSEC_TUNNEL_ENDPOINTS1 {
|
3697
|
-
pub ipVersion: FWP_IP_VERSION,
|
3698
|
-
pub Anonymous1: IPSEC_TUNNEL_ENDPOINTS1_0,
|
3699
|
-
pub Anonymous2: IPSEC_TUNNEL_ENDPOINTS1_1,
|
3700
|
-
pub localIfLuid: u64,
|
3701
|
-
}
|
3702
|
-
#[repr(C)]
|
3703
|
-
#[derive(Clone, Copy)]
|
3704
|
-
pub union IPSEC_TUNNEL_ENDPOINTS1_0 {
|
3705
|
-
pub localV4Address: u32,
|
3706
|
-
pub localV6Address: [u8; 16],
|
3707
|
-
}
|
3708
|
-
#[repr(C)]
|
3709
|
-
#[derive(Clone, Copy)]
|
3710
|
-
pub union IPSEC_TUNNEL_ENDPOINTS1_1 {
|
3711
|
-
pub remoteV4Address: u32,
|
3712
|
-
pub remoteV6Address: [u8; 16],
|
3713
|
-
}
|
3714
|
-
#[repr(C)]
|
3715
|
-
#[derive(Clone, Copy)]
|
3716
|
-
pub struct IPSEC_TUNNEL_ENDPOINTS2 {
|
3717
|
-
pub ipVersion: FWP_IP_VERSION,
|
3718
|
-
pub Anonymous1: IPSEC_TUNNEL_ENDPOINTS2_0,
|
3719
|
-
pub Anonymous2: IPSEC_TUNNEL_ENDPOINTS2_1,
|
3720
|
-
pub localIfLuid: u64,
|
3721
|
-
pub remoteFqdn: windows_sys::core::PWSTR,
|
3722
|
-
pub numAddresses: u32,
|
3723
|
-
pub remoteAddresses: *mut IPSEC_TUNNEL_ENDPOINT0,
|
3724
|
-
}
|
3725
|
-
#[repr(C)]
|
3726
|
-
#[derive(Clone, Copy)]
|
3727
|
-
pub union IPSEC_TUNNEL_ENDPOINTS2_0 {
|
3728
|
-
pub localV4Address: u32,
|
3729
|
-
pub localV6Address: [u8; 16],
|
3730
|
-
}
|
3731
|
-
#[repr(C)]
|
3732
|
-
#[derive(Clone, Copy)]
|
3733
|
-
pub union IPSEC_TUNNEL_ENDPOINTS2_1 {
|
3734
|
-
pub remoteV4Address: u32,
|
3735
|
-
pub remoteV6Address: [u8; 16],
|
3736
|
-
}
|
3737
|
-
#[repr(C)]
|
3738
|
-
#[derive(Clone, Copy)]
|
3739
|
-
pub struct IPSEC_TUNNEL_POLICY0 {
|
3740
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3741
|
-
pub numIpsecProposals: u32,
|
3742
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3743
|
-
pub tunnelEndpoints: IPSEC_TUNNEL_ENDPOINTS0,
|
3744
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3745
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY0,
|
3746
|
-
}
|
3747
|
-
#[repr(C)]
|
3748
|
-
#[derive(Clone, Copy)]
|
3749
|
-
pub struct IPSEC_TUNNEL_POLICY1 {
|
3750
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3751
|
-
pub numIpsecProposals: u32,
|
3752
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3753
|
-
pub tunnelEndpoints: IPSEC_TUNNEL_ENDPOINTS1,
|
3754
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3755
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY1,
|
3756
|
-
}
|
3757
|
-
#[repr(C)]
|
3758
|
-
#[derive(Clone, Copy)]
|
3759
|
-
pub struct IPSEC_TUNNEL_POLICY2 {
|
3760
|
-
pub flags: IPSEC_POLICY_FLAG,
|
3761
|
-
pub numIpsecProposals: u32,
|
3762
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3763
|
-
pub tunnelEndpoints: IPSEC_TUNNEL_ENDPOINTS2,
|
3764
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3765
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY2,
|
3766
|
-
pub fwdPathSaLifetime: u32,
|
3767
|
-
}
|
3768
|
-
#[repr(C)]
|
3769
|
-
#[derive(Clone, Copy)]
|
3770
|
-
pub struct IPSEC_TUNNEL_POLICY3 {
|
3771
|
-
pub flags: u32,
|
3772
|
-
pub numIpsecProposals: u32,
|
3773
|
-
pub ipsecProposals: *mut IPSEC_PROPOSAL0,
|
3774
|
-
pub tunnelEndpoints: IPSEC_TUNNEL_ENDPOINTS2,
|
3775
|
-
pub saIdleTimeout: IPSEC_SA_IDLE_TIMEOUT0,
|
3776
|
-
pub emPolicy: *mut IKEEXT_EM_POLICY2,
|
3777
|
-
pub fwdPathSaLifetime: u32,
|
3778
|
-
pub compartmentId: u32,
|
3779
|
-
pub numTrafficSelectorPolicy: u32,
|
3780
|
-
pub trafficSelectorPolicies: *mut IPSEC_TRAFFIC_SELECTOR_POLICY0,
|
3781
|
-
}
|
3782
|
-
#[repr(C)]
|
3783
|
-
#[derive(Clone, Copy)]
|
3784
|
-
pub struct IPSEC_V4_UDP_ENCAPSULATION0 {
|
3785
|
-
pub localUdpEncapPort: u16,
|
3786
|
-
pub remoteUdpEncapPort: u16,
|
3787
|
-
}
|
3788
|
-
#[repr(C)]
|
3789
|
-
#[derive(Clone, Copy)]
|
3790
|
-
pub struct IPSEC_VIRTUAL_IF_TUNNEL_INFO0 {
|
3791
|
-
pub virtualIfTunnelId: u64,
|
3792
|
-
pub trafficSelectorId: u64,
|
3793
|
-
}
|
3794
|
-
pub type FWPM_CALLOUT_CHANGE_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const FWPM_CALLOUT_CHANGE0)>;
|
3795
|
-
pub type FWPM_CONNECTION_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, eventtype: FWPM_CONNECTION_EVENT_TYPE, connection: *const FWPM_CONNECTION0)>;
|
3796
|
-
pub type FWPM_DYNAMIC_KEYWORD_CALLBACK0 = Option<unsafe extern "system" fn(notification: *mut core::ffi::c_void, context: *mut core::ffi::c_void)>;
|
3797
|
-
pub type FWPM_FILTER_CHANGE_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const FWPM_FILTER_CHANGE0)>;
|
3798
|
-
#[cfg(feature = "Win32_Security")]
|
3799
|
-
pub type FWPM_NET_EVENT_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, event: *const FWPM_NET_EVENT1)>;
|
3800
|
-
#[cfg(feature = "Win32_Security")]
|
3801
|
-
pub type FWPM_NET_EVENT_CALLBACK1 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, event: *const FWPM_NET_EVENT2)>;
|
3802
|
-
#[cfg(feature = "Win32_Security")]
|
3803
|
-
pub type FWPM_NET_EVENT_CALLBACK2 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, event: *const FWPM_NET_EVENT3)>;
|
3804
|
-
#[cfg(feature = "Win32_Security")]
|
3805
|
-
pub type FWPM_NET_EVENT_CALLBACK3 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, event: *const FWPM_NET_EVENT4)>;
|
3806
|
-
#[cfg(feature = "Win32_Security")]
|
3807
|
-
pub type FWPM_NET_EVENT_CALLBACK4 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, event: *const FWPM_NET_EVENT5)>;
|
3808
|
-
pub type FWPM_PROVIDER_CHANGE_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const FWPM_PROVIDER_CHANGE0)>;
|
3809
|
-
pub type FWPM_PROVIDER_CONTEXT_CHANGE_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const FWPM_PROVIDER_CONTEXT_CHANGE0)>;
|
3810
|
-
pub type FWPM_SUBLAYER_CHANGE_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const FWPM_SUBLAYER_CHANGE0)>;
|
3811
|
-
pub type FWPM_SYSTEM_PORTS_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, sysports: *const FWPM_SYSTEM_PORTS0)>;
|
3812
|
-
pub type FWPM_VSWITCH_EVENT_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, vswitchevent: *const FWPM_VSWITCH_EVENT0) -> u32>;
|
3813
|
-
#[cfg(feature = "Win32_Security")]
|
3814
|
-
pub type IPSEC_KEY_MANAGER_DICTATE_KEY0 = Option<unsafe extern "system" fn(inboundsadetails: *mut IPSEC_SA_DETAILS1, outboundsadetails: *mut IPSEC_SA_DETAILS1, keyingmodulegenkey: *mut super::super::Foundation::BOOL) -> u32>;
|
3815
|
-
pub type IPSEC_KEY_MANAGER_KEY_DICTATION_CHECK0 = Option<unsafe extern "system" fn(iketraffic: *const IKEEXT_TRAFFIC0, willdictatekey: *mut super::super::Foundation::BOOL, weight: *mut u32)>;
|
3816
|
-
#[cfg(feature = "Win32_Security")]
|
3817
|
-
pub type IPSEC_KEY_MANAGER_NOTIFY_KEY0 = Option<unsafe extern "system" fn(inboundsa: *const IPSEC_SA_DETAILS1, outboundsa: *const IPSEC_SA_DETAILS1)>;
|
3818
|
-
pub type IPSEC_SA_CONTEXT_CALLBACK0 = Option<unsafe extern "system" fn(context: *mut core::ffi::c_void, change: *const IPSEC_SA_CONTEXT_CHANGE0)>;
|