[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [rtl] Programming sockets in RTL?
On Wed, Aug 02, 2000 at 08:44:30PM -0400, Tony Mouawad wrote:
> Is it possible to integrate a TCP/IP based server in an RTL module? I'm
> not sure how to do this using the RTL libraries.
No. You can use a user-space helper task that acts as your server,
which is probably the best solution if you don't need hard-real-time
operation from your server. (Not likely.)
If you actually need real-time networking, you can use RTnet, although
it doesn't work with TCP. Only UDP. (ftp://ftp.lineoisg.com/pub/rtnet)
dave...