Re: Socket programming: Command and Data socket
- From: Rainer Weikusat <rweikusat@xxxxxxxxxxx>
- Date: Fri, 23 Nov 2007 11:48:35 +0100
rsergeant <rsergeant@xxxxxxxxx> writes:
I am learning about socket programming from the books from Richard
Stevens. I just started, but browsing thru the books I didn't find an
example of how one could implement a program that uses two sockets for
communication (like for example the FTP command, which uses a data and
a command socket).
I am trying to write such a program myself, but I can't really get
around the design of the program. My questions is relatively simple (I
think). How would I go about setting up communication with two
sockets? I just need ideas on how to do this. I've been trying to get
this working for a long time, but I guess my design is wrong.
There are basically two options: Use a thread for each socket. Use an
I/O multiplexing routine to distribute I/O-tasks some number of threads
less than the number of sockets. The basic system calls for this would
be 'poll' and 'select'. 'poll' is easier to use and more efficient for
small sets of descriptors, 'select' is not the AT&T designed interface
(important quality :->), was a clever hack on VAXen when the running
kernel supported at most 32 open descriptors per process and is
portable to Windows.
I can get it to work in a none concurrent program, but I want to allow
multiple clients connecting from the same or different machines. The
program has to be some kind of FTP alike, but a lot simpler. The
clients asks for a list of files and the server returns this. The
clients asks for a specific file and the server returns this files in
blocks of 1024 bytes (The file is send over another port than the file
names).
The easiest way to do this is to fork a new process for each newly
accepted connection. This is not the most efficient way to implement
such a server, but completely appropriate for servers servicing
relatively few clients.
.
- Follow-Ups:
- Re: Socket programming: Command and Data socket
- From: rsergeant
- Re: Socket programming: Command and Data socket
- References:
- Socket programming: Command and Data socket
- From: rsergeant
- Socket programming: Command and Data socket
- Prev by Date: Socket programming: Command and Data socket
- Next by Date: Re: how to access the memory information using c++ on unix
- Previous by thread: Socket programming: Command and Data socket
- Next by thread: Re: Socket programming: Command and Data socket
- Index(es):
Relevant Pages
|