0
votes
1answer
79 views

Conventional way of accepting connections in a proactive web-server (using asynchronous IO)

I'm currently exploring the aio on linux to use it for implementing a web-server. As I have already discovered, there are not too many resources that cover in detail the usage of aio. The question is ...
1
vote
3answers
269 views

Socket programming - API doubt

There was this question posted in class today about API design in socket programming. Why are listen() and accept() provided as different functions and not merged into one function? Now as far as I ...
0
votes
3answers
942 views

what ip address does accept return

see the following code: accept(sockfd, (struct sockaddr*)&cliaddr, &slen); cout << inet_ntop(AF_INET, cliaddr.sin_addr, ipv4addr, 100); my client connects from localhost. i get an ...