Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.dougwise.org!nntpfeed.proxad.net!proxad.net!feeder1-2.proxad.net!usenet-fr.net!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!talisker.lacave.net!lacave.net!not-for-mail From: 7stud -- Newsgroups: comp.lang.ruby Subject: Re: Ruby socket does not get reply Date: Sat, 14 May 2011 12:16:30 -0500 Organization: Service de news de lacave.net Lines: 20 Message-ID: References: <7b38b4a345bec72155b081e9245f6dc1@ruby-forum.com> <773171f75133a8aed0af80a33887ad43@ruby-forum.com> <40591443021fa4cb22bcd0feb32c6fe6@ruby-forum.com> NNTP-Posting-Host: bristol.highgroove.com Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: talisker.lacave.net 1305393417 11789 65.111.164.187 (14 May 2011 17:16:57 GMT) X-Complaints-To: abuse@lacave.net NNTP-Posting-Date: Sat, 14 May 2011 17:16:57 +0000 (UTC) In-Reply-To: X-Received-From: This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway X-Mail-Count: 383253 X-Ml-Name: ruby-talk X-Rubymirror: Yes X-Ruby-Talk: Xref: x330-a1.tempe.blueboxinc.net comp.lang.ruby:4541 Robert Garrido wrote in post #998661: > This is the fix: > > socket.write("HELO " + session + "\r\n") > > Thanks :D Just be aware that ruby is going to convert a "\n" to "\r\n" on windows, so on windows you will actually be wrting: "\r\n" = "\r" + "\n" = "\r" + "\r\n" = "\r\r\n" That may or may not make a difference to a particular program. -- Posted via http://www.ruby-forum.com/.