Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 00030 00031 00032 00033 00034 00035 00036 00037 00038 00039 00040 00041 00042 00043 00044 00045 00046 00047 00048 00049 00050 00051 00052 00053 00054 00055 00056 00057 00058 00059 |
//============================================================================= // UdpLink: An Internet UDP connectionless socket. //============================================================================= class UdpLink extends InternetLink native transient; // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) // (cpptext) //----------------------------------------------------------------------------- // Variables. var() const int BroadcastAddr; var const string RecvBuf; // Recveive buffer (only used with MODE_Line) //----------------------------------------------------------------------------- // Natives. // BindPort: Binds a free port or optional port specified in argument one. native function int BindPort( optional int Port, optional bool bUseNextAvailable ); // SendText: Sends text string. // Appends a cr/lf if LinkMode=MODE_Line . native function bool SendText( IpAddr Addr, coerce string Str ); // SendBinary: Send data as a byte array. native function bool SendBinary( IpAddr Addr, int Count, byte B[255] ); // ReadText: Reads text string. // Returns number of bytes read. native function int ReadText( out IpAddr Addr, out string Str ); // ReadBinary: Read data as a byte array. native function int ReadBinary( out IpAddr Addr, int Count, out byte B[255] ); //----------------------------------------------------------------------------- // Events. // ReceivedText: Called when data is received and connection mode is MODE_Text. event ReceivedText( IpAddr Addr, string Text ); // ReceivedLine: Called when data is received and connection mode is MODE_Line. event ReceivedLine( IpAddr Addr, string Line ); // ReceivedBinary: Called when data is received and connection mode is MODE_Binary. event ReceivedBinary( IpAddr Addr, int Count, byte B[255] ); defaultproperties { BroadcastAddr=-1 bAlwaysTick=Wahr } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |