Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ITS - Intelligent Transport Systems
ITS
Commits
6efbea3e
Commit
6efbea3e
authored
Dec 20, 2018
by
Yann Garcia
Browse files
Bug fixed in params
parent
d19b442a
Changes
2
Hide whitespace changes
Inline
Side-by-side
ccsrc/Framework/params.hh
View file @
6efbea3e
...
...
@@ -79,6 +79,9 @@ public: //! \publicsection
static
const
std
::
string
&
server
;
//! HTTP server address (e.g. www.etsi.org)
static
const
std
::
string
&
port
;
//! HTTP server port. Default: 80
static
const
std
::
string
&
use_ssl
;
//! Set to 1 to use SSL to communicate with the HTTP server. Default: false
static
const
std
::
string
&
server_mode
;
//! Does the test sytem acting as a server. Default: 0
static
const
std
::
string
&
local_port
;
//! Local listener port. Default: 80
static
const
std
::
string
&
method
;
//! HTTP method type. Default: POST
static
const
std
::
string
&
uri
;
//! HTTP URI value. Default: /
static
const
std
::
string
&
host
;
//! HTTP Host value. Default: 127.0.0.1
...
...
ccsrc/Framework/src/params.cc
View file @
6efbea3e
...
...
@@ -71,9 +71,10 @@ const std::string& params::interface_id = std::string("interface_id");
const
std
::
string
&
params
::
server
=
std
::
string
(
"server"
);
const
std
::
string
&
params
::
port
=
std
::
string
(
"port"
);
const
std
::
string
&
params
::
use_ssl
=
std
::
string
(
"use_ssl"
);
const
std
::
string
&
params
::
server_mode
=
std
::
string
(
"server_mode"
);
const
std
::
string
&
params
::
local_port
=
std
::
string
(
"local_port"
);
const
std
::
string
&
params
::
use_ssl
=
std
::
string
(
"use_ssl"
);
const
std
::
string
&
params
::
method
=
std
::
string
(
"method"
);
const
std
::
string
&
params
::
uri
=
std
::
string
(
"uri"
);
const
std
::
string
&
params
::
host
=
std
::
string
(
"host"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment