in reply to Re^2: Telnet session disconnect testing
in thread Telnet session disconnect testing

Not quite sure I understand your comment regarding the subroutines

Usually, you define your functions once, and rarely put them inside the loops (unless there's some tricky busines going on - like constantly defining new subroutines for some specific tasks). Nevertheless, if it's okay with you, and the program works as expected, then there's no problem. Although it's better for readabilly, maintenance, logic of the program, easier debugging, to do otherwise.

  • Comment on Re^3: Telnet session disconnect testing

Replies are listed 'Best First'.
Re^4: Telnet session disconnect testing
by bajangerry (Sexton) on Jan 15, 2010 at 17:21 UTC

    Ok I see what you mean now, the for loop needs to be closed after the while loop closes.

    Made the change and everything works as before... not sure if this will resolved the problem with the link drop/reconnect issue though.