IPX network functions.
**Note: IPX module must be loaded by calling LoadLibrary("ipx") before using!**
Methods
# inner IpxCheckPacket() → {boolean}
Check for packet in receive buffer.
true if a packet is available.
boolean
# inner IpxGetLocalAddress() → {IpxAddress}
Get the local address.
an array containing the own address.
IpxAddress
# inner IpxGetPacket() → {IpxPacket}
Get packet from receive buffer(or NULL).
a data packet or null if none available.
# inner IpxSend(data, dest)
Send packet via IPX. Max length 79 byte. Node addresses are arrays of 6 numbers between 0-255. See IPX for BROADCAST address.
Parameters:
| Name | Type | Description |
|---|---|---|
data |
string
|
data to send. |
dest |
IpxAddress
|
destination address. |
# inner IpxSocketOpen(num)
Open an IPX socket. See IPX for DEFAULT_SOCKET.
Parameters:
| Name | Type | Description |
|---|---|---|
num |
*
|
the socket number to use. |