sipevent misc fixes
This commit is contained in:
parent
39094c71da
commit
a6d0f1b9d1
5 changed files with 10 additions and 5 deletions
|
@ -46,6 +46,7 @@ Modules:
|
|||
* sdp unstable Session Description Protocol
|
||||
* sha testing Secure Hash Standard, NIST, FIPS PUB 180-1
|
||||
* sip unstable Core SIP library
|
||||
* sipevent unstable SIP Event framework
|
||||
* sipreg testing SIP register client
|
||||
* sipsess unstable SIP Sessions
|
||||
* stun unstable Session Traversal Utilities for NAT (STUN)
|
||||
|
@ -76,9 +77,11 @@ Features:
|
|||
* RFC 3261 - SIP: Session Initiation Protocol
|
||||
* RFC 3263 - Locating SIP Servers
|
||||
* RFC 3264 - An Offer/Answer Model with SDP
|
||||
* RFC 3265 - SIP-Specific Event Notification
|
||||
* RFC 3327 - SIP Extension Header Field for Registering Non-Adjacent Contacts
|
||||
* RFC 3428 - SIP Extension for Instant Messaging
|
||||
* RFC 3489 - STUN - Simple Traversal of UDP Through NATs
|
||||
* RFC 3515 - The SIP Refer Method
|
||||
* RFC 3550 - RTP: A Transport Protocol for Real-Time Applications
|
||||
* RFC 3551 - RTP Profile for Audio and Video Conferences with Minimal Control
|
||||
* RFC 3555 - MIME Type Registration of RTP Payload Formats
|
||||
|
|
|
@ -35,6 +35,7 @@ PRJ_EXPORTS
|
|||
..\..\include\re_sdp.h \epoc32\include\re\re_sdp.h
|
||||
..\..\include\re_sha.h \epoc32\include\re\re_sha.h
|
||||
..\..\include\re_sip.h \epoc32\include\re\re_sip.h
|
||||
..\..\include\re_sipevent.h \epoc32\include\re\re_sipevent.h
|
||||
..\..\include\re_sipreg.h \epoc32\include\re\re_sipreg.h
|
||||
..\..\include\re_sipsess.h \epoc32\include\re\re_sipsess.h
|
||||
..\..\include\re_stun.h \epoc32\include\re\re_stun.h
|
||||
|
@ -56,5 +57,6 @@ rebfcp.mmp
|
|||
redns.mmp
|
||||
resdp.mmp
|
||||
resip.mmp
|
||||
resipevent.mmp
|
||||
resipsess.mmp
|
||||
restun.mmp
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @file substate.c SIP Subscription-State header
|
||||
* @file msg.c SIP event messages
|
||||
*
|
||||
* Copyright (C) 2010 Creytiv.com
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @file not.c SIP Event Notify
|
||||
* @file notify.c SIP Event Notify
|
||||
*
|
||||
* Copyright (C) 2010 Creytiv.com
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @file sub.c SIP Event Subscribe
|
||||
* @file subscribe.c SIP Event Subscribe
|
||||
*
|
||||
* Copyright (C) 2010 Creytiv.com
|
||||
*/
|
||||
|
@ -461,7 +461,7 @@ static int sipsub_alloc(struct sipsub **subp, struct sipevent_sock *sock,
|
|||
* @param from_name SIP From-header Name (optional)
|
||||
* @param from_uri SIP From-header URI
|
||||
* @param event SIP Event to subscribe to
|
||||
* @param id SIP Event ID
|
||||
* @param id SIP Event ID (optional)
|
||||
* @param expires Subscription expires value
|
||||
* @param cuser Contact username
|
||||
* @param routev Optional route vector
|
||||
|
@ -508,7 +508,7 @@ int sipevent_subscribe(struct sipsub **subp, struct sipevent_sock *sock,
|
|||
* @param sock SIP Event socket
|
||||
* @param dlg Established SIP Dialog
|
||||
* @param event SIP Event to subscribe to
|
||||
* @param id SIP Event ID
|
||||
* @param id SIP Event ID (optional)
|
||||
* @param expires Subscription expires value
|
||||
* @param cuser Contact username
|
||||
* @param authh Authentication handler
|
||||
|
|
Loading…
Add table
Reference in a new issue