Navigation


Changeset 972:ce3cacbbccc9 in freeDiameter for extensions


Ignore:
Timestamp:
Mar 15, 2013, 1:31:00 AM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Fix some typos.

Location:
extensions
Files:
13 edited

Legend:

Unmodified
Added
Removed
  • extensions/app_radgw/md5.c

    r403 r972  
    33 *  The content from this file comes directly from the hostap project.
    44 * It is redistributed under the terms of the BSD license, as allowed
    5  * by the original copyright reproduced bellow.
     5 * by the original copyright reproduced below.
    66 *  In addition to this notice, only the #include directives have been modified.
    77 */
  • extensions/app_radgw/md5.h

    r403 r972  
    33 *  The content from this file comes directly from the hostap project.
    44 * It is redistributed under the terms of the BSD license, as allowed
    5  * by the original copyright reproduced bellow.
     5 * by the original copyright reproduced below.
    66 */
    77
  • extensions/app_radgw/radius.c

    r741 r972  
    3737 *  The content from this file comes for the main part from the hostap project.
    3838 * It is redistributed under the terms of the BSD license, as allowed
    39  * by the original copyright reproduced bellow.
     39 * by the original copyright reproduced below.
    4040 * The modifications to this file are placed under the copyright of the freeDiameter project.
    4141 */
  • extensions/app_radgw/radius.h

    r741 r972  
    3838 *  The content from this file comes mostly from the hostap project.
    3939 * It is redistributed under the terms of the BSD license, as allowed
    40  * by the original copyright reproduced bellow.
     40 * by the original copyright reproduced below.
    4141 * The changes to this file are placed under the copyright of the freeDiameter project.
    4242 */
  • extensions/app_radgw/rgwx_auth.c

    r928 r972  
    10991099                 Request will have access to the Session Identifier and be able
    11001100                 to set the Destination-Host to the correct value.
    1101                         -> done here bellow
     1101                        -> done here below
    11021102                 
    11031103              -  If the Command-Code is set to AA-Answer, the Diameter Session-
  • extensions/app_sip/app_sip.c

    r732 r972  
    122122       
    123123       
    124         //We set usefull AVPs
     124        //We set useful AVPs
    125125        CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_AVP, AVP_BY_NAME, "Auth-Session-State", &sip_dict.Auth_Session_State, ENOENT) );
    126126        CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_AVP, AVP_BY_NAME, "Auth-Application-Id", &sip_dict.Auth_Application_Id, ENOENT) );
  • extensions/app_sip/app_sip.h

    r959 r972  
    218218};
    219219
    220 //Storage for some usefull AVPs
     220//Storage for some useful AVPs
    221221struct app_sip_dict{
    222222        struct dict_object * Auth_Session_State;
  • extensions/app_sip/md5.c

    r433 r972  
    33 *  The content from this file comes directly from the hostap project.
    44 * It is redistributed under the terms of the BSD license, as allowed
    5  * by the original copyright reproduced bellow.
     5 * by the original copyright reproduced below.
    66 *  In addition to this notice, only the #include directives have been modified.
    77 */
  • extensions/app_sip/md5.h

    r360 r972  
    33 *  The content from this file comes directly from the hostap project.
    44 * It is redistributed under the terms of the BSD license, as allowed
    5  * by the original copyright reproduced bellow.
     5 * by the original copyright reproduced below.
    66 *  The file has not been modified, except for this notice.
    77 */
  • extensions/dbg_interactive/dictionary.i

    r741 r972  
    197197/* The following wrapper leaks memory each time an union avp_value is assigned an octet string.
    198198 TODO: fix this leak by better understanding SWIG...
    199    -- the alternative is to uncomment the "free" statements bellow, but then it is easy to
     199   -- the alternative is to uncomment the "free" statements below, but then it is easy to
    200200   create a segmentation fault by assigning first an integer, then an octetstring.
    201201 */
  • extensions/test_netemul/tne_process.c

    r740 r972  
    5858static pthread_t       thr = (pthread_t)NULL;
    5959
    60 /* The lists bellow are all protected by the same mutex mtx */
     60/* The lists below are all protected by the same mutex mtx */
    6161static struct fd_list input = FD_LIST_INITIALIZER(input); /* messages received from network */
    6262static struct fd_list forlat = FD_LIST_INITIALIZER(forlat); /* messages after duplicate filter */
  • extensions/test_sip/test_sip.c

    r732 r972  
    127127       
    128128       
    129         //We set usefull AVPs
     129        //We set useful AVPs
    130130        CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_AVP, AVP_BY_NAME, "Auth-Session-State", &sip_dict.Auth_Session_State, ENOENT) );
    131131        CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, DICT_AVP, AVP_BY_NAME, "Auth-Application-Id", &sip_dict.Auth_Application_Id, ENOENT) );
  • extensions/test_sip/test_sip.h

    r959 r972  
    5555extern struct ts_conf * ts_conf;
    5656
    57 //Storage for some usefull AVPs
     57//Storage for some useful AVPs
    5858struct sip_dict{
    5959        struct dict_object * Auth_Session_State;
Note: See TracChangeset for help on using the changeset viewer.