All, winter comes, plz keep warm and keep healthy. During the meditation about the work, I got some question about the function of fd dup2 . I create a socket server, and a client. the server send, the client receive data. But Now I want to dup2 the server socket fd to a file df in order to let the client read data directly from a file located in server. I write like

while(socketdf = accept(...))
{
 dup2(filefd , socketfd);
}

However, it doesnot work is this possible? Can you give me any advice on this? Thanx

link|improve this question

69% accept rate
Hi, all what if it is a shared memory fd, not a file fd? – Macroideal Nov 11 '11 at 7:53
feedback

1 Answer

dup2() doesn't work like that -- what you're ending up doing here is closing socketfd and replacing it with a copy of filefd.

There is no way to directly plug a socket into a file like what you're trying to do here -- you will need to "pump" data from the file to the socket in your application. The sendfile() system call will simplify things considerably, though.

link|improve this answer
Sorry, sendfile(2) only works when the in_fd parameter supports mmap(2)-like operations -- no sockets allowed. – sarnold Nov 11 '11 at 5:29
Correct -- and that condition is true here, as we're trying to read from a file, to a socket. (Hence "send file".) The opposite, writing from a socket to a file, would indeed not work. – duskwuff Nov 11 '11 at 5:30
Hrm, I interpreted the question the other way around -- I thought he wanted to let the server store data to a file that he could feed to clients at a later date. (By the way, cool dog graviwhatsit.) – sarnold Nov 11 '11 at 5:34
The critical wording I saw was "let the client read data directly from a file located in server". That part seems pretty unambiguous. – duskwuff Nov 11 '11 at 5:38
Hahaha, amazing, we both thought we had unambiguous interpretations that are polar opposites. I sure hope you're right, it'll be way easier for him if you are. :) – sarnold Nov 11 '11 at 5:42
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.