[asterisk-scf-commits] asterisk-scf/integration/slice.git branch "partyidextensionpoint" created.

Commits to the Asterisk SCF project code repositories asterisk-scf-commits at lists.digium.com
Fri Sep 23 10:15:37 CDT 2011


branch "partyidextensionpoint" has been created
        at  d667b6874a982b78f5d72b0befcc1b174e3d5738 (commit)

- Log -----------------------------------------------------------------
commit d667b6874a982b78f5d72b0befcc1b174e3d5738
Author: Ken Hunt <ken.hunt at digium.com>
Date:   Fri Sep 23 10:13:55 2011 -0500

    Added some sequence type definitions to Party Id extension point definitions to aid in replication and general implementation.

diff --git a/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsExtensionPointsIf.ice b/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsExtensionPointsIf.ice
index 784896c..7cc8f14 100644
--- a/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsExtensionPointsIf.ice
+++ b/slice/AsteriskSCF/SessionCommunications/SessionCommunicationsExtensionPointsIf.ice
@@ -101,9 +101,10 @@ module V1
          */
         AsteriskSCF::System::Hook::V1::HookResult modifyReceivedConnectedLine(
             AsteriskSCF::SessionCommunications::V1::Session *sendingSession, 
-            AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine receviedConnectedLineUpdate,
+            AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine receivedConnectedLineUpdate,
             out AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine replacementConnectedLineUpdate);
     };
+    sequence<ReceivedConnectedLinePartyIdHook*> ReceivedConnectedLinePartyIdHookSeq;
 
     /**
      * Hook into party identification ConnectedLine record
@@ -121,16 +122,17 @@ module V1
          *
          * @param sendingSession The session that has sent ConnectedLine information.
          * @param destinationSession The session that will receive the ConnectedLine information.
-         * @param[out] receivedConnectedLineUpdate The data received from the sending session.
-         * @param[out] replacementConnectedLineUpdate Modified data to be used.
+         * @param[out] receivedConnectedLine The data received from the sending session.
+         * @param[out] replacementConnectedLine Modified data to be used.
          * @return A HookResult indicating whether the hook was successful
          */
         AsteriskSCF::System::Hook::V1::HookResult modifyForwardingConnectedLine(
             AsteriskSCF::SessionCommunications::V1::Session *sendingSession, 
             AsteriskSCF::SessionCommunications::V1::Session *destinationSession, 
-            AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine receviedConnectedLineUpdate,
-            out AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine replacementConnectedLineUpdate);
+            AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine receivedConnectedLine,
+            out AsteriskSCF::SessionCommunications::PartyIdentification::V1::ConnectedLine replacementConnectedLine);
     };
+    sequence<ForwardingConnectedLinePartyIdHook*> ForwardingConnectedLinePartyIdHookSeq;
 
     /**
      * Hook into party identification Redirecting record. This hook
@@ -159,6 +161,7 @@ module V1
             AsteriskSCF::SessionCommunications::PartyIdentification::V1::Redirecting receivedRedirecting,
            out AsteriskSCF::SessionCommunications::PartyIdentification::V1::Redirecting replacementRedirecting);
     };
+    sequence<ForwardingRedirectingPartyIdHook*> ForwardingRedirectingPartyIdHookSeq;
 
     interface PartyIdentificationExtensionPoint
     {

-----------------------------------------------------------------------


-- 
asterisk-scf/integration/slice.git



More information about the asterisk-scf-commits mailing list