Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProtocolFamily.cs « System.Net.Sockets « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf6d59acfc2fa38b371d57bf302105b46839a2ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
// System.Net.Sockets.ProtocolFamily.cs
//
// Author:
//   Andrew Sutton
//
// (C) Andrew Sutton
//

namespace System.Net.Sockets
{
	public enum ProtocolFamily
	{
		Unknown = -1,
		Unspecified = 0,
		Unix,
		InterNetwork,
		ImpLink,
		Pup,
		Chaos,
		Ipx,
		Iso,
		Ecma,
		DataKit,
		Ccitt,
		Sna,
		DecNet,
		DataLink,
		Lat,
		HyperChannel,
		AppleTalk,
		NetBios,
		VoiceView,
		FireFox,
		Banyan = 0x15,
		Atm,
		InterNetworkV6,
		Cluster,
		Ieee12844,
		Irda,
		NetworkDesigners = 0x1c,
		Max,

		NS = Ipx,
		Osi = Iso,
	}
}