Represents a single socket connection to a client IP address.

If a Netsocket is running in server mode then it will create a new ClientSocket object every time that a new connection is opened by a client. This is a very simple class that assists in the management of I/O between the client and server.

Structure

The ClientSocket class consists of the following fields:

Access
NameTypeComment
  Clientstruct NetClient *Parent client structure
  ClientDataAPTRFree for user data storage.
  ConnectTimeBIGINTSystem time for the creation of this socket
  IncomingFUNCTIONCallback for data being received from the socket
  MsgLenINTLength of the current incoming message
  Next*ClientSocketNext socket in the chain
  OutgoingFUNCTIONCallback for data being sent over the socket
  Prev*ClientSocketPrevious socket in the chain
  ReadCalledINTTRUE if the Read action has been called

Actions

The following actions are currently supported:

ReadRead incoming data from a client socket.
ERR acRead(*Object, APTR Buffer, LONG Length, LONG *Result)
ParameterDescription
BufferPoints a buffer that will receive the data.
LengthThe total number of bytes to read from the object. This value cannot exceed the size of the Buffer.
ResultThe Read action will write this parameter with the total number of bytes read into the Buffer.

The Read() action will read incoming data from the socket and write it to the provided buffer. If the socket connection is safe, success will always be returned by this action regardless of whether or not data was available. Almost all other return codes indicate permanent failure, and the socket connection will be closed when the action returns.

Error Codes
OkayRead successful (if no data was on the socket, success is still indicated).
FailedA permanent failure has occurred and socket has been closed.
DisconnectedThe socket connection is closed.
NullArgsFunction call missing argument value(s)
WriteWrites data to the socket.
ERR acWrite(*Object, APTR Buffer, LONG Length, LONG Result)
ParameterDescription
BufferA buffer containing the data that will be written to the object.
LengthThe total number of bytes to write to the object.
ResultThis parameter with be updated with the total number of bytes written from the Buffer.

Write raw data to a client socket with this action. Write connections are buffered, so any data overflow generated in a call to this action will be buffered into a software queue. Resource limits placed on the software queue are governed by the NetSocket⇒MsgLimit value.

Methods

The following methods are currently supported:

ReadClientMsgRead a message from the socket.
ERR cs::ReadClientMsg(OBJECTPTR Object, APTR * Message, LONG * Length, LONG * Progress, LONG * CRC)
ParameterDescription
MessageA pointer to the message buffer will be placed here if a message has been received.
LengthThe length of the message is returned here.
ProgressThe number of bytes that have been read for the incoming message.
CRCIndicates the CRC value that the message is expected to match.

This method reads messages that have been sent to the socket using Parasol Message Protocols. Any message sent with the WriteClientMsg() method will conform to this protocol, thus simplifying message transfers between programs based on the core platform at either point of the network link.

This method never returns a successful error code unless an entire message has been received from the sender.

Error Codes
OkayA complete message has been read and indicated in the result parameters.
BadDataThe message header or tail was invalid, or the message length exceeded internally imposed limits.
LimitedSuccessSome data has arrived, but the entire message is incomplete. The length of the incoming message may be indicated in the Length parameter.
ArgsInvalid arguments passed to function.
NoDataNo new data was found for the socket.
AllocMemoryA message buffer could not be allocated.
NullArgsFunction call missing argument value(s)
WriteClientMsgWrites a message to the socket.
ERR cs::WriteClientMsg(OBJECTPTR Object, APTR Message, LONG Length)
ParameterDescription
MessagePointer to the message to send.
LengthThe length of the Message.

Messages can be written to sockets with the WriteClientMsg method and read back by the receiver with ReadClientMsg(). The message data is sent through the Write() action, so the standard process will apply (the message will be queued and does not block if buffers are full).

Error Codes
OkayOperation successful.
ArgsInvalid arguments passed to function.
OutOfRangeA specified number is outside of the valid range.