We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b96105 commit 57f8033Copy full SHA for 57f8033
1 file changed
src/main/java/meteordevelopment/meteorclient/systems/proxies/Proxy.java
@@ -160,7 +160,7 @@ private boolean isSocks4() throws IOException {
160
// SOCKS4a
161
else {
162
byte[] addr = address.get().getBytes();
163
- bb = ByteBuffer.allocate(9 + u.length + addr.length)
+ bb = ByteBuffer.allocate(10 + u.length + addr.length)
164
.put((byte) 4)
165
.put((byte) 1)
166
.putShort(port.get().shortValue())
0 commit comments