mirror of
https://github.com/Melledy/Grasscutter.git
synced 2024-11-25 00:54:31 +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();
|
|
}
|
|
|
|
}
|