feat: Increase max packet sizes to 1400

This commit is contained in:
amizing25 2025-01-24 17:54:06 +07:00
parent 2a6a1bd982
commit 3389799c26

View File

@ -19,7 +19,7 @@ use tokio::{
use crate::net::packet::NetOperation;
const MAX_PACKET_SIZE: usize = 1200;
const MAX_PACKET_SIZE: usize = 1400;
pub struct Gateway {
socket: Arc<UdpSocket>,