Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Read Socket data on data, not return

by steves (Curate)
on Dec 22, 2004 at 09:40 UTC ( [id://416730]=note: print w/replies, xml ) Need Help??


in reply to Read Socket data on data, not return

It seems more likely that the server you're connecting to is not actually sending the data until a carriage return is issued there. In other words, no matter how your client tries to read the data, it can only get anything if the server has actually written a packet to the socket. Depending on how the socket is being used in the server, the data may be buffered and may not actually be written to the underlying socket until a carriage return is issued.

Can you post some example server code?

  • Comment on Re: Read Socket data on data, not return

Replies are listed 'Best First'.
Re^2: Read Socket data on data, not return
by ecuguru (Monk) on Dec 23, 2004 at 02:40 UTC
    The entire server working code is in the first link: here
    I'm only using telnet as the client, which is sending in every character.
    client = telnet localhost 2323

    thanks!!

      Does your local telnet client tell you it's operating in character and not line mode? telnet can operate in either. I find that when I connect to non-telnet servers, my telnet client is in line mode, which would explain why your server is "waiting" for newlines -- it's actually only seeing full lines from the client, not characters. To see your telnet client's current mode, escape into telnet command mode and issue the status command.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://416730]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (6)
As of 2024-04-20 00:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found