This repository was archived by the owner on Feb 23, 2023. It is now read-only.
Commit a9c93cd 1 parent 0e0dd46 commit a9c93cd Copy full SHA for a9c93cd
File tree 1 file changed +8
-2
lines changed
spring-native-configuration/src/main/java/io/netty
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 26
26
import io .netty .handler .codec .http2 .CleartextHttp2ServerUpgradeHandler ;
27
27
import io .netty .handler .codec .http2 .Http2ConnectionHandler ;
28
28
import io .netty .handler .codec .http2 .Http2ServerUpgradeCodec ;
29
+ import io .netty .handler .ssl .OpenSslAsyncPrivateKeyMethod ;
30
+ import io .netty .handler .ssl .OpenSslPrivateKeyMethod ;
31
+ import io .netty .handler .ssl .ReferenceCountedOpenSslEngine ;
29
32
import io .netty .resolver .HostsFileEntriesResolver ;
30
33
import io .netty .util .internal .PlatformDependent ;
31
34
38
41
39
42
@ NativeHint (trigger = DefaultChannelId .class , initialization = {
40
43
@ InitializationHint (initTime =InitializationTime .RUN ,
41
- packageNames = "io.netty.channel.epoll" ,
44
+ packageNames = { "io.netty.channel.epoll" , "io.netty.internal.tcnative" } ,
42
45
types = {
43
46
DefaultChannelId .class ,
44
47
Socket .class ,
48
51
CleartextHttp2ServerUpgradeHandler .class ,
49
52
Http2ConnectionHandler .class ,
50
53
HostsFileEntriesResolver .class ,
51
- BrotliDecoder .class
54
+ BrotliDecoder .class ,
55
+ OpenSslPrivateKeyMethod .class ,
56
+ OpenSslAsyncPrivateKeyMethod .class ,
57
+ ReferenceCountedOpenSslEngine .class
52
58
}, typeNames = {
53
59
"io.netty.handler.codec.http.websocketx.extensions.compression.DeflateDecoder"
54
60
})
You can’t perform that action at this time.
0 commit comments