TARPTransport

From Ultibo.org
Jump to: navigation, search

Return to Unit ARP


Description


To be documented

Class definitions



[Expand]

TARPTransport = class(TNetworkTransport)


Function declarations



[Expand]
constructor TARPTransport.Create(AManager:TTransportManager; const AName:String);
Description: To be documented


[Expand]
destructor TARPTransport.Destroy;
Description: To be documented


[Expand]
function TARPTransport.PacketHandler(AHandle:THandle; ASource,ADest,APacket:Pointer; ASize:Integer; ABroadcast:Boolean):Boolean;
Description: Process a packet received by an Adapter


[Expand]
function TARPTransport.SendARPRequest(AAdapter:TARPTransportAdapter; ASource:TARPAddressEntry; const ATarget:TInAddr):Boolean;
Description: Send an ARP request packet


[Expand]
function TARPTransport.SendARPReply(AAdapter:TARPTransportAdapter; ASource,ATarget:TARPAddressEntry):Boolean;
Description: Send an ARP reply packet


[Expand]
function TARPTransport.SendINARPRequest(AAdapter:TARPTransportAdapter; ASource:TARPAddressEntry; const ATarget:THardwareAddress):Boolean;
Description: Send an Inverse ARP request packet


[Expand]
function TARPTransport.SendINARPReply(AAdapter:TARPTransportAdapter; ASource,ATarget:TARPAddressEntry):Boolean;
Description: Send an Inverse ARP reply packet


[Expand]
function TARPTransport.AddAdapter(AAdapter:TNetworkAdapter; AConfigType:Word; AAddress,ANetmask,AGateway,AServer:Pointer):Boolean;
Description: Add an adapter to this transport


[Expand]
function TARPTransport.RemoveAdapter(AAdapter:TNetworkAdapter):Boolean;
Description: Remove an adapter from this transport


[Expand]
function TARPTransport.StartTransport:Boolean;
Description: Start this transport ready for sending and receiving


[Expand]
function TARPTransport.StopTransport:Boolean;
Description: Stop this transport ready for removal


[Expand]
function TARPTransport.ProcessTransport:Boolean;
Description: Process periodic tasks for this transport


[Expand]
function TARPTransport.BindTransport(AAdapter:TNetworkAdapter):Boolean;
Description: Bind this transport to an adapter if appropriate


[Expand]
function TARPTransport.UnbindTransport(AAdapter:TNetworkAdapter):Boolean;
Description: Unbind this transport from an adapter if appropriate


[Expand]
function TARPTransport.GetAddressByAddress(const AAddress:TInAddr; AAdapter:TNetworkAdapter; ALock:Boolean; AState:LongWord):TARPAddressEntry;
Description: Find the IP address entry in the address cache


[Expand]
function TARPTransport.GetAddressByHardware(const AHardware:THardwareAddress; AAdapter:TNetworkAdapter; ALock:Boolean; AState:LongWord):TARPAddressEntry;
Description: Find the hardware address entry in the address cache


[Expand]
function TARPTransport.GetAddressByNext(APrevious:TARPAddressEntry; ALock,AUnlock:Boolean; AState:LongWord):TARPAddressEntry;
Description: To be documented


[Expand]
function TARPTransport.AddAddress(const AAddress:TInAddr; const AHardware:THardwareAddress; AAdapter:TNetworkAdapter; AType:Word; ALock:Boolean; AState:LongWord):TARPAddressEntry;
Description: Add an IP and hardware address pair to the address cache


[Expand]
function TARPTransport.RemoveAddress(const AAddress:TInAddr; AAdapter:TNetworkAdapter):Boolean;
Description: Remove an IP and hardware address pair from the address cache


[Expand]
procedure TARPTransport.FlushAddresses(All:Boolean);
Description: Flush addresses from the address cache


[Expand]
function TARPTransport.LoadAddress(AAdapter:TNetworkAdapter; const AAddress:TInAddr; const AHardware:THardwareAddress; AType:Word):Boolean;
Description: Add an IP and hardware address pair to the address cache


[Expand]
function TARPTransport.UnloadAddress(AAdapter:TNetworkAdapter; const AAddress:TInAddr):Boolean;
Description: Remove an IP and hardware address pair from the address cache


[Expand]
function TARPTransport.ResolveAddress(AAdapter:TNetworkAdapter; const ASource,AAddress:TInAddr; var AHardware:THardwareAddress):Boolean;
Description: Resolve the hardware address for the given IP address either from cache or by sending an ARP request


[Expand]
function TARPTransport.ResolveHardware(AAdapter:TNetworkAdapter; const ASource:TInAddr; const AHardware:THardwareAddress; var AAddress:TInAddr):Boolean;
Description: Resolve the IP address for the given hardware address either from cache or by sending an ARP request


[Expand]
function TARPTransport.ConfirmAddress(AAdapter:TNetworkAdapter; const ASource,AAddress:TInAddr):Boolean;
Description: Confirm that the supplied Address is not in use on this network


[Expand]
function TARPTransport.AdvertiseAddress(AAdapter:TNetworkAdapter; const ASource:TInAddr):Boolean;
Description: Send a Broadcast ARP reply to allow others to update their cache


[Expand]
function TARPTransport.CompareDefault(const AAddress:TInAddr):Boolean;
Description: Compare the supplied address with the IP default address


[Expand]
function TARPTransport.CompareAddress(const AAddress1,AAddress2:TInAddr):Boolean;
Description: Compare the supplied addresses to see if they are the same


Return to Unit Reference