mirror of https://github.com/BOINC/boinc.git
- SCR: Reimplement the screensaver rpc test for v6 so that the
screensaver can trip the firewall while the user is at the terminal. clientscr/ screensaver_win.cpp svn path=/trunk/boinc/; revision=14384
This commit is contained in:
parent
e681bfe362
commit
ca959f9849
|
@ -12227,6 +12227,26 @@ Rom 12 Dec 2007
|
|||
BOINCGUIApp.cpp
|
||||
MainDocument.cpp
|
||||
|
||||
Rom 13 Dec 2007
|
||||
- WINSETUP: Fix a couple permission problems when protected
|
||||
mode isn't defined.
|
||||
- WINSETUP: Streamline the CC startup procedure when
|
||||
the manager launches the CC.
|
||||
|
||||
clientgui/
|
||||
BOINCGUIApp.cpp
|
||||
win_build/installerv2/
|
||||
BOINC.ism
|
||||
win_build/installerv2/redist/Windows/src/boinccas/
|
||||
CACreateBOINCGroups.cpp
|
||||
win_build/installerv2/redist/Windows/Win32/
|
||||
boinccas.dll
|
||||
boinccas95.dll
|
||||
win_build/installerv2/redist/Windows/x64/
|
||||
boinccas.dll
|
||||
boinccas95.dll
|
||||
|
||||
|
||||
Charlie 14 Dec 07
|
||||
- MGR: Fix bug determining whether Client is already running; try
|
||||
rpc.get_host_info() in addition to rpc.init(). This takes the
|
||||
|
@ -12235,3 +12255,11 @@ Charlie 14 Dec 07
|
|||
|
||||
clientgui/
|
||||
BOINCGUIApp.cpp
|
||||
|
||||
Rom 14 Dec 07
|
||||
- SCR: Reimplement the screensaver rpc test for v6 so that the
|
||||
screensaver can trip the firewall while the user is at the
|
||||
terminal.
|
||||
|
||||
clientscr/
|
||||
screensaver_win.cpp
|
||||
|
|
|
@ -316,6 +316,12 @@ INT CScreensaver::Run() {
|
|||
DoConfig();
|
||||
}
|
||||
break;
|
||||
case sm_test:
|
||||
HOST_INFO hostinfo;
|
||||
rpc.init(NULL);
|
||||
rpc.get_host_info(hostinfo);
|
||||
rpc.close();
|
||||
break;
|
||||
case sm_preview:
|
||||
case sm_full:
|
||||
// Create the data management thread to talk with the daemon
|
||||
|
|
Loading…
Reference in New Issue