[PR #590] [CLOSED] Added ProxySocket #1168

Closed
opened 2026-02-27 15:53:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/590
Author: @life-coder
Created: 3/15/2017
Status: Closed

Base: masterHead: tor


📝 Commits (1)

📊 Changes

11 files changed (+2112 additions, -1 deletions)

View changed files

📝 Client/Client.csproj (+13 -1)
Client/Core/Networking/Proxy/Authentication/AuthMethod.cs (+113 -0)
Client/Core/Networking/Proxy/Authentication/AuthNone.cs (+60 -0)
Client/Core/Networking/Proxy/Authentication/AuthUserPass.cs (+169 -0)
Client/Core/Networking/Proxy/HttpsHandler.cs (+296 -0)
Client/Core/Networking/Proxy/IAsyncProxyResult.cs (+97 -0)
Client/Core/Networking/Proxy/ProxyException.cs (+84 -0)
Client/Core/Networking/Proxy/ProxySocket.cs (+403 -0)
Client/Core/Networking/Proxy/Socks4Handler.cs (+227 -0)
Client/Core/Networking/Proxy/Socks5Handler.cs (+420 -0)
Client/Core/Networking/Proxy/SocksHandler.cs (+230 -0)

📄 Description

Added mentalis ProxySocket(version from: https://github.com/poma/ProxySocket)
(Dont merge yet, still adding some logic)


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quasar/Quasar/pull/590 **Author:** [@life-coder](https://github.com/life-coder) **Created:** 3/15/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `tor` --- ### 📝 Commits (1) - [`411fbde`](https://github.com/quasar/Quasar/commit/411fbde65be0aea97221cbfd27c6b9a3a39214b0) Added ProxySocket ### 📊 Changes **11 files changed** (+2112 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+13 -1) ➕ `Client/Core/Networking/Proxy/Authentication/AuthMethod.cs` (+113 -0) ➕ `Client/Core/Networking/Proxy/Authentication/AuthNone.cs` (+60 -0) ➕ `Client/Core/Networking/Proxy/Authentication/AuthUserPass.cs` (+169 -0) ➕ `Client/Core/Networking/Proxy/HttpsHandler.cs` (+296 -0) ➕ `Client/Core/Networking/Proxy/IAsyncProxyResult.cs` (+97 -0) ➕ `Client/Core/Networking/Proxy/ProxyException.cs` (+84 -0) ➕ `Client/Core/Networking/Proxy/ProxySocket.cs` (+403 -0) ➕ `Client/Core/Networking/Proxy/Socks4Handler.cs` (+227 -0) ➕ `Client/Core/Networking/Proxy/Socks5Handler.cs` (+420 -0) ➕ `Client/Core/Networking/Proxy/SocksHandler.cs` (+230 -0) </details> ### 📄 Description Added mentalis ProxySocket(version from: https://github.com/poma/ProxySocket) (Dont merge yet, still adding some logic) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:21 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1168
No description provided.