Sippet v0.5.4 Sippet.Message
Message primitive for composing SIP messages.
Build a SIP message with the Sippet.Message
struct.
request =
Sippet.Message.build_request("INVITE", "sip:joe@example.com")
|> Sippet.Message.put_header(:to,
{"", Sippet.URI.parse("sip:joe@example.com"), %{}})
...
Summary
Functions
Returns a SIP request created from its basic elements
Returns a SIP response created from its basic elements
Returns a SIP response with a custom reason phrase
Creates an unique local branch (72-bit random string, 7+12 characters long)
Creates an unique Call-ID (120-bit random string, 20 characters long)
Creates a local tag (48-bit random string, 8 characters long)
Deletes all header
values in message
Deletes the last value of header
in message
Deletes the first value of header
in message
Drops all given headers
from message
Fetches all values for a specific header
and returns it in a tuple
Fetches all values for a specific header
in the given message
, erroring
out if message
doesn’t contain header
Fetches the last value of a specific header
and returns it in a tuple
Fetches the last value of a specific header
in the given message
, erroring
out if message
doesn’t contain header
Fetches the first value of a specific header
and returns it in a tuple
Fetches the first value of a specific header
in the given message
, erroring
out if message
doesn’t contain header
Gets the values from header
and updates it, all in one pass
Gets the last value from header
and updates it, all in one pass
Gets the first value from header
and updates it, all in one pass
Gets all values for a specific header
in message
Gets the last value of a specific header
in message
Gets the first value of a specific header
in message
Returns whether a given header
exists in the given message
Returns a list of all known methods, as a list of uppercase strings
Returns a list of all known transport protocols, as a list of uppercase strings
Returns the RFC 3261 compliance magic cookie, inserted in via-branch parameters
Parses a SIP message header block as received by the transport layer
Parses a SIP message header block as received by the transport layer
Returns and removes the values associated with header
in message
Returns and removes the last value associated with header
in message
Returns and removes the first value associated with header
in message
Puts the value
under header
on the message
Puts the value
under header
on the message
, as last element
Puts the value
under header
on the message
, as front element
Puts the value
under header
on the message
unless the header
already
exists
Evaluates fun
and puts the result under header
in message
unless
header
is already present
Shortcut to check if the message is a request
Shortcut to check if the message is a response
Returns the iodata representation of the given Sippet.Message
struct
Converts a string representing a known method into an atom, otherwise as an uppercase string
Converts a string representing a known protocol into an atom, otherwise as an uppercase string
Returns a response created from a request, using a given status code
Returns a response created from a request, using a given status code and a custom reason phrase
Returns the string representation of the given Sippet.Message
struct
Updates the header
in message
with the given function
Updates the last header
value in message
with the given function
Updates the first header
value in message
with the given function
Checks whether a message is valid
Checks whether a message is valid, also checking if it corresponds to the
indicated incoming transport tuple {protocol, host, port}
Types
headers() :: %{optional(:accept) => [type_subtype_params, ...], optional(:accept_encoding) => [token_params, ...], optional(:accept_language) => [token_params, ...], optional(:alert_info) => [uri_params, ...], optional(:allow) => [token, ...], optional(:authentication_info) => params, optional(:authorization) => [auth_params, ...], :call_id => token, optional(:call_info) => [uri_params, ...], optional(:contact) => <<_::1>> | [name_uri_params, ...], optional(:content_disposition) => token_params, optional(:content_encoding) => [token, ...], optional(:content_language) => [token, ...], optional(:content_length) => integer, optional(:content_type) => type_subtype_params, :cseq => {integer, method}, optional(:date) => NaiveDateTime.t, optional(:error_info) => [uri_params, ...], optional(:expires) => integer, :from => name_uri_params, optional(:in_reply_to) => [token, ...], :max_forwards => integer, optional(:mime_version) => {major :: integer, minor :: integer}, optional(:min_expires) => integer, optional(:organization) => binary, optional(:priority) => token, optional(:proxy_authenticate) => [auth_params, ...], optional(:proxy_authorization) => [auth_params, ...], optional(:proxy_require) => [token, ...], optional(:reason) => {binary, params}, optional(:record_route) => [name_uri_params, ...], optional(:reply_to) => name_uri_params, optional(:require) => [token, ...], optional(:retry_after) => {integer, binary, params}, optional(:route) => [name_uri_params, ...], optional(:server) => binary, optional(:subject) => binary, optional(:supported) => [token, ...], optional(:timestamp) => {timestamp :: float, delay :: float}, :to => name_uri_params, optional(:unsupported) => [token, ...], optional(:user_agent) => binary, :via => [via_value, ...], optional(:warning) => [{integer, agent :: binary, binary}, ...], optional(:www_authenticate) => [auth_params, ...], optional(binary) => [binary, ...]}
multiple_value :: token_params | type_subtype_params | uri_params | name_uri_params | via_value | auth_params | params | {code :: integer, agent :: binary, text :: binary}
request() :: %Sippet.Message{body: term, headers: term, start_line: Sippet.Message.RequestLine.t, target: term}
response() :: %Sippet.Message{body: term, headers: term, start_line: Sippet.Message.StatusLine.t, target: term}
single_value :: binary | integer | {sequence :: integer, method} | {major :: integer, minor :: integer} | token_params | type_subtype_params | uri_params | name_uri_params | {delta_seconds :: integer, comment :: binary, params} | {timestamp :: integer, delay :: integer} | <<_::1>> | [name_uri_params, ...] | NaiveDateTime.t
t() :: %Sippet.Message{body: binary | nil, headers: %{optional(header) => value}, start_line: Sippet.Message.RequestLine.t | Sippet.Message.StatusLine.t, target: nil | {protocol :: atom | binary, host :: binary, dport :: integer}}
Functions
Returns a SIP request created from its basic elements.
If the method
is a binary and is a known method, it will be converted to
a lowercase atom; otherwise, it will be stored as an uppercase string. If
method
is an atom, it will be just kept.
If the request_uri
is a binary, it will be parsed as a Sippet.URI
struct.
Otherwise, if it’s already a Sippet.URI
, it will be stored unmodified.
The newly created struct has an empty header map, and the body is nil
.
Examples:
iex> req1 = Sippet.Message.build_request(:invite, "sip:foo@bar.com")
%Sippet.Message{body: nil, headers: %{},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
iex> req2 = Sippet.Message.build_request("INVITE", "sip:foo@bar.com")
iex> request_uri = Sippet.URI.parse!("sip:foo@bar.com")
iex> req3 = Sippet.Message.build_request("INVITE", request_uri)
iex> req1 == req2 and req2 == req3
true
build_response(100..699 | Sippet.Message.StatusLine.t) :: response | no_return
Returns a SIP response created from its basic elements.
The status
parameter can be a Sippet.Message.StatusLine
struct or an
integer in the range 100..699
representing the SIP response status code.
In the latter case, a default reason phrase will be obtained from a default
set; if there’s none, then an exception will be raised.
Examples:
iex> resp1 = Sippet.Message.build_response 200
%Sippet.Message{body: nil, headers: %{},
start_line: %Sippet.Message.StatusLine{reason_phrase: "OK", status_code: 200,
version: {2, 0}}, target: nil}
iex> status_line = Sippet.Message.StatusLine.new(200)
iex> resp2 = status_line |> Sippet.Message.build_response
iex> resp1 == resp2
true
Returns a SIP response with a custom reason phrase.
The status_code
should be an integer in the range 100..699
representing
the SIP status code, and reason_phrase
a binary representing the reason
phrase text.
iex> Sippet.Message.build_response 400, "Bad Lorem Ipsum"
%Sippet.Message{body: nil, headers: %{},
start_line: %Sippet.Message.StatusLine{reason_phrase: "Bad Lorem Ipsum",
status_code: 400, version: {2, 0}}, target: nil}
Creates an unique local branch (72-bit random string, 7+12 characters long).
Example:
Sippet.Message.create_branch
"z9hG4bKuQpiub9h7fBb"
Creates an unique Call-ID (120-bit random string, 20 characters long).
Example
Sippet.create_call_id
"NlV4TfQwkmPlNJkyHPpF"
Creates a local tag (48-bit random string, 8 characters long).
Example:
Sippet.Message.create_tag
"lnTMo9Zn"
Deletes all header
values in message
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.delete_header(:content_language)
%Sippet.Message{body: nil, headers: %{max_forwards: 70},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Deletes the last value of header
in message
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.delete_header_back(:content_language)
%Sippet.Message{body: nil,
headers: %{content_language: ["en-US"], max_forwards: 70},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Deletes the first value of header
in message
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.delete_header_front(:content_language)
%Sippet.Message{body: nil,
headers: %{content_language: ["de-DE"], max_forwards: 70},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Drops all given headers
from message
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.drop_headers([:content_language, :max_forwards])
%Sippet.Message{body: nil, headers: %{},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Fetches all values for a specific header
and returns it in a tuple.
If the header
does not exist, returns :error
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.fetch_header(:content_language)
{:ok, ["en-US", "de-DE"]}
iex> request |> Sippet.Message.fetch_header(:cseq)
:error
Fetches all values for a specific header
in the given message
, erroring
out if message
doesn’t contain header
.
If message
contains the given header
, all corresponding values are
returned in a list. If message
doesn’t contain the header
, a KeyError
exception is raised.
Fetches the last value of a specific header
and returns it in a tuple.
If the header
does not exist, or the value is not a list, returns :error
.
If the header
exists but it is an empty list, returns {:ok, nil}
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.fetch_header_back(:content_language)
{:ok, "de-DE"}
iex> request |> Sippet.Message.fetch_header_back(:max_forwards)
:error
iex> request |> Sippet.Message.fetch_header_back(:cseq)
:error
Fetches the last value of a specific header
in the given message
, erroring
out if message
doesn’t contain header
.
If message
contains the given header
, the last value is returned, which
may be nil
case the values list is empty. If message
doesn’t contain the
header
, a KeyError
exception is raised.
Fetches the first value of a specific header
and returns it in a tuple.
If the header
does not exist, or the value is not a list, returns :error
.
If the header
exists but it is an empty list, returns {:ok, nil}
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:content_language, ["en-US", "de-DE"])
...> |> Sippet.Message.put_header(:max_forwards, 70)
iex> request |> Sippet.Message.fetch_header_front(:content_language)
{:ok, "en-US"}
iex> request |> Sippet.Message.fetch_header_front(:max_forwards)
:error
iex> request |> Sippet.Message.fetch_header_front(:cseq)
:error
Fetches the first value of a specific header
in the given message
, erroring
out if message
doesn’t contain header
.
If message
contains the given header
, the first value is returned, which
may be nil
case the values list is empty. If message
doesn’t contain the
header
, a KeyError
exception is raised.
Gets the values from header
and updates it, all in one pass.
fun
is called with the current values under header
in message
(or nil
if key
is not present in message
) and must return a two-element tuple:
the “get” value (the retrieved values, which can be operated on before being
returned) and the new values to be stored under header
in the resulting new
message. fun
may also return :pop
, which means all current values shall
be removed from message
and returned (making this function behave like
Sippet.Message.pop_header(message, header)
. The returned value is a tuple
with the “get” value returned by fun
and a new message with the updated
values under header
.
get_and_update_header_back(t, header, (multiple_value -> {get, multiple_value} | :pop)) :: {get, t} when get: multiple_value
Gets the last value from header
and updates it, all in one pass.
fun
is called with the current last value under header
in message
(or
nil
if key
is not present in message
) and must return a two-element
tuple: the “get” value (the retrieved value, which can be operated on before
being returned) and the new value to be stored under header
in the
resulting new message. fun
may also return :pop
, which means the current
value shall be removed from message
and returned (making this function
behave like Sippet.Message.pop_header_back(message, header)
. The returned
value is a tuple with the “get” value returned by fun
and a new message
with the updated values under header
.
get_and_update_header_front(t, header, (multiple_value -> {get, multiple_value} | :pop)) :: {get, t} when get: multiple_value
Gets the first value from header
and updates it, all in one pass.
fun
is called with the current first value under header
in message
(or
nil
if key
is not present in message
) and must return a two-element
tuple: the “get” value (the retrieved value, which can be operated on before
being returned) and the new value to be stored under header
in the
resulting new message. fun
may also return :pop
, which means the current
value shall be removed from message
and returned (making this function
behave like Sippet.Message.pop_header_front(message, header)
. The returned
value is a tuple with the “get” value returned by fun
and a new message
with the updated values under header
.
Gets all values for a specific header
in message
.
If header
is present in message
, then all values are returned in a list.
Otherwise, default
is returned (which is nil
unless specified otherwise).
get_header_back(t, header, any) :: multiple_value | any
Gets the last value of a specific header
in message
.
If header
is present in message
, then the last value is returned.
Otherwise, default
is returned (which is nil
unless specified otherwise).
get_header_front(t, header, any) :: multiple_value | any
Gets the first value of a specific header
in message
.
If header
is present in message
, then the first value is returned.
Otherwise, default
is returned (which is nil
unless specified otherwise).
Returns whether a given header
exists in the given message
.
Examples:
iex> request =
...> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header(:cseq, {1, :invite})
iex> request |> Sippet.Message.has_header?(:cseq)
true
Returns a list of all known methods, as a list of uppercase strings.
Example:
iex> Sippet.Message.known_methods()
["ACK", "BYE", "CANCEL", "INFO", "INVITE", "MESSAGE", "NOTIFY", "OPTIONS",
"PRACK", "PUBLISH", "PULL", "PUSH", "REFER", "REGISTER", "STORE", "SUBSCRIBE",
"UPDATE"]
Returns a list of all known transport protocols, as a list of uppercase strings.
Example:
iex> Sippet.Message.known_protocols()
["AMQP", "DCCP", "DTLS", "SCTP", "STOMP", "TCP", "TLS", "UDP", "WS", "WSS"]
Returns the RFC 3261 compliance magic cookie, inserted in via-branch parameters.
Example:
iex> Sippet.Message.magic_cookie
"z9hG4bK"
Parses a SIP message header block as received by the transport layer.
In order to correctly set the message body, you have to verify the
:content_length
header; if it exists, it reflects the body size and you
have to set it manually on the returned message.
Parses a SIP message header block as received by the transport layer.
Raises if the string is an invalid SIP header.
In order to correctly set the message body, you have to verify the
:content_length
header; if it exists, it reflects the body size and you
have to set it manually on the returned message.
Returns and removes the values associated with header
in message
.
If header
is present in message
with values [value]
, {[value],
new_message}
is returned where new_message
is the result of removing
header
from message
. If header
is not present in message
, {default,
message}
is returned.
pop_header_back(t, header, any) :: {multiple_value | any, t}
Returns and removes the last value associated with header
in message
.
If header
is present in message
with values values
,
{List.last(values), new_message}
is returned where new_message
is the
result of removing List.last(values)
from header
. If header
is not
present in message
or it is an empty list, {default, message}
is
returned. When the header
results in an empty list, message
gets updated
by removing the header.
pop_header_front(t, header, any) :: {multiple_value | any, t}
Returns and removes the first value associated with header
in message
.
If header
is present in message
with values values
,
{List.first(values), new_message}
is returned where new_message
is the
result of removing List.first(values)
from header
. If header
is not
present in message
or it is an empty list, {default, message}
is
returned. When the header
results in an empty list, message
gets updated
by removing the header.
Puts the value
under header
on the message
.
If the header already exists, it will be overridden.
Examples:
iex> request = Sippet.Message.build_request(:invite, "sip:foo@bar.com")
iex> request |> Sippet.Message.put_header(:cseq, {1, :invite})
%Sippet.Message{body: nil, headers: %{cseq: {1, :invite}},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Puts the value
under header
on the message
, as last element.
If the parameter value
is nil
, then the empty list will be appended to
the header
.
Examples:
iex> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header_back(:content_language, "en-US")
...> |> Sippet.Message.put_header_back(:content_language, "de-DE")
%Sippet.Message{body: nil, headers: %{content_language: ["en-US", "de-DE"]},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Puts the value
under header
on the message
, as front element.
If the parameter value
is nil
, then the empty list will be prefixed to
the header
.
Examples:
iex> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_header_front(:content_language, "de-DE")
...> |> Sippet.Message.put_header_front(:content_language, "en-US")
%Sippet.Message{body: nil, headers: %{content_language: ["en-US", "de-DE"]},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Puts the value
under header
on the message
unless the header
already
exists.
Examples:
iex> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_new_header(:max_forwards, 70)
...> |> Sippet.Message.put_new_header(:max_forwards, 1)
%Sippet.Message{body: nil, headers: %{max_forwards: 70},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Evaluates fun
and puts the result under header
in message
unless
header
is already present.
This function is useful in case you want to compute the value to put under
header
only if header
is not already present (e.g., the value is
expensive to calculate or generally difficult to setup and teardown again).
Examples:
iex> Sippet.Message.build_request(:invite, "sip:foo@bar.com")
...> |> Sippet.Message.put_new_lazy_header(:max_forwards, fn -> 70 end)
...> |> Sippet.Message.put_new_lazy_header(:max_forwards, fn -> 1 end)
%Sippet.Message{body: nil, headers: %{max_forwards: 70},
start_line: %Sippet.Message.RequestLine{method: :invite,
request_uri: %Sippet.URI{authority: "foo@bar.com", headers: nil,
host: "bar.com", parameters: nil, port: 5060, scheme: "sip",
userinfo: "foo"}, version: {2, 0}}, target: nil}
Shortcut to check if the message is a request.
Examples:
iex> req = Sippet.Message.build_request :invite, "sip:foo@bar.com"
iex> req |> Sippet.Message.request?
true
Shortcut to check if the message is a response.
Examples:
iex> resp = Sippet.Message.build_response 200
iex> resp |> Sippet.Message.response?
true
Returns the iodata representation of the given Sippet.Message
struct.
Converts a string representing a known method into an atom, otherwise as an uppercase string.
Example:
iex> Sippet.Message.to_method("INVITE")
:invite
iex> Sippet.Message.to_method("InViTe")
:invite
iex> Sippet.Message.to_method("aaa")
"AAA"
Converts a string representing a known protocol into an atom, otherwise as an uppercase string.
Example:
iex> Sippet.Message.to_protocol("UDP")
:udp
iex> Sippet.Message.to_protocol("uDp")
:udp
iex> Sippet.Message.to_protocol("aaa")
"AAA"
to_response(request, integer | Sippet.Message.StatusLine.t) :: response | no_return
Returns a response created from a request, using a given status code.
The request
should be a valid SIP request, or an exception will be thrown.
The status
parameter can be a Sippet.Message.StatusLine
struct or an
integer in the range 100..699
representing the SIP response status code.
In the latter case, a default reason phrase will be obtained from a default
set; if there’s none, then an exception will be raised.
Example:
request =
"""
REGISTER sips:ss2.biloxi.example.com SIP/2.0
Via: SIP/2.0/TLS client.biloxi.example.com:5061;branch=z9hG4bKnashds7
Max-Forwards: 70
From: Bob <sips:bob@biloxi.example.com>;tag=a73kszlfl
To: Bob <sips:bob@biloxi.example.com>
Call-ID: 1j9FpLxk3uxtm8tn@biloxi.example.com
CSeq: 1 REGISTER
Contact: <sips:bob@client.biloxi.example.com>
Content-Length: 0
""" |> Sippet.Message.parse!()
request |> Sippet.Message.to_response(200) |> IO.puts
SIP/2.0 200 OK
Via: SIP/2.0/TLS client.biloxi.example.com:5061;branch=z9hG4bKnashds7
To: "Bob" <sips:bob@biloxi.example.com>;tag=K2fizKkV
From: "Bob" <sips:bob@biloxi.example.com>;tag=a73kszlfl
CSeq: 1 REGISTER
Content-Length: 0
Call-ID: 1j9FpLxk3uxtm8tn@biloxi.example.com
:ok
Returns a response created from a request, using a given status code and a custom reason phrase.
The request
should be a valid SIP request, or an exception will be thrown.
The status_code
parameter should be an integer in the range 100..699
representing the SIP response status code. A default reason phrase will be
obtained from a default set; if there’s none, then an exception will be
raised.
The reason_phrase
can be any textual representation of the reason phrase
the application needs to generate, in binary.
Example:
request =
"""
REGISTER sips:ss2.biloxi.example.com SIP/2.0
Via: SIP/2.0/TLS client.biloxi.example.com:5061;branch=z9hG4bKnashds7
Max-Forwards: 70
From: Bob <sips:bob@biloxi.example.com>;tag=a73kszlfl
To: Bob <sips:bob@biloxi.example.com>
Call-ID: 1j9FpLxk3uxtm8tn@biloxi.example.com
CSeq: 1 REGISTER
Contact: <sips:bob@client.biloxi.example.com>
Content-Length: 0
""" |> Sippet.Message.parse!()
request |> Sippet.Message.to_response(400, "Bad Lorem Ipsum") |> IO.puts
SIP/2.0 400 Bad Lorem Ipsum
Via: SIP/2.0/TLS client.biloxi.example.com:5061;branch=z9hG4bKnashds7
To: "Bob" <sips:bob@biloxi.example.com>;tag=K2fizKkV
From: "Bob" <sips:bob@biloxi.example.com>;tag=a73kszlfl
CSeq: 1 REGISTER
Content-Length: 0
Call-ID: 1j9FpLxk3uxtm8tn@biloxi.example.com
:ok
Returns the string representation of the given Sippet.Message
struct.
Updates the header
in message
with the given function.
If header
is present in message
with value value
, fun
is invoked
with argument value
and its result is used as the new value of header
.
If header
is not present in message
, initial
is inserted as the value
of header
.
update_header_back(t, header, value | nil, (multiple_value -> multiple_value)) :: t
Updates the last header
value in message
with the given function.
If header
is present in message
with value [value]
, fun
is invoked
with for last element of [value]
and its result is used as the new value of
header
back. If header
is not present in message
, or it is an empty
list, initial
is inserted as the single value of header
.
update_header_front(t, header, value | nil, (multiple_value -> multiple_value)) :: t
Updates the first header
value in message
with the given function.
If header
is present in message
with value [value]
, fun
is invoked
with for first element of [value]
and its result is used as the new value
of header
front. If header
is not present in message
, or it is an empty
list, initial
is inserted as the single value of header
.
Checks whether a message is valid.