NoMethodError: undefined method `recvfrom' for #<TCPSocket:0

NoMethodError: undefined method `recvfrom’ for #TCPSocket:0xd5e270

ok in ruby 1.8,

but get this error in jruby.

wtf!

Is jruby so ugly???

Lei K. wrote:

NoMethodError: undefined method `recvfrom’ for #TCPSocket:0xd5e270

ok in ruby 1.8,

but get this error in jruby.

wtf!

Is jruby so ugly???

I finally use recv instead of recvfrom…

Is there anybody can tell me why?

tell me why???..x.s…af

Hi Lei,

On Wed, Jun 30, 2010 at 6:54 AM, Lei K. [email protected] wrote:

NoMethodError: undefined method `recvfrom’ for #TCPSocket:0xd5e270

ok in ruby 1.8,

but get this error in jruby.

wtf!

Is jruby so ugly???

Hehehe, I’d like to have a T-shirt with this question! That would be
one awesome T-shirt!

As for the question, the reason why recvfrom is undefined is because
nobody requested it so far.
So, I’ve just implemented it in the JRuby master, for your coding
pleasure :slight_smile:

Thanks,
–Vladimir


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email

Vladimir S. wrote:

Hi Lei,

On Wed, Jun 30, 2010 at 6:54 AM, Lei K. [email protected] wrote:

NoMethodError: undefined method `recvfrom’ for #TCPSocket:0xd5e270

ok in ruby 1.8,

but get this error in jruby.

wtf!

Is jruby so ugly???

Hehehe, I’d like to have a T-shirt with this question! That would be
one awesome T-shirt!

As for the question, the reason why recvfrom is undefined is because
nobody requested it so far.
So, I’ve just implemented it in the JRuby master, for your coding
pleasure :slight_smile:

Thanks,
–Vladimir


To unsubscribe from this list, please visit:

http://xircles.codehaus.org/manage_email

It is an very very big honer to speak to the father of JRuby!

That shirt will sells good :wink:

I finally use recv instead of recvfrom, recv is worked well to :slight_smile: