Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
sofia-sip
Commits
36dd432f
Commit
36dd432f
authored
Mar 17, 2006
by
Pekka Pessi
Browse files
Added nua_prack().
darcs-hash:20060317175305-65a35-16e6d37d99cd66b0634c66c8eab4db7824549cb2.gz
parent
a5ecc871
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
10 deletions
+30
-10
libsofia-sip-ua/nua/nua.c
libsofia-sip-ua/nua/nua.c
+30
-10
No files found.
libsofia-sip-ua/nua/nua.c
View file @
36dd432f
...
...
@@ -1162,8 +1162,7 @@ void nua_unpublish(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
/** Send an INFO request.
*
* INFO is used to send call related information like DTMF
* digit input events. See
* <a href="http://www.ietf.org/rfc/rfc2976.txt">RFC 2976</a>
* digit input events. See @RFC2976.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
...
...
@@ -1182,16 +1181,37 @@ void nua_info(nua_handle_t *nh, tag_type_t tag, tag_value_t value, ...)
NUA_SIGNAL
(
nh
,
nua_r_info
,
tag
,
value
);
}
/** Send a PRACK request.
*
* PRACK is used to acknowledge receipt of 100rel responses. See @RFC3262.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
*
* @return
* nothing
*
* @par Related Tags:
* Tags in <sofia-sip/soa_tag.h>, <sofia-sip/sip_tag.h>.
*
* @par Events:
* #nua_r_prack
*/
void
nua_prack
(
nua_handle_t
*
nh
,
tag_type_t
tag
,
tag_value_t
value
,
...)
{
NUA_SIGNAL
(
nh
,
nua_r_prack
,
tag
,
value
);
}
/** Update a session.
*
* Update a session using SIP UPDATE method. See RFC
* <a href="http://www.ietf.org/rfc/rfc3311.txt">RFC 3311</a>
*
* Update method can be used when the session has been established
* with INVITE. It's mainly used during the session establishment
* when preconditions are used (
* <a href="http://www.ietf.org/rfc/rfc3312.txt">RFC 3312</a>
* ). It can be also used during the call if no user input is needed.
* Update a session using SIP UPDATE method. See @RFC3311.
*
* Update method can be used when the session has been established with
* INVITE. It's mainly used during the session establishment when
* preconditions are used (@RFC3312). It can be also used during the call if
* no user input is needed for offer/answer negotiation.
*
* @param nh Pointer to operation handle
* @param tag, value, ... List of tagged parameters
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment