Skip to content

Commit

Permalink
feat: Update permissions of SocketIOChannelInitializer to allow easie…
Browse files Browse the repository at this point in the history
…r override

Signed-off-by: Nicolae Natea <[email protected]>
  • Loading branch information
nicsor committed Oct 7, 2024
1 parent 5e56faa commit fe097f2
Showing 1 changed file with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,20 +78,20 @@ public class SocketIOChannelInitializer extends ChannelInitializer<Channel> impl

private static final Logger log = LoggerFactory.getLogger(SocketIOChannelInitializer.class);

private AckManager ackManager;
protected AckManager ackManager;

private ClientsBox clientsBox = new ClientsBox();
private AuthorizeHandler authorizeHandler;
private PollingTransport xhrPollingTransport;
private WebSocketTransport webSocketTransport;
private EncoderHandler encoderHandler;
private WrongUrlHandler wrongUrlHandler;
protected ClientsBox clientsBox = new ClientsBox();
protected AuthorizeHandler authorizeHandler;
protected PollingTransport xhrPollingTransport;
protected WebSocketTransport webSocketTransport;
protected EncoderHandler encoderHandler;
protected WrongUrlHandler wrongUrlHandler;

private CancelableScheduler scheduler = new HashedWheelTimeoutScheduler();
protected CancelableScheduler scheduler = new HashedWheelTimeoutScheduler();

private InPacketHandler packetHandler;
private SSLContext sslContext;
private Configuration configuration;
protected InPacketHandler packetHandler;
protected SSLContext sslContext;
protected Configuration configuration;

@Override
public void handlerAdded(ChannelHandlerContext ctx) {
Expand Down

0 comments on commit fe097f2

Please sign in to comment.