DataFlex
DataFlex
Send a 32-bit Integer over a Socket
See more Socket/SSL/TLS Examples
Demonstrates Socket.SendInt32, which sends a value as a four-byte signed integer in the selected byte order.
Background. Fixed-size integers and length prefixes are common building blocks for application-defined binary protocols. Byte order is selectable, with big-endian being network byte order.
Chilkat DataFlex Downloads
Use ChilkatAx-win32.pkg
Procedure Test
Boolean iSuccess
Handle hoSocket
Boolean iBTls
Integer iMaxWaitMs
Boolean iBBigEndian
String sTemp1
Move False To iSuccess
Get Create (RefClass(cComChilkatSocket)) To hoSocket
If (Not(IsComObjectCreated(hoSocket))) Begin
Send CreateComObject of hoSocket
End
// Connect to the server using TLS.
Move True To iBTls
Move 5000 To iMaxWaitMs
Get ComConnect Of hoSocket "example.com" 5000 iBTls iMaxWaitMs To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSocket To sTemp1
Showln sTemp1
Procedure_Return
End
// Send the value as a four-byte signed integer. Use True for network byte order (big-endian) or
// False for little-endian.
Move True To iBBigEndian
Get ComSendInt32 Of hoSocket 1000000 iBBigEndian To iSuccess
If (iSuccess = False) Begin
Get ComLastErrorText Of hoSocket To sTemp1
Showln sTemp1
Procedure_Return
End
Showln "32-bit integer sent."
End_Procedure