Re: My previous queries Re : Socket programming

2001-12-18 Thread Colin Watson
On Tue, Dec 18, 2001 at 09:20:06AM +0530, [EMAIL PROTECTED] wrote: > (rpm -e ipchains). [...] > 1) What tools (rpm-s) have to be installed on your box > so that socket programming does work ? Can you please, please, please find some appropriate list or newsgroup other than debian-user to ask your

My previous queries Re : Socket programming

2001-12-17 Thread shyamk
Dear members, I had written to the list weeks back on socket programming on Linux , and I had sent across , my TCPEchoserv.c and the TCPEchoclient.c Naren said that it worked for him , that makes me all the more desperate. I removed firewalls from my box , just in case that prevents sockets

Re: socket programming

2000-05-12 Thread Marek Habersack
** On May 12, Sean 'Shaleh' Perry scribbled: > >> a) read the telnetd / telnet source > >> b) look at how programs like login do it > >> > >> it boils down to you setting flags for the device. > > And for good socket tutorials, info etc. you can visit those two addresses: > > > > http://www.priv

Re: socket programming

2000-05-12 Thread Sean 'Shaleh' Perry
On 12-May-2000 Marek Habersack wrote: > ** On May 12, Sean 'Shaleh' Perry scribbled: >> >> On 12-May-2000 Brett Fowlkes wrote: >> > I am writing a server that accepts telnet connections. I am using basic >> > sockets to do so and do not use inetd. I cannot figure out how to disable >> > the echoi

Re: socket programming

2000-05-12 Thread Marek Habersack
** On May 12, Sean 'Shaleh' Perry scribbled: > > On 12-May-2000 Brett Fowlkes wrote: > > I am writing a server that accepts telnet connections. I am using basic > > sockets to do so and do not use inetd. I cannot figure out how to disable > > the echoing to screen for the password. I have tried ev

RE: socket programming

2000-05-12 Thread Sean 'Shaleh' Perry
On 12-May-2000 Brett Fowlkes wrote: > I am writing a server that accepts telnet connections. I am using basic > sockets to do so and do not use inetd. I cannot figure out how to disable > the echoing to screen for the password. I have tried everywhere else, this > is my last resort. > a) read th

RE: socket programming

2000-05-12 Thread Lewis, James M.
> I am writing a server that accepts telnet connections. I am using basic > sockets to do so and do not use inetd. I cannot figure out how to disable > the echoing to screen for the password. I have tried everywhere else, this > is my last resort. > > Brett > I'm not quite sure what you are doin

Re: socket programming

2000-05-12 Thread Philippe MICHEL
Hello, you should have a look to the Telnet RFC's : rfc-0854 for the telnet, and especialy 857 for the echo command. You can find much of these rfc at http://www.it.kth.se/docs/rfc/ Philippe. Brett Fowlkes wrote: > > I am writing a server that accepts telnet connections. I am using basic > so

Re: socket programming in c++

1999-06-02 Thread Allan M. Wind
On 1999-06-02 11:06, Jens B. Jorgensen wrote: > Why yes it does. If you'd like something a little more OOish check > out the ACE library (created by Doug Schmidt). Where to get it? > Can't think of it at the moment, but I think Doug did this at the > Univ. of Washington so maybe try there. The lib

Re: socket programming in c++

1999-06-02 Thread Jens B. Jorgensen
Why yes it does. If you'd like something a little more OOish check out the ACE library (created by Doug Schmidt). Where to get it? Can't think of it at the moment, but I think Doug did this at the Univ. of Washington so maybe try there. The library is supposed to be pretty good. I've never used

Re: socket programming in c++

1999-06-02 Thread Carl Mummert
You canuse the same libraries in C++ that you use in C, just like you can use the C stdlib functions in C++. If you look around, you can find classes that wrap the socket api into OO form. But these will call the C api themselves. Carl

Re: Socket programming

1998-12-17 Thread Bob Wilkinson
http://kipper.york.ac.uk/~vic/sock-faq/ Bob :wq - Original Message - From: Lazar Fleysher <[EMAIL PROTECTED]> To: Sent: Wednesday, December 16, 1998 8:11 PM Subject: Socket programming >HI Everyone, > >This is not a debian-specific question, but have no-one else to ask. I >have been pl

RE: Socket programming

1998-12-17 Thread Don MacDonald
** ABSOLUTELY ** Get that book! I have that book myself and it is INVALUABLE Sockets are covered but so are a myraid other U*NX networking issues. Highly recommended for anyone writing U*NX network code. "Unix Network Programming Volume 1" by Stevens is solid gold. Don. At 02:45 PM

RE: Socket programming

1998-12-16 Thread Shaleh
On 16-Dec-98 Lazar Fleysher wrote: > HI Everyone, > > This is not a debian-specific question, but have no-one else to ask. I > have been playing with sockets and can not seem to figure out how to use > select() system call. I am trying to monitor wether a socket is ready for > read and write. Rea