in reply to Re: Why my socket is not send and receive data???
in thread Why my socket is not send and receive data???

local $/; $/ = undef;

Have you had problems with local not undefining values? I think that second line is a no-op.

Replies are listed 'Best First'.
Re^3: Why my socket is not send and receive data???
by choocroot (Friar) on Aug 19, 2006 at 20:02 UTC
    No, but I'm used to always explicitly define the value of this variable when I want to change it's behaviour in a block.

    But you're right, my "$/ = undef" is redundant here.