Commit fd348eb8 authored by rennoch's avatar rennoch
Browse files

t3doc info for Request/Response types

parent 92843155
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
@@ -1523,6 +1523,15 @@ group SubTypes{// Subtypes
    group RequestTypes
    {
      // [7.1]

	/**
	* 
	* @desc generic type of a SIP request message
	* @member statusLine contains a method name, a Request-URI, and the protocol version
	* @member msgHeader include all possible header fields that are allowed to be present according to RFCs and other standards
	* @member messageBody depends on the request method, includes e.g. SDP message.
	* @member payload  contains the whole message as it has been received in its text format
	*/	
      type record Request
      {
        RequestLine		requestLine,
@@ -1642,6 +1651,15 @@ group SubTypes{// Subtypes
    group ResponseTypes
    {
      // [7.2]

	/**
	* 
	* @desc generic type of a SIP response message
	* @member statusLine consists of the protocol version followed by a numeric Status-Code and its associated textual phrase
	* @member msgHeader include all possible header fields that are allowed to be present according to RFCs and other standards
	* @member messageBody depends on the response method, includes e.g. SDP message.
	* @member payload  contains the whole message as it has been received in its text format
	*/
      type record Response
      {
        StatusLine		statusLine,