]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
addons: Spelling fixes
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 31 Oct 2021 01:04:34 +0000 (21:04 -0400)
committerFriendly Automation <jenkins2@gerrit.asterisk.org>
Tue, 16 Nov 2021 00:04:11 +0000 (18:04 -0600)
Correct typos of the following word families:

definition
listener
fastcopy
logical
registration
classify
documentation
explicitly
dialed
endpoint
elements
arithmetic
might
prepend
byte
terminal
inquiry
skipping
aliases
calling
absent
authentication
transmit
their
ericsson
disconnecting
redir
items
client
adapter
transmitter
existing
satisfies
pointer
interval
supplied

ASTERISK-29714

Change-Id: I8548438246f7b718d88e0b9e0a1eb384bbec88e4

27 files changed:
addons/chan_mobile.c
addons/chan_ooh323.c
addons/ooh323c/README
addons/ooh323c/src/decode.c
addons/ooh323c/src/encode.c
addons/ooh323c/src/eventHandler.h
addons/ooh323c/src/h323/H323-MESSAGES.h
addons/ooh323c/src/h323/H323-MESSAGESDec.c
addons/ooh323c/src/h323/H323-MESSAGESEnc.c
addons/ooh323c/src/memheap.c
addons/ooh323c/src/ooCalls.c
addons/ooh323c/src/ooCapability.h
addons/ooh323c/src/ooCmdChannel.c
addons/ooh323c/src/ooGkClient.c
addons/ooh323c/src/ooGkClient.h
addons/ooh323c/src/ooLogChan.c
addons/ooh323c/src/ooSocket.h
addons/ooh323c/src/ooUtils.c
addons/ooh323c/src/ooUtils.h
addons/ooh323c/src/ooasn1.h
addons/ooh323c/src/oochannels.c
addons/ooh323c/src/ooh245.c
addons/ooh323c/src/ooh245.h
addons/ooh323c/src/ooh323.c
addons/ooh323c/src/ooh323ep.c
addons/ooh323c/src/ooq931.c
addons/ooh323c/src/ooq931.h

index 240c2d4ee6b1ce6d1570e91b608d35b3bc79b458..c77ca7aee17d14b8991afb08bab94bb56af46857 100644 (file)
@@ -102,7 +102,7 @@ struct adapter_pvt {
        char id[31];                                    /* the 'name' from mobile.conf */
        bdaddr_t addr;                                  /* adddress of adapter */
        unsigned int inuse:1;                           /* are we in use ? */
-       unsigned int alignment_detection:1;             /* do alignment detection on this adpater? */
+       unsigned int alignment_detection:1;             /* do alignment detection on this adapter? */
        struct io_context *io;                          /*!< io context for audio connections */
        struct io_context *accept_io;                   /*!< io context for sco listener */
        int *sco_id;                                    /*!< the io context id of the sco listener socket */
@@ -2006,7 +2006,7 @@ static int at_match_prefix(char *buf, char *prefix)
 }
 
 /*!
- * \brief Read an AT message and clasify it.
+ * \brief Read an AT message and classify it.
  * \param rsock an rfcomm socket
  * \param buf the buffer to store the result in
  * \param count the size of the buffer or the maximum number of characters to read
@@ -2176,7 +2176,7 @@ static int hfp_parse_ecav(struct hfp_pvt *hfp, char *buf)
 }
 
 /*!
- * \brief Enable Sony Erricson extensions / indications.
+ * \brief Enable Sony Ericsson extensions / indications.
  * \param hfp an hfp_pvt struct
  */
 static int hfp_send_ecam(struct hfp_pvt *hfp)
@@ -3040,7 +3040,7 @@ static void msg_queue_free_and_pop(struct mbl_pvt *pvt)
 }
 
 /*!
- * \brief Remove all itmes from the queue and free them.
+ * \brief Remove all items from the queue and free them.
  * \param pvt a mbl_pvt structure
  */
 static void msg_queue_flush(struct mbl_pvt *pvt)
