Commit 940a838b authored by YannGarcia's avatar YannGarcia
Browse files

Merge branch 'STF525' of https://forge.etsi.org/gitlab/LIBS/LibIts into STF525

parents 6a420bb3 1e93108a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1763,6 +1763,8 @@ module LibItsGeoNetworking_Templates {
            }
            
            function f_getDelta15(Int32 p_value, integer p_delta) return template (present) Int15 {
              log(">>> f_getDelta15: ", p_value, ", ", p_delta); // FIXME To be removed when issue https://forge.etsi.org/rep/ITS/ITS/issues/13 will be clause
              
                if (p_value == c_int15Min) {
                    return (p_value .. p_value+p_delta);
                }
+16 −0
Original line number Diff line number Diff line
@@ -102,6 +102,22 @@ module LibItsHttp_Templates {
          method        := "POST"
        } // End of template mw_http_request_post
        
        template (omit) Request m_http_request_put(
                                                   in charstring p_uri, 
                                                   in template (value) HeaderLines p_headers,
                                                   in template (omit) HttpMessageBody p_body := omit
        ) modifies m_http_request_get := {
          method        := "PUT"
        } // End of template m_http_request_put
        
        template Request mw_http_request_put(
                                             template (present) charstring p_uri := ?, 
                                             template (present) HeaderLines p_headers := ?,
                                             template HttpMessageBody p_body := *
        ) modifies mw_http_request_get := {
          method        := "PUT"
        } // End of template mw_http_request_put
        
        template (omit) Request m_http_request_delete(
                                                      in charstring p_uri, 
                                                      in template (value) HeaderLines p_headers,