@@ -128,6 +128,10 @@ pub(super) enum User {
128
128
#[ cfg( feature = "http1" ) ]
129
129
ManualUpgrade ,
130
130
131
+ /// User called `server::Connection::without_shutdown()` on an HTTP/2 conn.
132
+ #[ cfg( feature = "server" ) ]
133
+ WithoutShutdownNonHttp1 ,
134
+
131
135
/// User aborted in an FFI callback.
132
136
#[ cfg( feature = "ffi" ) ]
133
137
AbortedByCallback ,
@@ -355,6 +359,11 @@ impl Error {
355
359
Error :: new_user ( User :: Body ) . with ( cause)
356
360
}
357
361
362
+ #[ cfg( feature = "server" ) ]
363
+ pub ( super ) fn new_without_shutdown_not_h1 ( ) -> Error {
364
+ Error :: new ( Kind :: User ( User :: WithoutShutdownNonHttp1 ) )
365
+ }
366
+
358
367
#[ cfg( feature = "http1" ) ]
359
368
pub ( super ) fn new_shutdown ( cause : std:: io:: Error ) -> Error {
360
369
Error :: new ( Kind :: Shutdown ) . with ( cause)
@@ -449,6 +458,10 @@ impl Error {
449
458
Kind :: User ( User :: NoUpgrade ) => "no upgrade available" ,
450
459
#[ cfg( feature = "http1" ) ]
451
460
Kind :: User ( User :: ManualUpgrade ) => "upgrade expected but low level API in use" ,
461
+ #[ cfg( feature = "server" ) ]
462
+ Kind :: User ( User :: WithoutShutdownNonHttp1 ) => {
463
+ "without_shutdown() called on a non-HTTP/1 connection"
464
+ }
452
465
#[ cfg( feature = "ffi" ) ]
453
466
Kind :: User ( User :: AbortedByCallback ) => "operation aborted by an application callback" ,
454
467
}
0 commit comments