dexter submitted this change.
1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
HTTP_Adapter: add missing omit qualifiers
On some function in the HTTP_Adapter module, the (omit)
qualifiers are missing.
Related: SYS#7339
Change-Id: I985021852cbe2bcce60b1466e8ec9c3820a0c0f8
---
M library/HTTP_Adapter.ttcn
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/library/HTTP_Adapter.ttcn b/library/HTTP_Adapter.ttcn
index 6566cb0..ab5e6b1 100644
--- a/library/HTTP_Adapter.ttcn
+++ b/library/HTTP_Adapter.ttcn
@@ -175,11 +175,11 @@
template HTTPMessage tr_HTTP_Resp2xx := tr_HTTP_Resp((200..299));
function f_http_tx_request(charstring url, charstring method := "GET",
- template charstring body := omit,
- template octetstring binary_body := omit,
+ template (omit) charstring body := omit,
+ template (omit) octetstring binary_body := omit,
HeaderLines custom_hdr := { },
float tout := 2.0,
- template integer client_id := omit,
+ template (omit) integer client_id := omit,
template (omit) HTTP_Adapter_Params http_pars := omit)
runs on http_CT {
var Connect_result rc;
@@ -241,7 +241,7 @@
function f_http_rx_response(template HTTPMessage exp := tr_HTTP_Resp2xx,
float tout := 2.0,
- template integer client_id := omit,
+ template (omit) integer client_id := omit,
boolean keep_connection := false)
runs on http_CT return HTTPMessage {
var HTTPMessage resp;
@@ -276,7 +276,7 @@
template (omit) octetstring binary_body := omit,
template HTTPMessage exp := tr_HTTP_Resp2xx,
float tout := 2.0, HeaderLines custom_hdr := { },
- template integer client_id := omit,
+ template (omit) integer client_id := omit,
boolean keep_connection := false,
template (omit) HTTP_Adapter_Params http_pars := omit)
runs on http_CT return HTTPMessage {
To view, visit change 39692. To unsubscribe, or for help writing mail filters, visit settings.