@@ -3347,7 +3347,7 @@ static int handle_response_ok(struct mbl_pvt *pvt, char *buf)
                        }
                        break;
                case AT_CLIP:
-                       ast_debug(1, "[%s] caling line indication enabled\n", pvt->id);
+                       ast_debug(1, "[%s] calling line indication enabled\n", pvt->id);
                        if (hfp_send_ecam(pvt->hfp) || msg_queue_push(pvt, AT_OK, AT_ECAM)) {
                                ast_debug(1, "[%s] error enabling Sony Ericsson call monitoring extensions\n", pvt->id);
                                goto e_return;
@@ -3567,7 +3567,7 @@ static int handle_response_ciev(struct mbl_pvt *pvt, char *buf)
                        if (pvt->owner) {
                                ast_debug(1, "[%s] hanging up owner\n", pvt->id);
                                if (mbl_queue_hangup(pvt)) {
-                                       ast_log(LOG_ERROR, "[%s] error queueing hangup, disconnectiong...\n", pvt->id);
+                                       ast_log(LOG_ERROR, "[%s] error queueing hangup, disconnecting...\n", pvt->id);
                                        return -1;
                                }
                        }
@@ -3601,7 +3601,7 @@ static int handle_response_ciev(struct mbl_pvt *pvt, char *buf)
                                                handle_response_busy(pvt);
                                        }
                                        if (mbl_queue_hangup(pvt)) {
-                                               ast_log(LOG_ERROR, "[%s] error queueing hangup, disconnectiong...\n", pvt->id);
+                                               ast_log(LOG_ERROR, "[%s] error queueing hangup, disconnecting...\n", pvt->id);
                                                return -1;
                                        }
                                }
