From f282dc63f560fe3fc3f885097f43142bfc2f9824 Mon Sep 17 00:00:00 2001 From: Pawel Date: Thu, 17 Dec 2020 12:17:37 +0100 Subject: Upgrade hv-ves, reactor, protobuf and sdk versions Reactor from Dysprosium-SR11 to 2020.0.2 Protobuf from 3.6.1 to 3.14.0 SDK from 1.4.4 to 1.5.0 Issue-ID: DCAEGEN2-2537 Signed-off-by: Pawel Change-Id: Ie3fc82c67ba096efcd0c584cf3f7f35128962efe --- sources/hv-collector-server/pom.xml | 2 +- .../kotlin/org/onap/dcae/collectors/veshv/impl/NettyTcpServer.kt | 4 ++-- .../main/kotlin/org/onap/dcae/collectors/veshv/impl/networking.kt | 5 +++-- 3 files changed, 6 insertions(+), 5 deletions(-) (limited to 'sources/hv-collector-server') diff --git a/sources/hv-collector-server/pom.xml b/sources/hv-collector-server/pom.xml index cce03f12..6a4c60cb 100644 --- a/sources/hv-collector-server/pom.xml +++ b/sources/hv-collector-server/pom.xml @@ -33,7 +33,7 @@ org.onap.dcaegen2.collectors.hv-ves hv-collector-sources - 1.5.1-SNAPSHOT + 1.6.0-SNAPSHOT .. diff --git a/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/NettyTcpServer.kt b/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/NettyTcpServer.kt index d19b7f49..7f6ad658 100644 --- a/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/NettyTcpServer.kt +++ b/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/NettyTcpServer.kt @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * dcaegen2-collectors-veshv * ================================================================================ - * Copyright (C) 2018-2019 NOKIA + * Copyright (C) 2018-2020 NOKIA * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -60,7 +60,7 @@ internal class NettyTcpServer(private val serverConfiguration: ServerConfigurati override fun start(): Mono = Mono.defer { TcpServer.create() - .addressSupplier { InetSocketAddress(serverConfiguration.listenPort) } + .bindAddress { InetSocketAddress(serverConfiguration.listenPort) } .configureSsl() .handle(this::handleConnection) .bind() diff --git a/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/networking.kt b/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/networking.kt index eb51cf4b..6bbe08f0 100644 --- a/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/networking.kt +++ b/sources/hv-collector-server/src/main/kotlin/org/onap/dcae/collectors/veshv/impl/networking.kt @@ -2,7 +2,7 @@ * ============LICENSE_START======================================================= * dcaegen2-collectors-veshv * ================================================================================ - * Copyright (C) 2019 NOKIA + * Copyright (C) 2019-2020 NOKIA * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -31,6 +31,7 @@ import reactor.netty.Connection import reactor.netty.NettyInbound import reactor.netty.NettyOutbound import java.net.InetAddress +import java.net.InetSocketAddress import java.security.cert.X509Certificate import javax.net.ssl.SSLSession @@ -76,6 +77,6 @@ internal inline fun withNewClientContextFrom(nettyInbound: NettyInbound, internal fun populateClientContextFromInbound(clientContext: ClientContext, nettyInbound: NettyInbound) = withConnectionFrom(nettyInbound) { connection -> - clientContext.clientAddress = Try { connection.address().address }.toOption() + clientContext.clientAddress = Try { (connection.address() as InetSocketAddress).address }.toOption() clientContext.clientCert = connection.getSslSession().flatMap { it.findClientCert() } } -- cgit 1.2.3-korg