I search for solutions in this order: Past Code, Unreal Source, Wiki, BUF, groups.yahoo, google, screaming at monitor. – RegularX

Difference between revisions of "UE3:TcpLink (UT3)"

From Unreal Wiki, The Unreal Engine Documentation Site
Jump to: navigation, search
(Auto-generated page)
 
(Replaced content with '{{UE2:TcpLink (UT2004)}}')
 
Line 1: Line 1:
{{infobox class
+
{{UE2:TcpLink (UT2004)}}
| package = UWeb
+
| parent1 = InternetLink
+
| parent2 = InternetInfo
+
| parent3 = Info
+
| parent4 = Actor
+
| parent5 = Object
+
}}
+
{{autogenerated}}
+
TcpLink: An Internet TCP/IP connection.
+
Ported to UE3 by Josh Markiewicz
+
© 1997-2008 Epic Games, Inc. All Rights Reserved
+
 
+
==Properties==
+
====AcceptClass====
+
'''Type:''' [[class]]<{{cl|TcpLink}}>
+
 
+
<!-- enter variable description -->
+
 
+
====LinkState====
+
'''Type:''' {{tl|ELinkState}}
+
 
+
<!-- enter variable description -->
+
 
+
====RecvBuf====
+
'''Type:''' [[string]]
+
 
+
'''[[Variables#Modifiers|Modifiers]]:''' const
+
 
+
<!-- enter variable description -->
+
 
+
====RemoteAddr====
+
'''Type:''' {{tl|IpAddr|InternetLink}}
+
 
+
<!-- enter variable description -->
+
 
+
====SendFIFO====
+
'''Type:''' [[array]]<[[byte]]>
+
 
+
'''[[Variables#Modifiers|Modifiers]]:''' const
+
 
+
send fifo
+
 
+
===Default values===
+
{| class="list defaults"
+
! Property
+
! Value
+
|-
+
| {{tl|bAlwaysTick||Actor internal variables}}
+
| True
+
|}
+
 
+
===Subobjects===
+
====Sprite====
+
'''Class:''' {{cl|SpriteComponent|Engine}}
+
 
+
'''Inherits from:''' {{tl|Sprite|InternetLink}}
+
 
+
''No new values.''
+
 
+
==Enums==
+
====ELinkState====
+
<!-- enter enum description -->
+
; STATE_Initialized : Sockets is initialized
+
; STATE_Ready : Port bound, ready for activity
+
; STATE_Listening : Listening for connections
+
; STATE_Connecting : Attempting to connect
+
; STATE_Connected : Open and connected
+
; STATE_ListenClosePending : Socket in process of closing
+
; STATE_ConnectClosePending : Socket in process of closing
+
; STATE_ListenClosing : Socket in process of closing
+
; STATE_ConnectClosing : Socket in process of closing
+
 
+
==Functions==
+
===Native functions===
+
====BindPort====
+
{{code|native function [[int]]&nbsp;'''BindPort''' (optional&nbsp;[[int]]&nbsp;'''PortNum''', optional&nbsp;[[bool]]&nbsp;'''bUseNextAvailable''')}}
+
 
+
<!-- enter function description -->
+
 
+
====Close====
+
{{code|native function [[bool]]&nbsp;'''Close''' ()}}
+
 
+
<!-- enter function description -->
+
 
+
====IsConnected====
+
{{code|native function [[bool]]&nbsp;'''IsConnected''' ()}}
+
 
+
<!-- enter function description -->
+
 
+
====Listen====
+
{{code|native function [[bool]]&nbsp;'''Listen''' ()}}
+
 
+
<!-- enter function description -->
+
 
+
====Open====
+
{{code|native function [[bool]]&nbsp;'''Open''' ({{tl|IpAddr|InternetLink}}&nbsp;'''Addr''')}}
+
 
+
<!-- enter function description -->
+
 
+
====ReadBinary====
+
{{code|native function [[int]]&nbsp;'''ReadBinary''' ([[int]]&nbsp;'''Count''', out&nbsp;[[byte]]&nbsp;'''B'''[255])}}
+
 
