Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2174


Ignore:
Timestamp:
Nov 10, 2008, 10:13:58 PM (15 years ago)
Author:
landauf
Message:

changed tcl server script:

  • client logout with "quit" or "logout"
  • server shutdown with "exit"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy2/bin/telnet_server.tcl

    r1505 r2174  
    8181         return
    8282     }
    83      if {[string equal $line "quit"] || [string equal $line "exit"]} {
     83     if {[string equal $line "logout"] || [string equal $line "quit"]} {
    8484         disconnect $client
     85         return
     86     }
     87     if {[string equal $line "exit"]} {
     88         set ::termination 1
    8589         return
    8690     }
Note: See TracChangeset for help on using the changeset viewer.