|
|
|
| acConnectionList
|
| type
|
| TacConnectionProto = (pTCP, pUDP, pAny);
|
| TacConnection = class(TacListObject)
|
| public
|
| Data: Pointer;
|
|
|
| property LocalIP: TInAddr;
|
| property LocalIPStr: String;
|
| property LocalIPLong: LongInt;
|
| property LocalPort: Word;
|
|
|
| property RemoteIP: TInAddr;
|
| property RemoteIPStr: String;
|
| property RemoteIPLong: LongInt;
|
| property RemotePort: Word;
|
|
|
| property LocalHostname: String;
|
| property RemoteHostname: String;
|
|
|
| property State: DWord;
|
| property StateStr: String;
|
|
|
| property Proto: TacConnectionProto;
|
| property ProtoName: String;
|
|
|
| property IsIncoming: Boolean;
|
| end;
|
| The TacConnection object is the item of acConnectionList component, which holds the information about the TCP/UDP connection.
|
|
|
|
|