All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.virjar.sekiro.Constants Maven / Gradle / Ivy

Go to download

ratel api,used for developer on ratel system,an extension for xposed framewrok,ratel api compatable with original xposed framework

There is a newer version: 1.0.5
Show newest version
package com.virjar.sekiro;

import io.netty.util.AttributeKey;

public interface Constants {
    int READ_IDLE_TIME = 40;

    int WRITE_IDLE_TIME = 20;

    /**
     * max packet is 最大允许传输10M的数据.
     */
    int MAX_FRAME_LENGTH = 10 * 1024 * 1024;

    int LENGTH_FIELD_OFFSET = 0;

    int LENGTH_FIELD_LENGTH = 4;

    int INITIAL_BYTES_TO_STRIP = 0;

    int LENGTH_ADJUSTMENT = 0;

    int defaultNatServerPort = 5600;

    int defaultNatHttpServerPort = 5601;

    int defaultWebSocketServerPort = 5603;

    AttributeKey CLIENT_KEY = AttributeKey.newInstance("client_key");
    AttributeKey GROUP_KEY = AttributeKey.newInstance("goup_key");

    int protocolMagic = 5597;

    String compressMethod = "CompressMethod";
    String contentType = "contentType";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy