11 typedef union uIPv4 tIPv4;
12 typedef union uIPv6 tIPv6;
13 typedef struct sMacAddr tMacAddr;
14 typedef struct sAdapter tAdapter;
15 typedef struct sInterface tInterface;
16 typedef struct sSocketFile tSocketFile;
18 typedef void (*tIPCallback)(tInterface *Interface, void *Address, int Length, void *Buffer);
20 enum eInterfaceTypes {
22 AF_INET4 = 4, // tIPv4
29 } __attribute__((packed));
35 } __attribute__((packed));
39 } __attribute__((packed));
42 * \brief Route definition structure
44 typedef struct sRoute {
47 tVFS_Node Node; //!< Node for route manipulation
49 tInterface *Interface; //!< Interface for this route
50 int AddressType; //!< 0: Invalid, 4: IPv4, 6: IPv4
51 void *Network; //!< Network - Pointer to tIPv4/tIPv6/... at end of structure
52 int SubnetBits; //!< Number of bits in \a Network that are valid
53 void *NextHop; //!< Next Hop address - Pointer to tIPv4/tIPv6/... at end of structure
54 int Metric; //!< Route priority
58 struct sInterface *Next; //!< Next interface in list
60 tVFS_Node Node; //!< Node to use the interface
62 tAdapter *Adapter; //!< Adapter the interface is associated with
63 int TimeoutDelay; //!< Time in miliseconds before a packet times out
64 int Type; //!< Interface type, see ::eInterfaceTypes
66 void *Address; //!< IP address (stored after the Name)
67 int SubnetBits; //!< Number of bits that denote the address network
69 tRoute Route; //!< Interface route
76 * \brief Represents a network adapter
79 struct sAdapter *Next;
81 int DeviceFD; //!< File descriptor of the device
82 int NRef; //!< Number of times it's been referenced
84 tMacAddr MacAddr; //!< Physical address of the adapter
85 int DeviceLen; //!< Device name length
86 char Device[]; //!< Device name
91 * \brief Describes a socket file definition
95 struct sSocketFile *Next;
98 tVFS_Node *(*Init)(tInterface *Interface);
101 static const tMacAddr cMAC_BROADCAST = {{0xFF,0xFF,0xFF,0xFF,0xFF,0xFF}};
102 static const tMacAddr cMAC_ZERO = {{0x00,0x00,0x00,0x00,0x00,0x00}};
104 #define MAC_SET(t,v) memcpy(&(t),&(v),sizeof(tMacAddr))
105 #define IP4_SET(t,v) (t).L = (v).L;
106 #define IP6_SET(t,v) memcpy(&(t),&(v),sizeof(tIPv6))
108 #define MAC_EQU(a,b) (memcmp(&(a),&(b),sizeof(tMacAddr))==0)
109 #define IP4_EQU(a,b) ((a).L==(b).L)
110 #define IP6_EQU(a,b) (memcmp(&(a),&(b),sizeof(tIPv6))==0)
114 #define htons(v) BigEndian16(v)
115 #define htonl(v) BigEndian32(v)
117 #define ntohs(v) BigEndian16(v)
118 #define ntohl(v) BigEndian32(v)
120 extern int IPStack_AddFile(tSocketFile *File);
121 extern int IPStack_GetAddressSize(int AddressType);
122 extern int IPStack_CompareAddress(int AddressType, const void *Address1, const void *Address2, int CheckBits);
123 extern const char *IPStack_PrintAddress(int AddressType, const void *Address);
125 extern tRoute *IPStack_FindRoute(int AddressType, tInterface *Interface, void *Address);