10 #ifndef K_API_NETWORK_H
11 #define K_API_NETWORK_H
28 #define kIP_VERSION_4 (4)
42 typedef k32s kIpAssignment;
45 #define kIP_ASSIGNMENT_UNKNOWN (0)
46 #define kIP_ASSIGNMENT_AUTOMATIC (1)
47 #define kIP_ASSIGNMENT_MANUAL (2)
56 typedef xkNetworkInfoFilter kNetworkAdapterType;
59 #define kNETWORK_ADAPTER_ETHERNET (0x0001)
60 #define kNETWORK_ADAPTER_LOOPBACK (0x0002)
61 #define kNETWORK_ADAPTER_OTHER (0x0800)
62 #define kNETWORK_ADAPTER_OPTIONS (0xFFFF)
63 #define kNETWORK_ADAPTER_TYPE_FILTER_DEFAULT kNETWORK_ADAPTER_OPTIONS
64 #define kNETWORK_ADAPTER_TYPE_FILTER_NO_LOOPBACK (kNETWORK_ADAPTER_OPTIONS & ~kNETWORK_ADAPTER_LOOPBACK)
76 #define kNETWORK_ADAPTER_STATE_DISABLED (0x0001)
77 #define kNETWORK_ADAPTER_STATE_ENABLED (0x0002)
78 #define kNETWORK_ADAPTER_STATE_OPTIONS (0x0003)
79 #define kNETWORK_ADAPTER_STATE_FILTER_DEFAULT kNETWORK_ADAPTER_STATE_ENABLED
257 #define kIP_PORT_ANY (0)
261 #include <kApi/Io/kNetwork.x.h>
307 return obj->prefixLength;
374 return obj->isEnabled;
387 return obj->isLinkRunning;
400 return obj->adapterType;
415 return obj->macAddress;
428 return obj->ipAssignment;
491 return kNetworkInfo_ConstructEx(info, kNETWORK_ADAPTER_TYPE_FILTER_DEFAULT, kNETWORK_ADAPTER_STATE_FILTER_DEFAULT, alloc);
508 return kNetworkInfo_ConstructEx(info, typeFilter, stateFilter, alloc);
Represents a 32-bit unsigned integer.
kIpAddress kIpAddress_Any(kIpVersion version)
Gets an address representing an automatically-assigned address.
kIpAddress address
IP address.
Definition: kNetwork.h:252
Represents an Internet Protocol version.
#define kArrayList_ItemT(kArrayList_list, kSize_index, TPtr_item)
Gets the value of an item.
Definition: kArrayList.h:384
Represents the IP assignment.
Represents a void pointer.
k32u port
Port number.
Definition: kNetwork.h:253
kNetworkAdapter kNetworkInfo_AdapterAt(kNetworkInfo info, kSize index)
Gets the adapter at the specified index.
Definition: kNetwork.h:542
Represents network interface configuration information.
kIpAddress kIpAddress_Loopback(kIpVersion version)
Gets the loopback address.
kStatus kNetworkInfo_FindAdapterByName(kNetworkInfo info, const kChar *name, kNetworkAdapter *adapter)
Finds an adapter by name.
Declares the kString class.
kStatus kNetwork_FindInterfaceByNetwork(kIpAddress network, kIpAddress *interfaceAddress)
Finds the first interface address with subnet configuration that is compatible with the specified add...
Represents an unsigned integer that can store a pointer address.
Abstract base class for memory allocator types.
kIpAddress kIpAddress_Network(kIpAddress address, k32u prefixLength)
Extracts the network portion of an address.
kStatus kNetwork_FindAdapterNameById(kSize adapterId, kChar *adapterName, kSize adapterNameCapacity)
Finds the adapter name associated with a unique numeric adapter identifier.
#define kInlineFx(TYPE)
Inline method declaration helper.
Definition: kApiDef.h:29
Represents an IP address.
Definition: kNetwork.h:88
kNetworkAdapter kNetworkInterface_Adapter(kNetworkInterface iface)
Gets the adapter associated with this interface.
Definition: kNetwork.h:278
Represents a single unit (byte) in a UTF-8 character.
Represents a byte on the current platform.
kStatus kNetworkInfo_FindInterfaceByAddress(kNetworkInfo info, kIpAddress address, kNetworkInterface *iface)
Finds an interface by its exact local address.
kStatus kNetworkAdapter_InterfaceItem(kNetworkAdapter adapter, kSize index, kNetworkInterface *iface)
Gets the interface at the specified index, if present.
Definition: kNetwork.h:467
Represents network adapter configuration information.
kStatus kIpAddress_Format(kIpAddress address, kChar *text, kSize capacity)
Formats an IP address as a string.
kBool kNetworkAdapter_IsEnabled(kNetworkAdapter adapter)
Gets whether the adapter was enabled at the time of enumeration.
Definition: kNetwork.h:371
kSize kNetworkAdapter_Id(kNetworkAdapter adapter)
Gets the unique numeric ID associated with this adapter object.
Definition: kNetwork.h:355
kIpAddress kIpAddress_BroadcastV4()
Gets an address suitable for broadcasting IPv4 datagrams.
kStatus kNetwork_FindMacAdressByInterface(kIpAddress interfaceAddress, kMacAddress *macAddress)
Finds the MAC address associated with the specified interface address.
kStatus kNetwork_FindAdapterNameByInterface(kIpAddress interfaceAddress, kChar *adapterName, kSize adapterNameCapacity)
Finds the adapter name associated with the specified interface address.
kIpAddress kNetworkInterface_Address(kNetworkInterface iface)
Gets the IP address associated with this interface.
Definition: kNetwork.h:291
kStatus kNetworkInfo_Construct(kNetworkInfo *info, kAlloc alloc)
Constructs a network info object describing the current state of any local network adapters...
Definition: kNetwork.h:489
#define kObj(TypeName_T, T_object)
Declares a local "obj" (this-pointer) variable and initializes it from a type-checked object handle...
Definition: kApiDef.h:3450
kStatus kNetwork_RemoveChangeHandler(kCallbackFx function, kPointer receiver)
Removes a network change notification handler.
kBool kIpAddress_Equals(kIpAddress a, kIpAddress b)
Compares two addresses for equality.
kNetworkInfo kNetworkAdapter_Info(kNetworkAdapter adapter)
Gets the network info object that owns this adapter object.
Definition: kNetwork.h:325
k32u kIpAddress_ToNet32u(kIpAddress address)
Converts an IPv4 address to a network-endian 32-bit integer.
kStatus kNetworkInfo_FindAdapterById(kNetworkInfo info, kSize id, kNetworkAdapter *adapter)
Finds an adapter by its unique numeric identifier.
kBool kIpAddress_NetworkEquals(kIpAddress a, kIpAddress b, k32u prefixLength)
Compares two addresses for network equality.
kSize kNetworkInfo_AdapterCount(kNetworkInfo info)
Reports the number of network adapters.
Definition: kNetwork.h:528
kChar * kString_Chars(kString str)
Returns a pointer to the internal character buffer.
Definition: kString.h:247
kStatus kNetwork_AddChangeHandler(kCallbackFx function, kPointer receiver)
Add a network change notification handler.
Core Zen type declarations.
kSize kArrayList_Count(kArrayList list)
Returns the current count of items in the list.
Definition: kArrayList.h:638
Represents a 32-bit signed integer.
Represents an Ethernet address.
Definition: kApiDef.h:1769
kBool kIpAddress_IsLoopback(kIpAddress address)
Reports whether the given address is a loopback address.
Represents network configuration information.
kNetworkInterface kNetworkInfo_InterfaceAt(kNetworkInfo info, kSize index)
Gets the interface at the specified index.
Definition: kNetwork.h:569
#define kArrayList_AsT(kArrayList_list, kSize_index, T)
Gets the value of an item.
Definition: kArrayList.h:417
kStatus(kCall * kCallbackFx)(kPointer receiver, kPointer sender, void *args)
Callback signature for a generic event handler.
Definition: kApiDef.h:1871
kIpAddress kIpAddress_LoopbackV4()
Gets the IpV4 loopback address.
kMacAddress kNetworkAdapter_MacAddress(kNetworkAdapter adapter)
Gets the current MAC address of the interface.
Definition: kNetwork.h:412
kSize kNetworkAdapter_InterfaceCount(kNetworkAdapter adapter)
Reports the number of interfaces associated with this adapter.
Definition: kNetwork.h:438
kIpVersion version
Address version.
Definition: kNetwork.h:90
kBool kIpAddress_IsLinkLocal(kIpAddress address)
Reports whether the given address is a link-local address.
kIpAddress kIpAddress_AnyV4()
Gets an address representing an automatically-assigned IPv4 address.
kBool kNetworkAdapter_IsLinkRunning(kNetworkAdapter adapter)
Gets whether the link (PHY) was running at the time of enumeration.
Definition: kNetwork.h:384
kStatus kIpAddress_Parse(kIpAddress *address, const kChar *text)
Parses a text-formatted IP address.
Represents an error code.
kByte address[16]
Address bytes (most significant byte first).
Definition: kNetwork.h:91
Represents an IP end point (address, port).
Definition: kNetwork.h:250
Represents the network adater state.
kNetworkAdapterType kNetworkAdapter_Type(kNetworkAdapter adapter)
Gets the adapter type.
Definition: kNetwork.h:397
kIpAddress kIpAddress_FromHost32u(k32u address)
Converts a host-endian 32-bit integer to an IPv4 address.
kSize kNetworkInfo_InterfaceCount(kNetworkInfo info)
Reports the total number of network interfaces across all adapters.
Definition: kNetwork.h:555
kNetworkInterface kNetworkAdapter_InterfaceAt(kNetworkAdapter adapter, kSize index)
Gets the interface at the specified index.
Definition: kNetwork.h:452
kStatus kNetwork_FindAdapterIdByName(const kChar *adapterName, kSize *adapterId)
Finds the unique numeric adapter identifier associated with an adapter name.
Represents the network adater type.
k32u kIpAddress_ToHost32u(kIpAddress address)
Converts an IPv4 address to a host-endian 32-bit integer.
Represents a boolean value.
k32u kNetworkInterface_PrefixLength(kNetworkInterface iface)
Gets the subnet prefix length associated with this interface.
Definition: kNetwork.h:304
kIpAssignment kNetworkAdapter_IpAssignment(kNetworkAdapter adapter)
Gets the current IP assignment method (automatic, manual, unknown) of the interface.
Definition: kNetwork.h:425
const kChar * kNetworkAdapter_Name(kNetworkAdapter adapter)
Gets the name associated with this adapter object.
Definition: kNetwork.h:338
kStatus kNetwork_FindFirstAdapterInterface(const kChar *adapterName, kIpAddress *interfaceAddress)
Finds the first interface address associated with an adapter name.
kStatus kNetworkInfo_FindInterfaceByNetwork(kNetworkInfo info, kIpAddress address, kNetworkInterface *iface)
Finds the first interface with subnet configuration that is compatible with the specified address...
kStatus kNetworkInfo_Refresh(kNetworkInfo info)
Updates network information.
kIpAddress kIpAddress_FromNet32u(k32u address)
Converts a network-endian 32-bit integer to an IPv4 address.