dexter has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39692?usp=email )
Change subject: HTTP_Adapter: add missing omit qualifiers
......................................................................
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/92/39692/1
diff --git a/library/HTTP_Adapter.ttcn b/library/HTTP_Adapter.ttcn
index 1789e3c..5d39051 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
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39692?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I985021852cbe2bcce60b1466e8ec9c3820a0c0f8
Gerrit-Change-Number: 39692
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier(a)sysmocom.de>