2018-12-21 16:09:50 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018 Ilya Maximets <i.maximets@samsung.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include "fatal-signal.h"
|
|
|
|
#include "openvswitch/vlog.h"
|
|
|
|
#include "stream.h"
|
2023-05-11 15:38:50 +02:00
|
|
|
#include "stream-ssl.h"
|
2018-12-21 16:09:50 +03:00
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
VLOG_DEFINE_THIS_MODULE(test_stream);
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct stream *stream;
|
|
|
|
|
|
|
|
fatal_ignore_sigpipe();
|
|
|
|
set_program_name(argv[0]);
|
|
|
|
|
|
|
|
if (argc < 2) {
|
2023-05-11 15:38:50 +02:00
|
|
|
ovs_fatal(0, "usage: %s REMOTE [SSL_KEY] [SSL_CERT] [SSL_CA]",
|
|
|
|
argv[0]);
|
|
|
|
}
|
|
|
|
if (strncmp("ssl:", argv[1], 4) == 0) {
|
|
|
|
if (argc < 5) {
|
|
|
|
ovs_fatal(0, "usage with ssl: %s REMOTE SSL_KEY SSL_CERT SSL_CA",
|
|
|
|
argv[0]);
|
|
|
|
}
|
|
|
|
stream_ssl_set_ca_cert_file(argv[4], false);
|
|
|
|
stream_ssl_set_key_and_cert(argv[2], argv[3]);
|
2018-12-21 16:09:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
error = stream_open_block(stream_open(argv[1], &stream, DSCP_DEFAULT),
|
2019-01-09 20:30:16 +03:00
|
|
|
10000, &stream);
|
2018-12-21 16:09:50 +03:00
|
|
|
if (error) {
|
|
|
|
VLOG_ERR("stream_open_block(%s) failure: %s",
|
|
|
|
argv[1], ovs_strerror(error));
|
|
|
|
}
|
2020-12-17 18:20:05 +01:00
|
|
|
stream_close(stream);
|
2018-12-21 16:09:50 +03:00
|
|
|
return (error || !stream) ? 1 : 0;
|
|
|
|
}
|