1. TCP/IP?
- Posted by Colin Bayer <colin_bayer at compnerd.net> Mar 26, 2001
- 438 views
I currently develop software off of my home Linux box. Therein lies my problem. As far as I know, there are no good Winsock-like (by Winsock-like, I mean that they support multiple sockets, background monitoring, and free-form packet sending (i.e. not just HTTP, FTP, etc.), and in addition, require no machine-level programming) TCP/IP Euphoria libraries for Linux, and I don't want to hack it with some C: that's the reason why I started using Euphoria in the first place. Anybody know if there are any decent libraries that would provide this type of functionality? -- "God is dead." -- Nietzsche Colin Bayer colin underline bayer at excite dot com
2. Re: TCP/IP?
- Posted by Ted Fines <fines at macalester.edu> Mar 26, 2001
- 456 views
Here's an idea--one that I've meant to when I have all that time I keep thinking I'm going to have... I'd go to <http://www.cpan.org> to see how people have implementedwhat you're looking for on Linux in Perl. Perl is pretty easy to pick up. I'm guessing someone has just wrapped some C functions in Perl. It shouldn't be too hard to translate them to Euphoria. Should be easier than starting from scratch. Hey, if you (or anyone else out there) starts doing this, let me know and I'll pitch in. -Ted --On Monday, March 26, 2001 2:03 PM -0800 Colin Bayer <colin_bayer at compnerd.net> wrote: > > > I currently develop software off of my home Linux box. Therein lies my > problem. As far as I know, there are no good Winsock-like (by > Winsock-like, I mean that they support multiple sockets, background > monitoring, and free-form packet sending (i.e. not just HTTP, FTP, > etc.), and in addition, require no machine-level programming) TCP/IP > Euphoria libraries for Linux, and I don't want to hack it with some C: > that's the reason why I started using Euphoria in the first place. > Anybody know if there are any decent libraries that would provide this > type of functionality? > > -- > > "God is dead." -- Nietzsche > > Colin Bayer > colin underline bayer at excite dot com > > >
3. Re: TCP/IP?
- Posted by Jeffrey Fielding <JJProg at cyberbury.net> Mar 26, 2001
- 460 views
I'm amazed that (as far as I know) there isn't a cross-platform TCP/IP library yet considering the similarities between winsock and the UNIX socket routines... maybe I'll write one if/when I have some free time. Anyway, there are some Linux programs in the archives that use sockets... you mught be able to put together a simple library from those. I don't know perl very well, but I would think that it would be easier to wrap the socket routines directly from C to Euphoria, if you can't find what you need in the existing demo programs. Jeff Fielding ----- Original Message ----- From: "Ted Fines" <fines at macalester.edu> To: "EUforum" <EUforum at topica.com> Sent: Monday, March 26, 2001 5:30 PM Subject: Re: TCP/IP? > > > Here's an idea--one that I've meant to when I have all that time I keep > thinking I'm going to have... > > I'd go to <http://www.cpan.org> to see how people have implementedwhat > you're looking for on Linux in Perl. Perl is pretty easy to pick up. I'm > guessing someone has just wrapped some C functions in Perl. It shouldn't > be too hard to translate them to Euphoria. Should be easier than starting > from scratch. > > Hey, if you (or anyone else out there) starts doing this, let me know and > I'll pitch in. > > -Ted > > --On Monday, March 26, 2001 2:03 PM -0800 Colin Bayer > <colin_bayer at compnerd.net> wrote: > > > > > > > I currently develop software off of my home Linux box. Therein lies my > > problem. As far as I know, there are no good Winsock-like (by > > Winsock-like, I mean that they support multiple sockets, background > > monitoring, and free-form packet sending (i.e. not just HTTP, FTP, > > etc.), and in addition, require no machine-level programming) TCP/IP > > Euphoria libraries for Linux, and I don't want to hack it with some C: > > that's the reason why I started using Euphoria in the first place. > > Anybody know if there are any decent libraries that would provide this > > type of functionality? > > > > -- > > > > "God is dead." -- Nietzsche > > > > Colin Bayer > > colin underline bayer at excite dot com > > > > > > > > > > > > >
4. Re: TCP/IP?
- Posted by Ray Smith <smithr at ix.net.au> Mar 27, 2001
- 455 views
I did have a pre-built tcp4u.so file somewhere. If your intersted I can try and remember where I saved it and pass it on. Ray Smith > Yeh, I know. I got the euTcp4u wrapper, but couldn't manage to compile > TCP4U, which I also downloaded, into a .so (shared library) file, the > type which Euphoria can use. Oh well... 8-|