+
<!-- enter function description -->
+
 
+
====ReadText====
+
{{code|native function [[int]]&nbsp;'''ReadText''' (out&nbsp;[[string]]&nbsp;'''Str''')}}
+
 
+
<!-- enter function description -->
+
 
+
====SendBinary====
+
{{code|native function [[int]]&nbsp;'''SendBinary''' ([[int]]&nbsp;'''Count''', [[byte]]&nbsp;'''B'''[255])}}
+
 
+
<!-- enter function description -->
+
 
+
====SendText====
+
{{code|native function [[int]]&nbsp;'''SendText''' (coerce&nbsp;[[string]]&nbsp;'''Str''')}}
+
 
+
<!-- enter function description -->
+
 
+
===Events===
+
====Accepted====
+
{{code|event '''Accepted''' ()}}
+
 
+
<!-- enter event description -->
+
 
+
====Closed====
+
{{code|event '''Closed''' ()}}
+
 
+
<!-- enter event description -->
+
 
+
====Opened====
+
{{code|event '''Opened''' ()}}
+
 
+
<!-- enter event description -->
+
 
+
====ReceivedBinary====
+
{{code|event '''ReceivedBinary''' ([[int]]&nbsp;'''Count''', [[byte]]&nbsp;'''B'''[255])}}
+
 
+
<!-- enter event description -->
+
 
+
====ReceivedLine====
+
{{code|event '''ReceivedLine''' ([[string]]&nbsp;'''Line''')}}
+
 
+
<!-- enter event description -->
+
 
+
====ReceivedText====
+
{{code|event '''ReceivedText''' ([[string]]&nbsp;'''Text''')}}
+
 
+
<!-- enter event description -->
+

Latest revision as of 07:29, 27 April 2014

UT3 Object >> Actor >> Info >> InternetInfo >> InternetLink >> TcpLink
Package: 
UWeb
Direct subclasses:
WebConnection, WebServer
This class in other games:
RTNP, UT, U1, UE2Runtime, UT2003, U2, U2XMP, UT2004, UDK

TcpLink: An Internet TCP/IP connection.

See the parent class InternetLink for additional members required to use this class.

Properties[edit]

AcceptClass[edit]

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[edit]

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[edit]

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[edit]

Type: array<byte>

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[edit]

Property Value
bAlwaysTick True

Subobjects

Sprite

Class: Engine.SpriteComponent

Inherits from: InternetLink.Sprite

No new values.

Enums[edit]

ELinkState[edit]

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[edit]

Native functions[edit]

BindPort[edit]

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 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[edit]

native function bool Close ()

Closes a connection or stops listening for connections.

IsConnected[edit]

native function bool IsConnected ()

Returns whether the TCP socket is currently connected.

Listen[edit]

native function bool Listen ()

Starts listening for incoming connection attempts on the previously bound port.

Open[edit]

native function bool Open (InternetLink.IpAddr Addr)

Opens a connection to the specifies remote IP address and TCP port using the previously bound port as local port.

ReadBinary[edit]

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 InternetLink.ReceiveMode = RMODE_Event.

ReadText[edit]

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 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[edit]

native function int SendBinary (int Count, byte B[255])

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[edit]

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[edit]

Accepted[edit]

event Accepted ()

This event is called on the AcceptClass instance spawned when a connection is accepted by a listening socket.

Closed[edit]

event Closed ()

Called when a connection was closed.

Opened[edit]

event Opened ()

Called when a connection was opened.

ReceivedBinary[edit]

event ReceivedBinary (int Count, byte B[255])

Called in InternetLink.ReceiveMode = RMODE_Event when the InternetLink.LinkMode is MODE_Binary and new data was received.

ReceivedLine[edit]

event ReceivedLine (string Line)

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.InLineMode property.

ReceivedText[edit]

event ReceivedText (string Text)

Called in InternetLink.ReceiveMode = RMODE_Event when the InternetLink.LinkMode is MODE_Text and new data was received.