Commit 3ed2fe8a authored by YannGarcia's avatar YannGarcia
Browse files
parents 7427ac0c deefde41
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
sources := \
           ttcn/LibHttp_BinaryMessageBodyTypes.ttcn \
           ttcn/LibHttp_EncdecDeclarations.ttcn     \
           ttcn/LibHttp_JSONTypes.ttcn              \
           ttcn/LibHttp_MessageBodyTypes.ttcn       \
           ttcn/LibHttp_Pics.ttcn                   \
           ttcn/LibHttp_Pixits.ttcn                 \
           ttcn/LibHttp_TypesAndValues.ttcn         \
           ttcn/LibHttp_XMLTypes.ttcn               \


# Please, move and comment the module you need to overwrite tofit your project
#           ttcn/LibHttp_XmlMessageBodyTypes.ttcn    \
#           ttcn/LibHttp_XmlTemplates.ttcn
#           ttcn/LibHttp_JsonMessageBodyTypes.ttcn   \
#           ttcn/LibHttp_JsonTemplates.ttcn          \
#           ttcn/LibHttp_Templates.ttcn              \
#           ttcn/LibHttp_TestSystem.ttcn             \
#           ttcn/LibHttp_Functions.ttcn              \
+1 −0
Original line number Diff line number Diff line
@@ -14,5 +14,6 @@ module LibHttp_JsonMessageBodyTypes {
  }
  
} with {
  encode "JSON";
  variant ""
} // End of module LibHttp_JsonMessageBodyTypes 
+9 −3
Original line number Diff line number Diff line
@@ -163,7 +163,9 @@ module LibHttp_Templates {
          statuscode    := 200,
          statustext    := "OK",
          header        := p_header,
          body          := p_body
          body          := p_body,
          tls           := omit,
          mutual_tls    := omit
      } // End of template m_http_response_ok
      
      template (value) Response m_http_response_ok_no_body(
@@ -185,7 +187,9 @@ module LibHttp_Templates {
          statuscode    := 200,
          statustext    := "OK",
          header        := p_header,
          body          := omit
          body          := omit,
          tls           := *,
          mutual_tls    := *
      } // End of template mw_http_response_ok_no_body
      
      template (value) Response m_http_response_204_no_content(
@@ -204,7 +208,9 @@ module LibHttp_Templates {
          statuscode    := 200,
          statustext    := ?,
          header        := p_header,
          body          := p_body
          body          := p_body,
          tls           := *,
          mutual_tls    := *
      } // End of template mw_http_response_ok
      
      template (present) Response mw_http_response_201_created(
+3 −1
Original line number Diff line number Diff line
@@ -55,7 +55,9 @@ module LibHttp_TypesAndValues {
      integer statuscode,
      charstring statustext,
      Headers header,
      HttpMessageBody body optional
      HttpMessageBody body optional,
      boolean tls optional,
      boolean mutual_tls optional
    } with { 
        variant "FIELDORDER(msb)" 
    }

ttcn/LibJson/module.mk

0 → 100644
+4 −0
Original line number Diff line number Diff line
sources := \
           ttcn/Json.ttcn

# Please, move and comment the module you need to overwrite tofit your project
Loading