socket :: NativeSocketAddressFamilies :: af_decnet
DECnetsocket :: NativeSocketAddressFamilies :: af_inet
Internetwork: UDP, TCP, etc.socket :: NativeSocketAddressFamilies :: af_ipx
Novell Internet Protocolsocket :: NativeSocketAddressFamilies :: af_local
For backward compatibilitysocket :: NativeSocketAddressFamilies :: af_max
Maximum identifier for socket familiessocket :: NativeSocketAddressFamilies :: af_route
Internal Routing Protocolsocket :: NativeSocketAddressFamilies :: af_unix
Local to host (pipes)socket :: NativeSocketAddressFamilies :: af_unspec
Unspecifiedsocket $ NativeSocketAddressFamilies :: SELF
Type of this instance, automatically specialized in every classcore :: Pointer :: address_is_null
Is the address behind this Object at NULL?socket :: NativeSocketAddressFamilies :: af_decnet
DECnetsocket :: NativeSocketAddressFamilies :: af_inet
Internetwork: UDP, TCP, etc.socket :: NativeSocketAddressFamilies :: af_ipx
Novell Internet Protocolsocket :: NativeSocketAddressFamilies :: af_local
For backward compatibilitysocket :: NativeSocketAddressFamilies :: af_max
Maximum identifier for socket familiessocket :: NativeSocketAddressFamilies :: af_route
Internal Routing Protocolsocket :: NativeSocketAddressFamilies :: af_unix
Local to host (pipes)socket :: NativeSocketAddressFamilies :: af_unspec
Unspecifiedcore :: Object :: class_factory
Implementation used byget_class to create the specific class.
			core :: Pointer :: defaultinit
core :: Object :: defaultinit
core :: Object :: is_same_instance
Return true ifself and other are the same instance (i.e. same identity).
			core :: Object :: is_same_serialized
Isself the same as other in a serialization context?
			core :: Object :: is_same_type
Return true ifself and other have the same dynamic type.
			core :: Object :: output_class_name
Display class name on stdout (debug only).
# Socket families
extern class NativeSocketAddressFamilies `{ int `}
	# Unspecified
	new af_unspec `{ return AF_UNSPEC; `}
	# Local to host (pipes)
	new af_unix `{ return AF_UNIX; `}
	# For backward compatibility
	new af_local `{ return AF_LOCAL; `}
	# Internetwork: UDP, TCP, etc.
	new af_inet `{ return AF_INET; `}
	# IBM SNA
	new af_sna `{ return AF_SNA; `}
	# DECnet
	new af_decnet `{ return AF_DECnet; `}
	# Internal Routing Protocol
	new af_route `{ return AF_ROUTE; `}
	# Novell Internet Protocol
	new af_ipx `{ return AF_IPX; `}
	# IPv6
	new af_inet6 `{ return AF_INET6; `}
	# Maximum identifier for socket families
	new af_max `{ return AF_MAX; `}
end
					lib/socket/socket_c.nit:426,1--457,3