diff options
Diffstat (limited to 'sualibrary/sua/sua_cl.h')
-rw-r--r-- | sualibrary/sua/sua_cl.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/sualibrary/sua/sua_cl.h b/sualibrary/sua/sua_cl.h index ed9bdc7..bd001ea 100644 --- a/sualibrary/sua/sua_cl.h +++ b/sualibrary/sua/sua_cl.h @@ -15,7 +15,7 @@ * * ***************************************************************************/ /* - * $Id: sua_cl.h,v 1.2 2002/03/01 12:57:38 p82609 Exp $ + * $Id: sua_cl.h,v 1.4 2002/04/08 15:28:06 p82609 Exp $ * * SUA implementation according to SUA draft issue 6. * @@ -48,9 +48,9 @@ * - send a SUA message to SCTP * - route/relay a received SUA msg towards to the correct SCTP association * - send a Unitdata msg to remote node - * (- send a Unitdata Service msg to remote node) + * - send a Unitdata Service msg to remote node * - Process a Unitdata msg - * (- Process a Unitdata Service msg) + * - Process a Unitdata Service msg */ #ifndef SUA_CL_H @@ -92,12 +92,24 @@ int sua_send_Unitdata( sccp_QOS_str &QOS, char *buffer, unsigned int len ); + +int sua_send_UDTService( Sua_container &org_msg, + sccp_addr_str &called_pty_address, + sccp_addr_str &calling_pty_address, + unsigned int UDTS_reason + ); short process_unitdata_msg ( int local_sua_id, unsigned int sua_assoc_id, Sua_container &sua_msg ); +short process_UDTService_msg ( int local_sua_id, + unsigned int sua_assoc_id, + Sua_container &sua_msg + ); + + #endif // SUA_CL_H // end of module sua_cl.h |