| New Reply |
[C] How do I read a whole line from a client? |
Share Thread |
| Aug4-12, 03:17 PM | #1 |
|
|
[C] How do I read a whole line from a client?
Hi I'm trying to write a server that will ask for a client's name when they connect then store that name as a string with the client struct. I got everything set up but when the client types one letter it is immediately processed without waiting for a new line input. How can I make it wait for a new line and store all characters of the name in the buffer before processing?
Basically the server needs to work in noncanonical mode while able to process a whole string |
| Aug4-12, 10:41 PM | #2 |
|
|
Hey zeion.
The suggestion I have is to use data structures for packets where the structure itself has a length parameter within the header (which is sent first). Then what you do is that as you receive more data, you basically check after you have acknowledged that you have a valid header, that you have the number of bytes that are specified in that header. If you have the number of bytes specified in the header then you take all this data and store it somewhere as a complete packet to be processed. What you can do with this model is that you have multiple packet types and each packet can have a call-back routine that handles an event of getting a packet. You can associate packets with sessions and then when you get the data for a session, the session will update its status. If you want to wait until you get the full name, you can basically use a mutex associated with the session and when the callback is called for the client name packet for that session, the mutex is changed in state and you can grab the client name from the appropriate data structure. You can also in the mutex loop, put a timeout value that is checked periodically. The reason why you would use callbacks for every kind of packet is because you can add as many network protocols as you want, and the mechanism to handle all of these is streamlined which means adding new packet types is really really simple. |
| Aug5-12, 06:41 AM | #3 |
|
Recognitions:
|
If you have Visual Studio version of C, you can use _cgetws(), which is a unicode version of _cgets() (_cgets() has been broken in Visual Studio for a long time, but _cgetws() should work). You'll need to include <conio.h> to use it.
|
| New Reply |
Similar discussions for: [C] How do I read a whole line from a client?
|
||||
| Thread | Forum | Replies | ||
| How do I read a whole line in C? | Programming & Comp Sci | 1 | ||
| Fortran: Read data from a line in a file | Programming & Comp Sci | 1 | ||
| How to read this file line by line and store contents in an array | Engineering, Comp Sci, & Technology Homework | 2 | ||
| How to read always from the first line when using READ in a loop? | Programming & Comp Sci | 1 | ||
| Which Kurt Vonnegut books to read next? Or should I read Catch 22 instead? | General Discussion | 10 | ||