1
- import { ConnInfo , getLogger , Handler } from "../../../deps.ts" ;
1
+ import { getLogger } from "../../../deps.ts" ;
2
2
import { EventEmitter } from "../../event-emitter/mod.ts" ;
3
3
import { Socket } from "./socket.ts" ;
4
4
import { Polling } from "./transports/polling.ts" ;
@@ -41,7 +41,7 @@ export interface ServerOptions {
41
41
*/
42
42
allowRequest ?: (
43
43
req : Request ,
44
- connInfo : ConnInfo ,
44
+ connInfo : Deno . ServeHandlerInfo ,
45
45
) => Promise < void > ;
46
46
/**
47
47
* The options related to Cross-Origin Resource Sharing (CORS)
@@ -53,15 +53,15 @@ export interface ServerOptions {
53
53
editHandshakeHeaders ?: (
54
54
responseHeaders : Headers ,
55
55
req : Request ,
56
- connInfo : ConnInfo ,
56
+ connInfo : Deno . ServeHandlerInfo ,
57
57
) => void | Promise < void > ;
58
58
/**
59
59
* A function that allows to edit the response headers of all requests
60
60
*/
61
61
editResponseHeaders ?: (
62
62
responseHeaders : Headers ,
63
63
req : Request ,
64
- connInfo : ConnInfo ,
64
+ connInfo : Deno . ServeHandlerInfo ,
65
65
) => void | Promise < void > ;
66
66
}
67
67
@@ -73,7 +73,11 @@ interface ConnectionError {
73
73
}
74
74
75
75
interface ServerReservedEvents {
76
- connection : ( socket : Socket , request : Request , connInfo : ConnInfo ) => void ;
76
+ connection : (
77
+ socket : Socket ,
78
+ request : Request ,
79
+ connInfo : Deno . ServeHandlerInfo ,
80
+ ) => void ;
77
81
connection_error : ( err : ConnectionError ) => void ;
78
82
}
79
83
@@ -124,8 +128,11 @@ export class Server extends EventEmitter<
124
128
*
125
129
* @param additionalHandler - another handler which will receive the request if the path does not match
126
130
*/
127
- public handler ( additionalHandler ?: Handler ) {
128
- return ( req : Request , connInfo : ConnInfo ) : Response | Promise < Response > => {
131
+ public handler ( additionalHandler ?: Deno . ServeHandler ) {
132
+ return (
133
+ req : Request ,
134
+ connInfo : Deno . ServeHandlerInfo ,
135
+ ) : Response | Promise < Response > => {
129
136
const url = new URL ( req . url ) ;
130
137
if ( url . pathname === this . opts . path ) {
131
138
return this . handleRequest ( req , connInfo , url ) ;
@@ -147,7 +154,7 @@ export class Server extends EventEmitter<
147
154
*/
148
155
private async handleRequest (
149
156
req : Request ,
150
- connInfo : ConnInfo ,
157
+ connInfo : Deno . ServeHandlerInfo ,
151
158
url : URL ,
152
159
) : Promise < Response > {
153
160
getLogger ( "engine.io" ) . debug ( `[server] handling ${ req . method } ${ req . url } ` ) ;
@@ -321,7 +328,7 @@ export class Server extends EventEmitter<
321
328
*/
322
329
private async handshake (
323
330
req : Request ,
324
- connInfo : ConnInfo ,
331
+ connInfo : Deno . ServeHandlerInfo ,
325
332
responseHeaders : Headers ,
326
333
) : Promise < Response > {
327
334
const id = generateId ( ) ;
0 commit comments