diff options
| author | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-04 14:50:07 -0700 |
|---|---|---|
| committer | Grant Limberg <grant.limberg@zerotier.com> | 2016-11-04 14:50:07 -0700 |
| commit | 1ab9c431350b1e8cf22f27fe5814f1d4608b24a7 (patch) | |
| tree | d75f2e377cddef346f5d9292f0566d6a60105cb1 /windows/WinUI/APIHandler.cs | |
| parent | efcc24a76b493a3045eb24805fc2e1dd2109823c (diff) | |
| download | infinitytier-1ab9c431350b1e8cf22f27fe5814f1d4608b24a7.tar.gz infinitytier-1ab9c431350b1e8cf22f27fe5814f1d4608b24a7.zip | |
wire up allowDefault, allowManaged, allowGlobal, allowDefault options
Diffstat (limited to 'windows/WinUI/APIHandler.cs')
| -rw-r--r-- | windows/WinUI/APIHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/WinUI/APIHandler.cs b/windows/WinUI/APIHandler.cs index 83a22c66..2a8dea13 100644 --- a/windows/WinUI/APIHandler.cs +++ b/windows/WinUI/APIHandler.cs @@ -107,7 +107,7 @@ namespace WinUI } } - public void JoinNetwork(string nwid, bool allowManaged = false, bool allowGlobal = false, bool allowDefault = false) + public void JoinNetwork(string nwid, bool allowManaged = true, bool allowGlobal = false, bool allowDefault = false) { var request = WebRequest.Create(url + "/network/" + nwid + "?auth=" + authtoken) as HttpWebRequest; if (request == null) |
