• 大小: 3.86KB
    文件类型: .java
    金币: 1
    下载: 0 次
    发布日期: 2020-12-27
  • 标签: Socket  c  

资源简介


资源截图

代码片段和文件信息

package org.java_websocket;

import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.NotYetConnectedException;

import org.java_websocket.drafts.Draft;
import org.java_websocket.framing.framedata;
import org.java_websocket.framing.framedata.Opcode;

public interface WebSocket {
public enum Role {
CLIENT SERVER
}

public enum READYSTATE {
NOT_YET_CONNECTED CONNECTING OPEN CLOSING CLOSED;
}

/**
 * The default port of WebSockets as defined in the spec. If the nullary
 * constructor is used DEFAULT_PORT will be the port the WebSocketServer
 * is binded to. Note that ports under 1024 usually require root permissions.
 */
public static final int DEFAULT_PORT = 80;

public static final int DEFAULT_WSS_PORT = 443;

/**
 * sends the closing h

评论

共有 条评论