diff options
Diffstat (limited to 'js/net.ts')
-rw-r--r-- | js/net.ts | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -57,6 +57,8 @@ export interface Conn extends Reader, Writer, Closer { localAddr: string; /** The remote address of the connection. */ remoteAddr: string; + /** The resource ID of the connection. */ + rid: number; /** Shuts down (`shutdown(2)`) the reading side of the TCP connection. Most * callers should just use `close()`. */ |