Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TTCN-3 Libraries
LibIts
Commits
907f56d1
Commit
907f56d1
authored
Nov 14, 2018
by
Yann Garcia
Browse files
Merge with STF549_NG112
parent
11926925
Changes
1
Hide whitespace changes
Inline
Side-by-side
ttcn/Http/LibItsHttp_Templates.ttcn
View file @
907f56d1
...
...
@@ -85,6 +85,19 @@ module LibItsHttp_Templates {
body
:=
p_body
}
// End of template m_http_request_post
template
Request
mw_http_request_post
(
template
(
present
)
charstring
p_uri
:=
?
,
template
(
present
)
HeaderLines
p_headers
:=
?
,
template
HttpMessageBody
p_body
:=
*
)
:=
{
method
:=
"POST"
,
uri
:=
p_uri
,
version_major
:=
c_http_version_major
,
version_minor
:=
c_http_version_minor
,
header
:=
p_headers
,
body
:=
p_body
}
// End of template mw_http_request_post
}
// End of group http_requests
group
http_responses
{
...
...
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