Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8752557
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:15:34+00:00 2026-06-13T13:15:34+00:00

I am making a Chat server and client using tcp/ip in c. I made

  • 0

I am making a Chat server and client using tcp/ip in c. I made the server part which threads multiple clients. On client side I have a while loop that can send a line and then wait for the server reply. I want to make client poll both send and recv functions to check if the another client has sent something. This is what I have –

while (1){
    char buffer[BUFLEN];
    memset(buffer, 0, sizeof buffer);
    gets(buffer);
    //sendall(sd, buffer, BUFLEN);
    send(sd, buffer, BUFLEN, 0);
    printf("sent:%s\n",buffer);
    //recvline(sd, buffer, BUFLEN);
    recv(sd, buffer, BUFLEN, 0);
    printf("recieved:%s\n", buffer);
}

How do I poll both send() and recv() at the same time and execute the one that comes first??

Want to do something like this..

if(send(sd, buffer, BUFLEN, 0) == true)
   send something
else if(recv(sd, buffer, BUFLEN, 0) == true)
   receive something
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T13:15:35+00:00Added an answer on June 13, 2026 at 1:15 pm

    I believe you’re looking for something like select (MSDN Page, man page).

    The basics of using it are as follows:

    • Load up fd_set structs with the socket handles you want to check. Load one fd_set with sockets you want to check for new data to receive, one with sockets you want to send on, and optionally, one with sockets you want to check for errors.

    • Call select, passing it pointers to your fd_set structs.

    • When select returns, the set you passed as the second parameter (readfds) only contains the sockets you passed it which have data waiting. You can call recv on them and it will return immediately. The set you passed as the third parameter (writefds) contains sockets which are ready for writing. You can call send on them and it will return immediately.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making an application server client using tcp sockets in c# .. The application
I am making a chat room using simple socket-socket connections. I have a server
I am making a chat client that receives structs of info from the server
I'm making a server with Java that will provide chat services for flash clients.
im making a Server-Client application.. chat sends commands file-transfer i was wondering if it
I'm making a simple client server chat application. I want to be able to
I am making a TCP chat server from a simple tutorial I found and
I am making a chat application in android using TCP and has immplemented Sockets.
May i achieve that server side application (using android bluetooth API)connect to particular client
I'm trying to implement a small chat server-client pair in Python. I have already

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.