Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
proxy port will start from 0 instead 1 (0-65535 range)
Browse files Browse the repository at this point in the history
  • Loading branch information
EarsKilla committed Mar 19, 2019
1 parent 0846737 commit b99ff15
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions SteamAccCreator/Gui/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion SteamAccCreator/Gui/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public MainForm()

CbProxyEnabled.Checked = Configuration.Proxy.Enabled;
TbProxyAddr.Text = Configuration.Proxy.Host;
TbProxyPort.Value = (Configuration.Proxy.Port < 1 || Configuration.Proxy.Port > 65535) ? Configuration.Proxy.Port = 1 : Configuration.Proxy.Port;
TbProxyPort.Value = (Configuration.Proxy.Port < 0 || Configuration.Proxy.Port > 65535) ? Configuration.Proxy.Port = 0 : Configuration.Proxy.Port;
}

public async void BtnCreateAccount_Click(object sender, EventArgs e)
Expand Down

8 comments on commit b99ff15

@CripTonics
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Socks 5 or http ?

@EarsKilla
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

by default, c# can only work with http/http proxies

@CripTonics
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should it be unencrypted ?

@EarsKilla
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, at this moment logic of proxy aren't coded to authorization

@CripTonics
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you so much.Can I get you some coffee?

@EarsKilla
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah! Why no?
But how? Paypal or something else? 🤔

@CripTonics
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Paypal not working Turkey :(
www.buymeacoffee.com
is there something like this ?

@EarsKilla
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

buymeacoff.ee/KejOif4Tu

Please sign in to comment.