
* Cleaned up the postinstall/startup scripts a bit more to handle winME, and added windows info to the headless docs. (thanks ardvark!) * Fixed a harmless (yet NPE inspiring) race during the final shutdown of a stream (thanks frosk!) * Add a pair of new stats for monitoring tunnel participation - tunnel.participatingBytesProcessed (total # bytes transferred) and tunnel.participatingBytesProcessedActive (total # bytes transferred for tunnels whose byte count exceed the 10m average). This should help further monitor congestion issues. * Made the NamingService factory property public (thanks susi!)
16 lines
279 B
Batchfile
16 lines
279 B
Batchfile
@echo off
|
|
setlocal
|
|
set INSTALL_PATH="%1"
|
|
|
|
rem
|
|
rem Java Service Wrapper general startup script
|
|
rem
|
|
|
|
set _WRAPPER_EXE=%INSTALL_PATH%I2Psvc.exe
|
|
set _WRAPPER_CONF="%INSTALL_PATH%wrapper.config"
|
|
|
|
"%_WRAPPER_EXE%" -c %_WRAPPER_CONF%
|
|
if not errorlevel 1 goto :eof
|
|
pause
|
|
|