zhaolianwang
bcb057fa62
subType
7 years ago
zhaolianwang
7d59e1c79f
Merge pull request #1 from zhaolianwang/fix_close_ws
fix null point
7 years ago
zhaolianwang
09d580325c
fix nullpoint
https://github.com/mrniko/netty-socketio/issues/596
reason:
WebSocketTransport line 144 : Packet packet = new Packet(PacketType.MESSAGE); //subType =null
PacketEncoder line 288: byte subType = toChar(packet.getSubType().getValue()); //NullPointerException
fix
WebSocketTransport
Packet packet = new Packet(PacketType.MESSAGE);
packet.setSubType(PacketType.MESSAGE);
7 years ago
Nikita Koksharov
53fee37526
Update README.md
7 years ago
Nikita
55e7802dfb
[maven-release-plugin] prepare for next development iteration
7 years ago
Nikita
4f64ad1c26
[maven-release-plugin] prepare release netty-socketio-1.7.16
7 years ago
Nikita
49ad31f4c6
license header added
7 years ago
Nikita Koksharov
2b206d3075
Merge pull request #579 from dawnbreaks/master
Fix concurrency issue
7 years ago
lubinwang
3a11421c1e
Fix concurrency issue
7 years ago
Nikita Koksharov
f501f9e290
Merge pull request #572 from dawnbreaks/master
fix memory leak issue
7 years ago
lubinwang
92ef9b58d5
release inactive long-polling channel from ClientsBox to avoid memory leak
7 years ago
Nikita Koksharov
3abb94d6e7
Merge pull request #560 from hangsucho/feature-547
[#547 ] process websocket CloseFrame
7 years ago
hangsu.cho
2608b24d80
[ #547 ] add apache license comment
7 years ago
hangsu.cho
16dc14a7fa
[ #547 ] process websocket CloseFrame
- If an endpoint receives a Close frame and did not previously send a
Close frame, the endpoint MUST send a Close frame in response.
7 years ago
Nikita
f2e2be1b7f
Merge branch 'master' of github.com:mrniko/netty-socketio
7 years ago
Nikita
2628a6c92b
WebSocketTransport NPE fixed. #556
7 years ago
Nikita
000530cbe5
[maven-release-plugin] prepare for next development iteration
7 years ago
Nikita
59b99ddc30
[maven-release-plugin] prepare release netty-socketio-1.7.15
7 years ago
Nikita
0ca7e85fd5
Merge branch 'master' of github.com:mrniko/netty-socketio
7 years ago
Nikita
d5f10cba65
libs updated
7 years ago
Nikita
9ccdb36019
Fixed - sessionId also should be read from io header #505 #526
7 years ago
Nikita Koksharov
32b17b5f70
Update README.md
7 years ago
Nikita Koksharov
001cf1177c
Merge pull request #525 from hand515/master
ExceptionListenerAdapter implement onPingException
7 years ago
Nikita Koksharov
9e10129602
Merge pull request #549 from jkohjk/master
fix for underlying connection not closing on ping timeout
7 years ago
Nikita Koksharov
abb6311a51
Merge pull request #531 from Phipray/master
#530 fix the "fin_close" problem
7 years ago
Joel Koh
5eaaf5a73a
fixed disconnect null pointer
7 years ago
Joel Koh
10e7d0fa3a
fixed underlying connection not closing on ping timeout
7 years ago
dzn
5ad451ca89
#503 fix the "fin_close" problem
7 years ago
Tanghd
69bde655eb
implements onPingException
7 years ago
Nikita Koksharov
53040827ad
Update README.md
7 years ago
Nikita
c148ff7b10
[maven-release-plugin] prepare for next development iteration
7 years ago
Nikita
cfe724e53b
[maven-release-plugin] prepare release netty-socketio-1.7.14
7 years ago
Nikita
62589afc6e
plugins updated
7 years ago
Nikita
d03646a5c3
javadoc errors fixed
7 years ago
Nikita
4011b83f10
[maven-release-plugin] prepare for next development iteration
7 years ago
Nikita
f470de541d
[maven-release-plugin] prepare release netty-socketio-1.7.14
7 years ago
Nikita
3a3eac76a8
netty updated
7 years ago
Nikita Koksharov
6a28a63c8c
Merge pull request #516 from HenryOrz/issue515
Some utf8 characters may become "???', if polling is used
7 years ago
henryorz
30bb876249
remove ISO_8859_1 encode in PacketDecoder
7 years ago
Nikita Koksharov
ec9eca589e
Merge pull request #519 from hand515/master
add ThreadFactory for HashedWheelTimer
7 years ago
Tanghd
b07497ebf0
add ThreadFactory for HashedWheelTimer
7 years ago
Nikita Koksharov
0d814daeb0
Merge pull request #517 from lovebing/master
add PingListener
7 years ago
lovebing
cf76065027
Rename addPingListeners to addPingListener
7 years ago
lovebing
d3f63cb9d8
add PingListener
7 years ago
Nikita
46bbdd90c1
Merge branch 'master' of github.com:mrniko/netty-socketio
7 years ago
Nikita
b3e8c8271a
netty updated
7 years ago
henryorz
17bd4586e3
remove comment
7 years ago
henryorz
9414a990af
fix bugs of decode while polling
7 years ago
Nikita Koksharov
40f0ff7157
Merge pull request #511 from vonway/master
Fix NumberFormatException when b64 is bool value.
7 years ago
vonway
c7782760aa
Fix NumberFormatException when b64 is bool value.
Cause:
- when the b64 is set as bool value like "http://<hostaddress>/socket.io/1/?EIO=2&transport=polling&b64=true",
Exception [java.lang.NumberFormatException: For input string: "true"] will throw.
Because it try to parse a string "true" to Integer.
Fix:
- take true as 1 and take false as 0
7 years ago