Always snap to grid
Difference between revisions of "UE2:TcpLink (UT2004)"
(unified class descriptions for all engine versions) |
(added descriptions) |
||
Line 17: | Line 17: | ||
}} | }} | ||
}} | }} | ||
− | |||
TcpLink: An Internet TCP/IP connection. | TcpLink: An Internet TCP/IP connection. | ||
+ | |||
+ | See the parent class {{cl|InternetLink}} for additional members required to use this class. | ||
==Properties== | ==Properties== | ||
Line 24: | Line 25: | ||
'''Type:''' [[class]]<{{cl|TcpLink}}> | '''Type:''' [[class]]<{{cl|TcpLink}}> | ||
− | + | When in listening mode and this property specifies another TcpLink class, a new instance of that class is spawned with the listening instance as {{tl|Owner|Actor|internal variables}} whenever a connection is accepted. | |
====LinkState==== | ====LinkState==== | ||
'''Type:''' {{tl|ELinkState}} | '''Type:''' {{tl|ELinkState}} | ||
− | + | The current link state of this TCP socket. | |
− | {{#ifeq:{{gamename}}|UT2003| | + | {{#ifeq:{{gamename}}|UT2003||{{#ifeq:{{NAMESPACE}}|UE1|| |
− | |{{#ifeq:{{NAMESPACE}}|UE1| | + | |
− | | | + | |
====RecvBuf==== | ====RecvBuf==== | ||
'''Type:''' [[string]] | '''Type:''' [[string]] | ||
Line 39: | Line 38: | ||
'''[[Variables#Modifiers|Modifiers]]:''' const | '''[[Variables#Modifiers|Modifiers]]:''' const | ||
− | + | An internal buffer for received string data that is used to store received text in line mode until a line ending was received. | |
}}}} | }}}} | ||
− | |||
====RemoteAddr==== | ====RemoteAddr==== | ||
'''Type:''' {{tl|IpAddr|InternetLink}} | '''Type:''' {{tl|IpAddr|InternetLink}} | ||
− | + | The remote side's IP address and TCP port when this instance is connected. (Not applicable for listening sockets with an {{tl|AcceptClass}}. | |
====SendFIFO==== | ====SendFIFO==== | ||
Line 52: | Line 50: | ||
'''[[Variables#Modifiers|Modifiers]]:''' const | '''[[Variables#Modifiers|Modifiers]]:''' const | ||
− | send | + | An internal buffer for data to send. The TcpLink will try to flush any data to the underlying socket immediately, but if the socket can't handle all data, it may be stored here until the next attempt. |
===Default values=== | ===Default values=== | ||
Line 85: | Line 83: | ||
==Enums== | ==Enums== | ||
====ELinkState==== | ====ELinkState==== | ||
− | + | This enumeration contains possible link states of the TCP socket. | |
− | ; STATE_Initialized : Sockets is initialized | + | ; STATE_Initialized : Sockets is initialized. This is the initial state when the TcpLink is spawned. |
− | ; STATE_Ready : Port bound, ready for activity | + | ; STATE_Ready : Port bound, ready for activity. This state is set when the {{tl|BindPort}}() function returns successfully. |
− | ; STATE_Listening : Listening for connections | + | ; STATE_Listening : Listening for connections. This state is set when the {{tl|Listen}}() function returns successfully. |
− | ; STATE_Connecting : Attempting to connect | + | ; STATE_Connecting : Attempting to connect. This state indicates that a previous {{tl|Open}}() call was successful, but the connection is not yet established. |
− | ; STATE_Connected : Open and connected | + | ; STATE_Connected : Open and connected. This state indicates that the background operations initiated by a previous {{tl|Open}}() call have successfully completed or a connection was accepted in listening state and the connection is now established. |
− | ; STATE_ListenClosePending : Socket in process of closing | + | ; STATE_ListenClosePending : Socket in process of closing. This state is set after a {{tl|Close}}() call on a listening socket that had previously established a connection. |
− | ; STATE_ConnectClosePending : Socket in process of closing | + | ; STATE_ConnectClosePending : Socket in process of closing. This state is set after a {{tl|Close}}() call on a non-listening socket (i.e. the connection was established via {{tl|Open}}() or by spawning a new TcpLink for an accepted connection) that had previously established a connection. |
− | ; STATE_ListenClosing : Socket in process of closing | + | ; STATE_ListenClosing : Socket in process of closing. This state is set after a {{tl|Close}}() call on a listening socket without a connections. |
− | ; STATE_ConnectClosing : Socket in process of closing | + | ; STATE_ConnectClosing : Socket in process of closing. This state is set when the close-pending connection was shut down. |
==Functions== | ==Functions== | ||
Line 101: | Line 99: | ||
{{code|native function [[int]] '''BindPort''' (optional [[int]] '''Port''', optional [[bool]] '''bUseNextAvailable''')}} | {{code|native function [[int]] '''BindPort''' (optional [[int]] '''Port''', optional [[bool]] '''bUseNextAvailable''')}} | ||
− | + | Binds a local TCP port for this socket. This function must be called once before using {{tl|Open}}() or {{tl|Listen}}(). Specifying a port is recommended if you plan to listen for incoming connections. However, if you want to connect to a remote listening socket, specifying a port is actually counter-productive, since you usually don't care which local port is bound on the client side. | |
====Close==== | ====Close==== | ||
{{code|native function [[bool]] '''Close''' ()}} | {{code|native function [[bool]] '''Close''' ()}} | ||
− | + | Closes a connection or stops listening for connections. | |
====IsConnected==== | ====IsConnected==== | ||
{{code|native function [[bool]] '''IsConnected''' ()}} | {{code|native function [[bool]] '''IsConnected''' ()}} | ||
− | + | Returns whether the TCP socket is currently connected. | |
====Listen==== | ====Listen==== | ||
{{code|native function [[bool]] '''Listen''' ()}} | {{code|native function [[bool]] '''Listen''' ()}} | ||
− | + | Starts listening for incoming connection attempts on the previously bound port. | |
====Open==== | ====Open==== | ||
{{code|native function [[bool]] '''Open''' ({{tl|IpAddr|InternetLink}} '''Addr''')}} | {{code|native function [[bool]] '''Open''' ({{tl|IpAddr|InternetLink}} '''Addr''')}} | ||
− | + | Opens a connection to the specifies remote IP address and TCP port using the previously bound port as local port. | |
====ReadBinary==== | ====ReadBinary==== | ||
{{code|native function [[int]] '''ReadBinary''' ([[int]] '''Count''', out [[byte]] '''B'''[255])}} | {{code|native function [[int]] '''ReadBinary''' ([[int]] '''Count''', out [[byte]] '''B'''[255])}} | ||
− | + | Attempts to read the specified number of bytes into the provided buffer and returns the actual number of bytes read. (Don't specify a count greater than 255, unless you want to risk breaking things!) | |
+ | |||
+ | You should not use this function when the TcpLink is in <code>{{tl|ReceiveMode|InternetLink}} = RMODE_Event</code>. | ||
====ReadText==== | ====ReadText==== | ||
{{code|native function [[int]] '''ReadText''' (out [[string]] '''Str''')}} | {{code|native function [[int]] '''ReadText''' (out [[string]] '''Str''')}} | ||
− | + | Reads all pending received bytes and interprets them as Windows-1252 encoded string. If the receive buffer contains null bytes, the returned string will be truncated at the first such byte, but the receive buffer is emptied anyway, so part of the data may be lost. (Use {{tl|ReadBinary}}() if you expect binary data to be received.) | |
+ | |||
+ | You should not use this function when the TcpLink is in <code>{{tl|ReceiveMode|InternetLink}} = RMODE_Event</code>. | ||
====SendBinary==== | ====SendBinary==== | ||
{{code|native function [[int]] '''SendBinary''' ([[int]] '''Count''', [[byte]] '''B'''[255])}} | {{code|native function [[int]] '''SendBinary''' ([[int]] '''Count''', [[byte]] '''B'''[255])}} | ||
− | + | Sends the specified number of bytes from the provided buffer. (Like with {{tl|ReadBinary}}(), the count is not checked, so make sure it never exceeds 255!) | |
====SendText==== | ====SendText==== | ||
{{code|native function [[int]] '''SendText''' (coerce [[string]] '''Str''')}} | {{code|native function [[int]] '''SendText''' (coerce [[string]] '''Str''')}} | ||
− | + | Sends the specified string, assuming Windows-1252 encoding. That means if the string contains character codes greater than 255, those characters' high bytes will be lost! | |
===Events=== | ===Events=== | ||
Line 147: | Line 149: | ||
{{code|event '''Accepted''' ()}} | {{code|event '''Accepted''' ()}} | ||
− | + | This event is called on the {{tl|AcceptClass}} instance spawned when a connection is accepted by a listening socket. | |
====Closed==== | ====Closed==== | ||
{{code|event '''Closed''' ()}} | {{code|event '''Closed''' ()}} | ||
− | + | Called when a connection was closed. | |
====Opened==== | ====Opened==== | ||
{{code|event '''Opened''' ()}} | {{code|event '''Opened''' ()}} | ||
− | + | Called when a connection was opened. | |
====ReceivedBinary==== | ====ReceivedBinary==== | ||
{{code|event '''ReceivedBinary''' ([[int]] '''Count''', [[byte]] '''B'''[255])}} | {{code|event '''ReceivedBinary''' ([[int]] '''Count''', [[byte]] '''B'''[255])}} | ||
− | < | + | Called in <code>{{tl|ReceiveMode|InternetLink}} = RMODE_Event</code> when the {{tl|LinkMode|InternetLink}} is <code>MODE_Binary</code> and new data was received. |
====ReceivedLine==== | ====ReceivedLine==== | ||
{{code|event '''ReceivedLine''' ([[string]] '''Line''')}} | {{code|event '''ReceivedLine''' ([[string]] '''Line''')}} | ||
− | < | + | Called in <code>{{tl|ReceiveMode|InternetLink}} = RMODE_Event</code> when the {{tl|LinkMode|InternetLink}} is <code>MODE_Line</code> and a new line was received. The end of the line type is defined by the {{tl|LineMode|InternetLink}} property. |
====ReceivedText==== | ====ReceivedText==== | ||
{{code|event '''ReceivedText''' ([[string]] '''Text''')}} | {{code|event '''ReceivedText''' ([[string]] '''Text''')}} | ||
− | < | + | Called in <code>{{tl|ReceiveMode|InternetLink}} = RMODE_Event</code> when the {{tl|LinkMode|InternetLink}} is <code>MODE_Text</code> and new data was received. |
Revision as of 07:15, 27 April 2014
Object >> Actor >> Info >> InternetInfo >> InternetLink >> TcpLink |
Contents
- Package:
- IpDrv
- Direct subclasses:
- BufferedTcpLink, WebConnection, WebServer
- This class in other games:
- RTNP, UT, U1, UE2Runtime, UT2003, U2, U2XMP, UT3, UDK
TcpLink: An Internet TCP/IP connection.
See the parent class InternetLink for additional members required to use this class.
Properties
AcceptClass
Type: class<TcpLink>
When in listening mode and this property specifies another TcpLink class, a new instance of that class is spawned with the listening instance as Actor.Owner whenever a connection is accepted.
LinkState
Type: ELinkState
The current link state of this TCP socket.
RecvBuf
Type: string
Modifiers: const
An internal buffer for received string data that is used to store received text in line mode until a line ending was received.
RemoteAddr
Type: InternetLink.IpAddr
The remote side's IP address and TCP port when this instance is connected. (Not applicable for listening sockets with an AcceptClass.
SendFIFO
Modifiers: const
An internal buffer for data to send. The TcpLink will try to flush any data to the underlying socket immediately, but if the socket can't handle all data, it may be stored here until the next attempt.
Default values
Property | Value |
---|---|
bAlwaysTick | True |
Enums
ELinkState
This enumeration contains possible link states of the TCP socket.
- STATE_Initialized
- Sockets is initialized. This is the initial state when the TcpLink is spawned.
- STATE_Ready
- Port bound, ready for activity. This state is set when the BindPort() function returns successfully.
- STATE_Listening
- Listening for connections. This state is set when the Listen() function returns successfully.
- STATE_Connecting
- Attempting to connect. This state indicates that a previous Open() call was successful, but the connection is not yet established.
- STATE_Connected
- Open and connected. This state indicates that the background operations initiated by a previous Open() call have successfully completed or a connection was accepted in listening state and the connection is now established.
- STATE_ListenClosePending
- Socket in process of closing. This state is set after a Close() call on a listening socket that had previously established a connection.
- STATE_ConnectClosePending
- Socket in process of closing. This state is set after a Close() call on a non-listening socket (i.e. the connection was established via Open() or by spawning a new TcpLink for an accepted connection) that had previously established a connection.
- STATE_ListenClosing
- Socket in process of closing. This state is set after a Close() call on a listening socket without a connections.
- STATE_ConnectClosing
- Socket in process of closing. This state is set when the close-pending connection was shut down.
Functions
Native functions
BindPort
Binds a local TCP port for this socket. This function must be called once before using Open() or Listen(). Specifying a port is recommended if you plan to listen for incoming connections. However, if you want to connect to a remote listening socket, specifying a port is actually counter-productive, since you usually don't care which local port is bound on the client side.
Close
Closes a connection or stops listening for connections.
IsConnected
Returns whether the TCP socket is currently connected.
Listen
Starts listening for incoming connection attempts on the previously bound port.
Open
Opens a connection to the specifies remote IP address and TCP port using the previously bound port as local port.
ReadBinary
Attempts to read the specified number of bytes into the provided buffer and returns the actual number of bytes read. (Don't specify a count greater than 255, unless you want to risk breaking things!)
You should not use this function when the TcpLink is in InternetLink.ReceiveMode = RMODE_Event
.
ReadText
Reads all pending received bytes and interprets them as Windows-1252 encoded string. If the receive buffer contains null bytes, the returned string will be truncated at the first such byte, but the receive buffer is emptied anyway, so part of the data may be lost. (Use ReadBinary() if you expect binary data to be received.)
You should not use this function when the TcpLink is in InternetLink.ReceiveMode = RMODE_Event
.
SendBinary
Sends the specified number of bytes from the provided buffer. (Like with ReadBinary(), the count is not checked, so make sure it never exceeds 255!)
SendText
Sends the specified string, assuming Windows-1252 encoding. That means if the string contains character codes greater than 255, those characters' high bytes will be lost!
Events
Accepted
This event is called on the AcceptClass instance spawned when a connection is accepted by a listening socket.
Closed
Called when a connection was closed.
Opened
Called when a connection was opened.
ReceivedBinary
Called in InternetLink.ReceiveMode = RMODE_Event
when the InternetLink.LinkMode is MODE_Binary
and new data was received.
ReceivedLine
Called in InternetLink.ReceiveMode = RMODE_Event
when the InternetLink.LinkMode is MODE_Line
and a new line was received. The end of the line type is defined by the InternetLink.LineMode property.
ReceivedText
Called in InternetLink.ReceiveMode = RMODE_Event
when the InternetLink.LinkMode is MODE_Text
and new data was received.