Skip to content

Commit

Permalink
next development iteration
Browse files Browse the repository at this point in the history
  • Loading branch information
mostroverkhov committed Aug 20, 2022
1 parent 7d7feb7 commit 92fcd3f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ EchoWebSocketHandler http1WebSocketHandler = new EchoWebSocketHandler();
Http2WebSocketClientHandshaker handShaker = Http2WebSocketClientHandshaker.create(channel);
Http2Headers headers =
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.4");
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.5");
ChannelFuture handshakeFuture =
/*http1 websocket handler*/
handShaker.handshake("/echo", headers, new EchoWebSocketHandler());
Expand Down Expand Up @@ -270,7 +270,7 @@ repositories {
}
dependencies {
implementation 'com.jauntsdn.netty:netty-websocket-http2:1.1.4'
implementation 'com.jauntsdn.netty:netty-websocket-http2:1.1.5'
}
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.jauntsdn.netty
version=1.1.5
version=1.1.6

googleJavaFormatPluginVersion=0.9
dependencyManagementPluginVersion=1.0.13.RELEASE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected void initChannel(SocketChannel ch) {
Http2WebSocketClientHandshaker handShaker = Http2WebSocketClientHandshaker.create(channel);

Http2Headers headers =
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.4");
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.5");
ChannelFuture handshake =
handShaker.handshake("/echo", "echo.jauntsdn.com", headers, new EchoWebSocketHandler());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ protected void initChannel(SocketChannel ch) {
Http2WebSocketClientHandshaker handShaker = Http2WebSocketClientHandshaker.create(channel);

Http2Headers headers =
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.4");
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.5");
ChannelFuture handshake =
handShaker.handshake(
"/", "dumb-increment-protocol", headers, new WebSocketDumbIncrementHandler());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ protected void initChannel(SocketChannel ch) {
Http2WebSocketClientHandshaker.create(http2Channel);

Http2Headers http2Headers =
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.4");
new DefaultHttp2Headers().set("user-agent", "jauntsdn-websocket-http2-client/1.1.5");
ChannelFuture http2WebSocketHandshake =
http2WebSocketHandShaker.handshake(
"/echo", "echo.jauntsdn.com", http2Headers, echoWebSocketHandler);
Expand All @@ -119,7 +119,7 @@ protected void initChannel(SocketChannel ch) {
TimeUnit.MILLISECONDS);

HttpHeaders http1Headers =
new DefaultHttpHeaders().set("user-agent", "jauntsdn-websocket-http1-client/1.1.4");
new DefaultHttpHeaders().set("user-agent", "jauntsdn-websocket-http1-client/1.1.5");

Http1WebSocketHandshaker http1WebSocketHandshaker =
new Http1WebSocketHandshaker(
Expand Down

0 comments on commit 92fcd3f

Please sign in to comment.