Skip to content

Commit

Permalink
Make Socket.request writable
Browse files Browse the repository at this point in the history
Fixes #696.
  • Loading branch information
jonathanperret committed Feb 21, 2024
1 parent ff0fbfb commit fc22ec6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/socket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type ReadyState = "opening" | "open" | "closing" | "closed";
export class Socket extends EventEmitter {
public readonly protocol: number;
// TODO for the next major release: do not keep the reference to the first HTTP request, as it stays in memory
public readonly request: IncomingMessage;
public request: IncomingMessage;
public readonly remoteAddress: string;

public _readyState: ReadyState = "opening";
Expand Down

0 comments on commit fc22ec6

Please sign in to comment.