![]() |
|
TCP/IP Socket Programming - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Extensions (https://litdev.uk/mybb/forumdisplay.php?fid=3) +--- Thread: TCP/IP Socket Programming (/showthread.php?tid=424) |
RE: TCP/IP Socket Programming - Juergen - 09-27-2025 Hello, I have a problem with the LDClient.SendMessage() Routine. The last sign that is send by that routine is a 00 that is not part of the String i want to send. This causes a problem at the server side, the server can not handle the next message anymore. RE: TCP/IP Socket Programming - litdev - 09-27-2025 Hi Juergen, The first thing to try is to set LDClient.AddNull property to "False" before sending the message. This should prevent the terminating NULL \0 from being appended to the message. This terminating NULL is used with the auto communication with LDServer, but in your case not needed I think. RE: TCP/IP Socket Programming - Juergen - 09-27-2025 Sounds perfect, but i can not compile this , I get the Message see below..... Seems that this flag is not Part of my LDClient Library Is there a newer library ? RE: TCP/IP Socket Programming - litdev - 09-27-2025 Hi, Yes it was introduced in version 1.2.30.8 sometime in August I think, I think I was prempting this possibility from one of your earlier posts.You can get this beta release using Extension manger with SB-Prime or directly as a download from https://litdev.uk/#Extensions (Beta download). |