Skip to content

Commit 4f27f65

Browse files
committed
More updates to READMEs and remove debug messages
1 parent e714f5d commit 4f27f65

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ of the available [DNS Privacy servers](https://dnsprivacy.org/wiki/x/E4AT)
1313

1414
Stubby is developed by the getdns team.
1515

16+
Stubby can be used as a command line tool requiring the user to manually modify the system DNS resolvers. A development version of a Stubby Manager GUI is also available for Windows, see [Stubby Mananger GUI](https://dnsprivacy.org/wiki/display/DP/Stubby+Manager+GUI).
17+
1618
# Documentation
1719

1820
See [Stubby Homepage](https://dnsprivacy.org/wiki/x/JYAT) for more details
@@ -30,7 +32,7 @@ https://repology.org/metapackage/stubby/versions
3032
https://repology.org/metapackage/getdns/versions
3133
https://repology.org/metapackage/libyaml/versions
3234

33-
* A [Windows Installer](https://dnsprivacy.org/wiki/x/CoBn) is now available for Stubby.
35+
* A [Windows Installer](https://dnsprivacy.org/wiki/x/CoBn) is now available for Stubby. From version 0.4.0 the msi installer includes a development version of a Windowd GUI.
3436
* A Homebrew package for stubby is now available (`brew install stubby`).
3537
* A [GUI for macOS](https://dnsprivacy.org/wiki/x/CIBn) is also available for testing
3638

@@ -182,7 +184,7 @@ You can add /usr/local/sbin to your path to avoid having to type it above by doi
182184
export PATH=/usr/local/sbin:$PATH
183185
```
184186

185-
Or via the GUI:
187+
Or via the macOs System Settings GUI:
186188

187189
* Open *System Preferences → Network → Advanced → DNS*
188190
* Use the '-' button to remove the existing nameservers

src/windows/service.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,6 @@ static void set_startup(DWORD start_type) {
606606

607607
SC_HANDLE schSCManager;
608608
SC_HANDLE schService;
609-
stubby_debug("set_startup");
610609

611610
schSCManager = OpenSCManager(
612611
NULL, // local computer
@@ -643,7 +642,7 @@ static void set_startup(DWORD start_type) {
643642
{
644643
stubby_debug("ChangeServiceConfig failed (%d)\n", GetLastError());
645644
}
646-
else stubby_debug("Service start type changed successfully.\n");
645+
//else stubby_debug("Service start type changed successfully.\n");
647646
}
648647

649648
VOID WINAPI SvcMain(DWORD dwArgc, LPTSTR *lpszArgv)

windows/README.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ welcomed via github!
77
https://github.com/getdnsapi/stubby
88

99
A development version of a Windows GUI for Stubby is also available, see
10-
https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby
10+
https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby. Note that this
11+
manages Stubby running as a Windows service. To avoid conflicts with existing installs
12+
the Stubby Manager GUI will write its default configuration to
13+
14+
C:\Program Files\Stubby\stubbyservice.yml
1115

1216
Installation
1317
--------------------
@@ -135,7 +139,8 @@ It can then be controlled via the Windows Service Manager or directly on the com
135139
line by replacing 'install' with 'start', 'stop' or 'remove' in the above command.
136140
The start command can take 2 parameters, the logging level and a custom configuration file.
137141

138-
NOTE: When running as a service, stubby will read its default configuration from
142+
NOTE: To avoid conflicts with existing installs, when running as a service, stubby will
143+
read its default configuration from
139144

140145
C:\Program Files\Stubby\stubbyservice.yml
141146

0 commit comments

Comments
 (0)