Changeset 488
- Timestamp:
- 08/12/08 09:45:28 (5 months ago)
- Location:
- trunk/daemon
- Files:
-
- 3 modified
-
orbited-debug.cfg (modified) (1 diff)
-
orbited/config.py (modified) (1 diff)
-
orbited/static/Orbited.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/daemon/orbited-debug.cfg
r487 r488 2 2 reactor=epoll 3 3 proxy.enabled=1 4 session.ping_interval = 55 session.ping_timeout = 54 session.ping_interval = 2 5 session.ping_timeout = 2 6 6 7 7 [listen] -
trunk/daemon/orbited/config.py
r487 r488 110 110 source, dest = line.split('->') 111 111 source, dest = source.strip(), dest.strip() 112 print 'dest is', dest113 print 'source is', source114 112 if ':' in dest: 115 113 daddr, dport = dest.split(':', 1) -
trunk/daemon/orbited/static/Orbited.js
r487 r488 1741 1741 restartTimeout*=2; 1742 1742 ifr.src = restartUrl; 1743 varrestartTimer = window.setTimeout(reconnect, restartTimeout)1743 restartTimer = window.setTimeout(reconnect, restartTimeout) 1744 1744 } 1745 1745 … … 1770 1770 return 1771 1771 } 1772 ;;; self.logger.debug('close called, clearing timer'); 1773 window.clearTimeout(restartTimer); 1772 1774 self.readyState = 2 1773 1775 ifr.src = 'about:blank'