@@ -4431,7 +4431,7 @@ static struct adapter_pvt *mbl_load_adapter(struct ast_config *cfg, const char *
 
        /* bind the sco listener socket */
        if (sco_bind(adapter) < 0) {
-               ast_log(LOG_ERROR, "Skipping adapter %s. Error binding audio connection listerner socket.\n", adapter->id);
+               ast_log(LOG_ERROR, "Skipping adapter %s. Error binding audio connection listener socket.\n", adapter->id);
                goto e_destroy_io;
        }
 
@@ -4443,7 +4443,7 @@ static struct adapter_pvt *mbl_load_adapter(struct ast_config *cfg, const char *
 
        /* start the sco listener for this adapter */
        if (ast_pthread_create_background(&adapter->sco_listener_thread, NULL, do_sco_listen, adapter)) {
-               ast_log(LOG_ERROR, "Skipping adapter %s. Error creating audio connection listerner thread.\n", adapter->id);
+               ast_log(LOG_ERROR, "Skipping adapter %s. Error creating audio connection listener thread.\n", adapter->id);
                goto e_remove_sco;
        }
 
@@ -4499,7 +4499,7 @@ static struct mbl_pvt *mbl_load_device(struct ast_config *cfg, const char *cat)
        }
        AST_RWLIST_UNLOCK(&adapters);
        if (!adapter) {
-               ast_log(LOG_ERROR, "Skiping device %s. Unknown adapter '%s' specified.\n", cat, adapter_str);
+               ast_log(LOG_ERROR, "Skipping device %s. Unknown adapter '%s' specified.\n", cat, adapter_str);
                goto e_return;
        }
 
index 3fe29cc9951f67336d880d4d6de7a7a9c8e147f3..61ed1cca1f4a1694b1808a21f51386186b8fc8cb 100644 (file)
@@ -2060,7 +2060,7 @@ int onOutgoingCall(ooCallData *call)
                        }
                        ooCallAddAliasDialedDigits(call, p->caller_dialedDigits);
                } else if (!ast_strlen_zero(p->callerid_num)) {
-                       if (ooIsDailedDigit(p->callerid_num)) {
+                       if (ooIsDialedDigit(p->callerid_num)) {
                                if (gH323Debug) {
                                        ast_verb(0, "setting callid number %s\n", p->callerid_num);
                                }
@@ -2141,7 +2141,7 @@ int onNewCallCreated(ooCallData *call)
                        }
                        ooCallAddAliasDialedDigits(call, p->caller_dialedDigits);
                } else if (!ast_strlen_zero(p->callerid_num)) {
-                       if (ooIsDailedDigit(p->callerid_num)) {
+                       if (ooIsDialedDigit(p->callerid_num)) {
                                if (gH323Debug) {
                                        ast_verb(0, "setting callid number %s\n", p->callerid_num);
                                }
@@ -2153,7 +2153,7 @@ int onNewCallCreated(ooCallData *call)
 
 
                if (!ast_strlen_zero(p->exten))  {
-                       if (ooIsDailedDigit(p->exten)) {
+                       if (ooIsDialedDigit(p->exten)) {
                                ooCallSetCalledPartyNumber(call, p->exten);
                                ooCallAddRemoteAliasDialedDigits(call, p->exten);
                        } else {
index 323174709802aea5ae7724df3e13a3b51fc1d75f..a4a0036af53c8f92c990e1d0d16eb33112518df3 100644 (file)
@@ -75,7 +75,7 @@ To run the stack test application chansetup
 3. For running calling instance
 
         ./h323peer [--use-ip ip] -n <number of calls> -duration <call duration>
-                   -interval <inetrval between successive calls> destination
+                   -interval <interval between successive calls> destination
 
    where all times are in seconds. Interval of 0 means next call will be placed
    after current call finishes. "destination" is the dotted ip address of the
index d0579c69b5a8c3d819dfb40ecb41811dfe9be466..c260d8c0add5ce601e516dfa64999dda3c025d83 100644 (file)
@@ -417,7 +417,7 @@ int decodeDynBitString (OOCTXT* pctxt, ASN1DynBitStr* pBitStr)
    ASN1OCTET* ptmp;
    int nbits, stat = ASN_OK;
 
-   /* If "fast copy" option is not set (ASN1FATSCOPY) or if constructed,
+   /* If "fast copy" option is not set (ASN1FASTCOPY) or if constructed,
     * copy the bit string value into a dynamic memory buffer;
     * otherwise, store the pointer to the value in the decode
     * buffer in the data pointer argument. */
index b48733be84211274551c779abcc5a7acf29f6abd..4d12912982dcf192464acb70d24a04f5432474a8 100644 (file)
@@ -1007,7 +1007,7 @@ int encode2sCompBinInt (OOCTXT* pctxt, ASN1INT value)
 {
    /* 10.4.6  A minimum octet 2's-complement-binary-integer encoding    */
    /* of the whole number has a field width that is a multiple of 8     */
-   /* bits and also satisifies the condition that the leading 9 bits    */
+   /* bits and also satisfies the condition that the leading 9 bits     */
    /* field shall not be all zeros and shall not be all ones.           */
 
    /* first encode integer value into a local buffer */
@@ -1048,7 +1048,7 @@ static int encodeNonNegBinInt (OOCTXT* pctxt, ASN1UINT value)
    /* 10.3.6  A minimum octet non-negative binary integer encoding of   */
    /* the whole number (which does not predetermine the number of       */
    /* octets to be used for the encoding) has a field which is a        */
-   /* multiple of 8 bits and also satisifies the condition that the     */
+   /* multiple of 8 bits and also satisfies the condition that the      */
    /* leading eight bits of the field shall not be zero unless the      */
    /* field is precisely 8 bits long.                                   */
 
index 32719c58a87a3abdc48427408f7febd9f063ee35..0f98f333d04fc0e386dd7ab5138b2fda7a9cdd73 100644 (file)
@@ -49,7 +49,7 @@ extern "C" {
  * SEQUENCE OF, SET OF, or CHOICE construct is parsed.
  *
  * @param name         For SEQUENCE, SET, or CHOICE, this is the name of the
- *                       element as defined in the ASN.1 defination. For
+ *                       element as defined in the ASN.1 definition. For
  *                       SEQUENCE OF or SET OF, this is set to the name
  *                       "element".
  * @param index        For SEQUENCE, SET, or CHOICE, this is not used and is
@@ -68,7 +68,7 @@ typedef void (*StartElement) (const char* name, int index) ;
  * SEQUENCE, SET, SEQUENCE OF, SET OF, or CHOICE construct.
  *
  * @param name         For SEQUENCE, SET, or CHOICE, this is the name of the
- *                       element as defined in the ASN.1 defination. For
+ *                       element as defined in the ASN.1 definition. For
  *                       SEQUENCE OF or SET OF, this is set to the name
  *                       "element".
  * @param index        For SEQUENCE, SET, or CHOICE, this is not used and is
@@ -194,7 +194,7 @@ typedef void (*EnumValue) (ASN1UINT value) ;
  * within a decode function when an ASN.1 open type is parsed.
  *
  * @param numocts      Number of octets in the parsed value.
- * @param data         Pointer to byet array contain in tencoded ASN.1
+ * @param data         Pointer to byte array contain in tencoded ASN.1
  *                       value.
  * @return             - none
  */
index eb32ad9c9d273956cb26fb422b627b6f28784883..0ae8d5d75d38b9d0c5d87da67f1b4ded3f66f2f4 100644 (file)
@@ -1926,7 +1926,7 @@ typedef struct EXTERN H225SecurityCapabilities {
    } m;
    H225NonStandardParameter nonStandard;
    H225SecurityServiceMode encryption;
-   H225SecurityServiceMode authenticaton;
+   H225SecurityServiceMode authentication;
    H225SecurityServiceMode integrity;
 } H225SecurityCapabilities;
 
index 4a641e43b8caeba443b97d962c91c98e58fff474..7fcb74768657c32647ebdd0d1de99b4782219cab 100644 (file)
@@ -6357,14 +6357,14 @@ EXTERN int asn1PD_H225SecurityCapabilities (OOCTXT* pctxt, H225SecurityCapabilit
 
    invokeEndElement (pctxt, "encryption", -1);
 
-   /* decode authenticaton */
+   /* decode authentication */
 
-   invokeStartElement (pctxt, "authenticaton", -1);
+   invokeStartElement (pctxt, "authentication", -1);
 
-   stat = asn1PD_H225SecurityServiceMode (pctxt, &pvalue->authenticaton);
+   stat = asn1PD_H225SecurityServiceMode (pctxt, &pvalue->authentication);
    if (stat != ASN_OK) return stat;
 
-   invokeEndElement (pctxt, "authenticaton", -1);
+   invokeEndElement (pctxt, "authentication", -1);
 
    /* decode integrity */
 
index 20159008acd7c88c74424e564fc6bb17a49108e3..1c3948fc800f7d333437c700482ec15c380cc0be 100644 (file)
@@ -4408,9 +4408,9 @@ EXTERN int asn1PE_H225SecurityCapabilities (OOCTXT* pctxt, H225SecurityCapabilit
    stat = asn1PE_H225SecurityServiceMode (pctxt, &pvalue->encryption);
    if (stat != ASN_OK) return stat;
 
-   /* encode authenticaton */
+   /* encode authentication */
 
-   stat = asn1PE_H225SecurityServiceMode (pctxt, &pvalue->authenticaton);
+   stat = asn1PE_H225SecurityServiceMode (pctxt, &pvalue->authentication);
    if (stat != ASN_OK) return stat;
 
    /* encode integrity */
index 33be66765eaa539821fd8d52359c40f8136569df..5446522ceb808dbc6fa827ff931fcf3f23436daf 100644 (file)
@@ -265,7 +265,7 @@ void* memHeapAlloc (void** ppvMemHeap, int nbytes)
                   if (nunits <= (ASN1UINT)pElem_nunits (pElem)) {
                      RTMEMDIAG3
                         ("memHeapAlloc: "
-                         "found an exisiting free element 0x%x, size %d\n",
+                         "found an existing free element 0x%x, size %d\n",
                         pElem, (pElem_nunits (pElem) * 8u));
 
                      if (pMemBlk->freeElemOff ==
@@ -1214,7 +1214,7 @@ static OSMemLink* memHeapAddBlock (OSMemLink** ppMemLink,
 
    /* if pMemBlk has RTMEMLINK flags it means that it is allocated
     * cooperatively with OSMemLink, and we don't need to do additional
-    * allocations for it. Just use pointer's arithemtic. */
+    * allocations for it. Just use pointer's arithmetic. */
 
    if (blockType & RTMEMLINK)
       pMemLink = (OSMemLink*) (((ASN1OCTET*)pMemBlk) - sizeof (OSMemLink));
index 15ab3258f4fc83c371af89c07b835445deef9831..ee4fc895b488c9ffe11268d2400858723da35aa4 100644 (file)
@@ -783,7 +783,7 @@ OOH323CallData* ooFindCallByToken(const char *callToken)
 
 
 
-/* Checks whether session with suplied ID and direction is already active*/
+/* Checks whether session with supplied ID and direction is already active*/
 ASN1BOOL ooIsSessionEstablished(OOH323CallData *call, int sessionID, char* dir)
 {
    OOLogicalChannel * temp = NULL;
index ce9cc392f4154ed3d4a87de2bcc9b785356541f2..36bb1a5b5aa2b91f8918c94061796de4fe861a64 100644 (file)
@@ -294,7 +294,7 @@ EXTERN int ooCapabilityDisableDTMFQ931Keypad(struct OOH323CallData *call);
  * and txframes parameters to the endpoint or call.(ex. G711, G728, G723.1,
  * G729)
  * @param call                 Handle to a call. If this is not Null, then
- *                             capability is added to call's remote enpoint
+ *                             capability is added to call's remote endpoint
  *                             capability list, else it is added to local H323
  *                             endpoint list.
  * @param cap                  Type of G711 capability to be added.
@@ -326,7 +326,7 @@ EXTERN int ooCapabilityAddSimpleCapability
  * to local endpoints capability list or to remote endpoints capability list or
  * to a call's capability list.
  * @param call                 Handle to a call. If this is not Null, then
- *                             capability is added to call's remote enpoint
+ *                             capability is added to call's remote endpoint
  *                             capability list, else it is added to local H323
  *                             endpoint list.
  * @param cap                  Type of GSM capability to be added.
@@ -357,7 +357,7 @@ int ooCapabilityAddGSMCapability(struct OOH323CallData *call, int cap,
  * capability list or to remote endpoints capability list or to a call's
  * capability list.
  * @param call                 Handle to a call. If this is not Null, then
- *                             capability is added to call's remote enpoint
+ *                             capability is added to call's remote endpoint
  *                             capability list, else it is added to local H323
  *                             endpoint list.
  * @param sqcifMPI             Minimum picture interval for encoding/decoding
@@ -396,7 +396,7 @@ EXTERN int ooCapabilityAddH263VideoCapability(struct OOH323CallData *call,
 /**
  * This function is an helper function to ooCapabilityAddH263VideoCapability.
  * @param call                 Handle to a call. If this is not Null, then
- *                             capability is added to call's remote enpoint
+ *                             capability is added to call's remote endpoint
  *                             capability list, else it is added to local H323
  *                             endpoint list.
  * @param sqcifMPI             Minimum picture interval for encoding/decoding
@@ -717,11 +717,11 @@ EXTERN int ooAppendCapToCapPrefs(struct OOH323CallData *call, int cap);
 EXTERN int ooChangeCapPrefOrder(struct OOH323CallData *call, int cap, int pos);
 
 /**
- * This function is used to preppend a particular capability to preference
+ * This function is used to prepend a particular capability to preference
  * list.
  * @param call     Handle to call, if call's preference list has to be modified
  *                 else NULL, to modify endpoint's preference list.
- * @param cap      Capability to be preppended.
+ * @param cap      Capability to be prepended.
  *
  * @return         OO_OK, on success. OO_FAILED, otherwise.
  */
index 0cdb9dddfee489932a3d507d5bd7226feb25125e..ec38c4afcb6a7b0745f0b5b042e6a92d1d9bfa48 100644 (file)
@@ -186,7 +186,7 @@ int ooReadAndProcessStackCommand()
                 if(!pCall) {
                    OOTRACEINFO2("Call \"%s\" does not exist\n",
                                 (char*)cmd.param1);
-                   OOTRACEINFO1("Call migth be cleared/closed\n");
+                   OOTRACEINFO1("Call might be cleared/closed\n");
                 }
                 else {
                      ooSendProgress(ooFindCallByToken((char*)cmd.param1));
@@ -200,7 +200,7 @@ int ooReadAndProcessStackCommand()
                   if(!pCall) {
                      OOTRACEINFO2("Call \"%s\" does not exist\n",
                                   (char*)cmd.param1);
-                     OOTRACEINFO1("Call migth be cleared/closed\n");
+                     OOTRACEINFO1("Call might be cleared/closed\n");
                   }
                   else {
                      ooSendAlerting(ooFindCallByToken((char*)cmd.param1));
index 5ec33eef93a9adb108680442d5a847c92901497f..174baab12533ac3d22267f477132c8b35fab7d59 100644 (file)
@@ -1231,7 +1231,7 @@ int ooGkClientHandleRegistrationConfirm
                                 (&pGkClient->ctxt, sizeof(ooGkClientTimerCb));
       if(!cbData)
       {
-         OOTRACEERR1("Error:Failed to allocate memory for Regisration timer."
+         OOTRACEERR1("Error:Failed to allocate memory for Registration timer."
                      "\n");
          pGkClient->state = GkClientFailed;
          return OO_FAILED;
@@ -1927,7 +1927,7 @@ int ooGkClientSendAdmissionRequest
                                (&pGkClient->ctxt, sizeof(ooGkClientTimerCb));
    if(!cbData)
    {
-      OOTRACEERR1("Error:Failed to allocate memory for Regisration timer."
+      OOTRACEERR1("Error:Failed to allocate memory for Registration timer."
                   "\n");
       pGkClient->state = GkClientFailed;
       ast_mutex_unlock(&pGkClient->Lock);
index e529b4a9876480110083de7a5128150f8a02e08a..b7bde935aa4db3f17412b1e570b0e8c77d5f14d1 100644 (file)
@@ -318,7 +318,7 @@ EXTERN int ooGkClientHandleRASMessage
 
 
 /**
- * This function is used to send a message on Gatekeeper clien't RAS channel.
+ * This function is used to send a message on Gatekeeper client RAS channel.
  * @param pGkClient   Handle to the gatekeeper client.
  * @param pRasMsg     Handle to Ras message to be sent.
  *
index 05b152a86f601745e4dd11fe6f75c88e8ffd30e5..2b659b3f96889f133f0021529bf4ceb09ec77b63 100644 (file)
@@ -78,7 +78,7 @@ OOLogicalChannel* ooAddNewLogicalChannel(OOH323CallData *call, int channelNo,
       OOTRACEDBGC3("Using configured media info (%s, %s)\n", call->callType,
                    call->callToken);
       pNewChannel->localRtpPort = pMediaInfo->lMediaRedirPort ? pMediaInfo->lMediaRedirPort : pMediaInfo->lMediaPort;
-      /* check MediaRedirPort here because RedirCPort is ReditPort + 1 and can't be 0 ;) */
+      /* check MediaRedirPort here because RedirCPort is RedirPort + 1 and can't be 0 ;) */
       pNewChannel->localRtcpPort = pMediaInfo->lMediaRedirPort ? pMediaInfo->lMediaRedirCPort : pMediaInfo->lMediaCntrlPort;
       /* If user application has not specified a specific ip and is using
          multihomed mode, substitute appropriate ip.
index b4cbf881b5f1cba27276160f75c0480d69242f0a..d22382fff3dd7eac49a0b6c7874429d3ccc6263b 100644 (file)
@@ -318,7 +318,7 @@ EXTERN int ooSocketSendTo(OOSOCKET socket, const ASN1OCTET* pdata,
 
 /**
  * This function is used for synchronous monitoring of multiple sockets.
- * For more information refer to documnetation of "select" system call.
+ * For more information refer to documentation of "select" system call.
  *
  * @param nfds         The highest numbered descriptor to be monitored
  *                     plus one.
index c71933cb73d4e63ae5765f750a06c34856e35d8b..fb60746f6ab4e2d2605744524f3ffa9fda1aa3d4 100644 (file)
@@ -30,7 +30,7 @@ OOBOOL ooUtilsIsStrEmpty (const char* str)
 }
 
 
-OOBOOL ooIsDailedDigit(const char* str)
+OOBOOL ooIsDialedDigit(const char* str)
 {
    if(str == NULL || *str =='\0') { return FALSE; }
    while(*str != '\0')
index 78aee325c06c0bf391cd51e5c9facd46c464cfd1..ff9b16d1658d4fef2058021e1ad7bd7d42b13617 100644 (file)
@@ -48,6 +48,6 @@ EXTERN OOBOOL ooUtilsIsStrEmpty (const char * str);
  * @param str    String to test
  * @return       TRUE if string contains all digits; FALSE otherwise
  */
-EXTERN OOBOOL ooIsDailedDigit(const char* str);
+EXTERN OOBOOL ooIsDialedDigit(const char* str);
 
 #endif
index 4fee6211606fc335d2ab808c12dec7669d171cc2..931515044176428d69aa77a3a2f998eb5c7f9ab8 100644 (file)
@@ -607,7 +607,7 @@ EXTERN int initContextBuffer
 /**
  * This function initializes a context block. It makes sure that if the block
  * was not previosly initialized, that all key working parameters are set to
- * thier correct initial state values (i.e. declared within a function as a
+ * their correct initial state values (i.e. declared within a function as a
  * normal working variable), it is required that they invoke this function
  * before using it.
  *
index 3add1f30c668907d700421c3166b25083194569c..8250c8b2f988a239f2c28144895f39ca06699a5e 100644 (file)
@@ -297,7 +297,7 @@ int ooCreateH225Connection(OOH323CallData *call)
       {
          call->pH225Channel->sock = channelSocket;
 
-         OOTRACEINFO3("H2250 transmiter channel creation - successful "
+         OOTRACEINFO3("H2250 transmitter channel creation - successful "
                       "(%s, %s)\n", call->callType, call->callToken);
 
          /* If multihomed, get ip from socket */
index fe8ff28e08e8a235ebfce0d7a008c1f4c624ecf0..014e49d570dabca9aee75650f4e2eb433fd56989 100644 (file)
@@ -2559,7 +2559,7 @@ int ooOnReceivedRequestChannelClose(OOH323CallData *call,
    if (lChannel->state == OO_LOGICALCHAN_ESTABLISHED) {
      ret = ooSendCloseLogicalChannel(call, lChannel);
      if (ret != OO_OK) {
-      OOTRACEERR3("ERROR:Failed to build CloseLgicalChannel message(%s, %s)\n",
+      OOTRACEERR3("ERROR:Failed to build CloseLogicalChannel message(%s, %s)\n",
                    call->callType, call->callToken);
       return OO_FAILED;
      }
index 9635a4e10c1b10deb3a941904abc3d56cde17347..362ed7ddae28d748f3def2afd084d9d51db91b39 100644 (file)
@@ -174,7 +174,7 @@ EXTERN int ooSendMasterSlaveDeterminationReject (struct OOH323CallData* call);
  * MasterSlaveDetermination procedure.
  * @param call        Handle to the call for which MasterSlaveReject is
  *                    received.
- * @param reject      Poinetr to the received reject message.
+ * @param reject      Pointer to the received reject message.
  *
  * @return            OO_OK, on success. OO_FAILED, on failure.
  */
@@ -271,7 +271,7 @@ EXTERN int ooOnReceivedUserInputIndication
    (OOH323CallData *call, H245UserInputIndication *indication);
 
 /**
- * This function is called on receiving a TreminalCapabilitySetAck message.
+ * This function is called on receiving a TerminalCapabilitySetAck message.
  * If the MasterSlaveDetermination process is also over, this function
  * initiates the process of opening logical channels.
  * @param call          Pointer to call for which TCSAck is received.
index ebdf75a3424e437f0e345ed55a47a03c781798ed..93e90454c200f70d743f61a7c32799271485fb31 100644 (file)
@@ -616,7 +616,7 @@ int ooOnReceivedSetup(OOH323CallData *call, Q931Message *q931Msg)
               removeEventHandler(call->pctxt);
               return OO_FAILED;
          }
-         /* For now, just add decoded fast start elemts to list. This list
+         /* For now, just add decoded fast start elements to list. This list
             will be processed at the time of sending CONNECT message. */
          dListAppend(call->pctxt, &call->remoteFastStartOLCs, olc);
       }
index be43896e186ae23a8d3fcfc68a7c9fe739f0666f..5ae344432aef54844f5827d749b368c68b5a8ef4 100644 (file)
@@ -65,7 +65,7 @@ int ooH323EpInitialize
    }
 
    /* Initialize default port ranges that will be used by stack.
-      Apps can override these by explicitely setting port ranges
+      Apps can override these by explicitly setting port ranges
    */
 
    gH323ep.tcpPorts.start = TCPPORTSSTART;
index fc18703921fa8bbf5c28c64ee0d8f7be99b7fa0a..fe8b06ebee5081554fea1d6e54bdfbf5a44948bc 100644 (file)
@@ -1210,7 +1210,7 @@ int ooSetFastStartResponse(OOH323CallData *pCall, Q931Message *pQ931msg,
          pChannel = ooFindLogicalChannelByLogicalChannelNo
                       (pCall, olc->forwardLogicalChannelNumber);
 
-         /* start receive and tramsmit channel listening */
+         /* start receive and transmit channel listening */
          if(dir & OORX)
          {
             strcpy(pChannel->remoteIP, remoteMediaControlIP);
@@ -2025,7 +2025,7 @@ int ooSendStatusInquiry(OOH323CallData *call)
    /* OOCTXT *pctxt = &gH323ep.msgctxt; */
    OOCTXT *pctxt = call->msgctxt;
 
-   OOTRACEDBGC3("Building StatusInquryMsg (%s, %s)\n", call->callType,
+   OOTRACEDBGC3("Building StatusInquiryMsg (%s, %s)\n", call->callType,
                  call->callToken);
    ret = ooCreateQ931Message(pctxt, &q931msg, Q931StatusEnquiryMsg);
    if(ret != OO_OK)
@@ -2987,7 +2987,7 @@ int ooH323MakeCall_helper(OOH323CallData *call)
          }
          if(!epCap)
          {
-            OOTRACEWARN4("Warn:Preferred capability %s is abscent in "
+            OOTRACEWARN4("Warn:Preferred capability %s is absent in "
                          "capability list. (%s, %s)\n",
                          ooGetCapTypeText(call->capPrefs.order[k]),
                          call->callType, call->callToken);
index 31e53e92955b23648d1f524a2e4c01cbe4ee019a..03b257c66898c2f9c3b1671d24c025b6649f93c0 100644 (file)
@@ -582,7 +582,7 @@ EXTERN int ooH323MakeCall_helper(struct OOH323CallData *call);
  * @param dest      Destination string to be parsed.
  * @param parsedIP  Pointer to buffer in which parsed ip:port will be returned.
  * @param len       Length of the buffer passed.
- * @param aliasList Aliase List in which new aliases will be added.
+ * @param aliasList Aliases List in which new aliases will be added.
  *
  * @return          OO_OK, on success. OO_FAILED, on failure.
  */