Go to the first, previous, next, last section, table of contents.


isdSend

int isdSend(SOCKET socket, char *message, int len, isdHeader *header)

Use isdsend() to send requests to workers. socket is the socket value returned from isdLogin(). message is the pointer to the beginning of the buffer to send to the worker. len is the byte length of message. Setting len to -1 translates into len = strlen(message), which is convenient for as often as strings are sent.

header is a pointer to an isdHeader.


Go to the first, previous, next, last section, table of contents.