Loading ttcn/Http/LibItsHttp_Templates.ttcn +13 −0 Original line number Diff line number Diff line Loading @@ -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 { Loading Loading
ttcn/Http/LibItsHttp_Templates.ttcn +13 −0 Original line number Diff line number Diff line Loading @@ -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 { Loading