910e62b5创建于 1月15日历史提交
dictionary SocketOpenInfo {
  ReadableStream readable;
  WritableStream writable;

  DOMString remoteAddress;
  unsigned short remotePort;

  DOMString localAddress;
  unsigned short localPort;
};

dictionary TCPSocketOpenInfo : SocketOpenInfo {};

dictionary UDPSocketOpenInfo : SocketOpenInfo {
  [RuntimeEnabled=MulticastInDirectSockets] MulticastController multicastController;
};

dictionary TCPServerSocketOpenInfo {
  ReadableStream readable;

  DOMString localAddress;
  unsigned short localPort;
};