blob: 16caa5b403669fe1dfc31b891b37705b1d1e76ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
namespace WixToolset.Firewall
{
using System;
using System.Collections.Generic;
using System.Text;
static class FirewallConstants
{
// from icftypes.h
public const int NET_FW_IP_PROTOCOL_TCP = 6;
public const int NET_FW_IP_PROTOCOL_UDP = 17;
// from icftypes.h
public const int NET_FW_PROFILE2_DOMAIN = 0x0001;
public const int NET_FW_PROFILE2_PRIVATE = 0x0002;
public const int NET_FW_PROFILE2_PUBLIC = 0x0004;
public const int NET_FW_PROFILE2_ALL = 0x7FFFFFFF;
}
}
|