File tree 2 files changed +3
-3
lines changed
src/main/kotlin/com/theevilroot/asyncsocket
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class Socks4CoroutineSocket(
23
23
(isa.port and 0xff ).toByte(),
24
24
* isa.address.address,
25
25
* userId.toByteArray(),
26
- 0x00 .toByte(),
26
+ 0x00 .toByte()
27
27
)
28
28
ByteBuffer .wrap(message).let {
29
29
val count = super .write(it)
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ class SocksCoroutineSocket(
87
87
0x01 ,
88
88
* isa.address.address,
89
89
(isa.port shr 8 ).toByte(),
90
- (isa.port and 0xff ).toByte(),
90
+ (isa.port and 0xff ).toByte()
91
91
)
92
92
ByteBuffer .wrap(message).let {
93
93
val count = super .write(it)
@@ -129,7 +129,7 @@ class SocksCoroutineSocket(
129
129
username.length.toByte(),
130
130
* username.toByteArray(),
131
131
password.length.toByte(),
132
- * password.toByteArray(),
132
+ * password.toByteArray()
133
133
)
134
134
ByteBuffer .wrap(message).also {
135
135
val count = super .write(it)
You can’t perform that action at this time.
0 commit comments