net_info

Contains information about the network activity.

Service:NetWare Platform

Structure

  #include <monitor.h>
  
  #define MAX_LAN_BOARDS   12
  #define MAX_IP_ADDRS     12
  #define IPX_ADDR_LEN      6
  
  struct net_info 
  {
     int        MaximumConnections;
     uint32_t   spare0[12];
     uint8_t    IPXAddr[IPX_ADDR_LEN];
     uint8_t    spare1[2];
     uint32_t   MaximumBoards;
     uint32_t   spare3 [12];
     uint32_t   IPAddrsBound[MAX_IP_ADDRS];
     uint32_t   spare4[24];
  };
  

Fields

MaximumConnections

Indicates the current number of connections to the server.

spare0

Obsolete field for the MAC address for each installed LAN card.

IPXAddr

Indicates the IPX addresses assigned to the server.

spare1

Reserved.

MaximumBoards

Specifies the maximum number of LAN cards.

spare3

Reserved.

IPAddrsBound

Specifies the IP addresses that are bound to the LAN cards.

spare4

Reserved.