Версия для печати темы
Нажмите сюда для просмотра этой темы в оригинальном формате |
Форум программистов > C++ Builder > Using TCP/IP Sockets in Borland |
Автор: StrikeTheCore 22.6.2006, 15:29 |
Hey, Quick qestion about converting the default server socket component in Borland C++ Builder 6 into using TCP rather than UDP. It appears that UDP is being used and occassionally packets are recieved out of order so I would prefer that TCP was used instead. Is there any way to easily do this without using a custom component or the Windows API? Thanks, Brian |
Автор: Artemon 22.6.2006, 21:04 |
If the applications are on one computer - use WM_COPY_DATA. Differently can use INDY components. |
Автор: StrikeTheCore 26.6.2006, 15:59 |
Thanks a lot. The Indy components look like they will do exactly what I want. -Brian |