mirror of
https://github.com/Melledy/Grasscutter.git
synced 2025-02-06 15:28:49 +00:00
16 lines
394 B
Java
16 lines
394 B
Java
|
package emu.grasscutter.netty;
|
||
|
|
||
|
import io.jpower.kcp.netty.UkcpChannel;
|
||
|
import io.netty.channel.ChannelInitializer;
|
||
|
import io.netty.channel.ChannelPipeline;
|
||
|
|
||
|
@SuppressWarnings("unused")
|
||
|
public class MihoyoKcpServerInitializer extends ChannelInitializer<UkcpChannel> {
|
||
|
|
||
|
@Override
|
||
|
protected void initChannel(UkcpChannel ch) throws Exception {
|
||
|
ChannelPipeline pipeline = ch.pipeline();
|
||
|
}
|
||
|
|
||
|
}
|