Navigation


Changeset 871:254d81d21d0b in freeDiameter


Ignore:
Timestamp:
Oct 23, 2012, 10:50:04 PM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Fix some typos.

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • contrib/nightly_tests/runtests.sh

    r737 r871  
    1515# CTEST_SITE=
    1616#     the name of the build slave.
    17 # Exemple: SET(CTEST_SITE "Ubuntu-Lucid-64b")
     17# Example: SET(CTEST_SITE "Ubuntu-Lucid-64b")
    1818if [ ! -e $ROOTDIR/local.cmake ]; then
    1919   echo "Missing $ROOTDIR/local.cmake file, generating one (edit as needed, and run the script again)";
  • doc/freediameter.conf.sample

    r706 r871  
    176176#LoadExtension = "/path/to/extension" [ : "/optional/configuration/file" ] ;
    177177#
    178 # Exemples:
     178# Examples:
    179179#LoadExtension = "extensions/sample.so";
    180180#LoadExtension = "extensions/sample.so":"conf/sample.conf";
  • extensions/app_acct/acct_db.c

    r837 r871  
    251251                if (PQstatus(conn) != CONNECTION_OK) {
    252252                        TRACE_DEBUG(INFO, "Lost connection to the database server, and attempt to reestablish it failed");
    253                         TODO("Terminate the freeDiameter instance completly?");
     253                        TODO("Terminate the freeDiameter instance completely?");
    254254                        return ENOTCONN;
    255255                }
  • include/freeDiameter/CMakeLists.txt

    r853 r871  
    66# Configurable parameters
    77
    8 # Disable SCTP support completly ?
     8# Disable SCTP support completely ?
    99OPTION(DISABLE_SCTP "Disable SCTP support?" OFF)
    1010IF (NOT DISABLE_SCTP)
     
    2020
    2121# IDNA considerations
    22 OPTION(DIAMID_IDNA_IGNORE "Ignore completly invalid characters in Diameter Identities (process blindly)?" OFF)
     22OPTION(DIAMID_IDNA_IGNORE "Ignore completely invalid characters in Diameter Identities (process blindly)?" OFF)
    2323IF (NOT DIAMID_IDNA_IGNORE)
    2424        OPTION (DIAMID_IDNA_REJECT "Reject internationalized Diameter Identities, do not attempt to convert it (stringprep) ?" OFF)
  • include/freeDiameter/libfdproto.h

    r850 r871  
    19671967 *  A message is made of a header ( msg ) and 0 or more AVPs ( avp ).
    19681968 * The structure is a kind of tree, where some AVPs (grouped AVPs) can contain other AVPs.
    1969  * Exemple:
     1969 * Example:
    19701970 * msg
    19711971 *  |-avp
  • libfdcore/core.c

    r808 r871  
    4747#endif /* GNUTLS_VERSION_210 */
    4848
    49 /* Signal extensions when the framework is completly initialized (they are waiting in fd_core_waitstartcomplete()) */
     49/* Signal extensions when the framework is completely initialized (they are waiting in fd_core_waitstartcomplete()) */
    5050static int             is_ready = 0;
    5151static pthread_mutex_t is_ready_mtx = PTHREAD_MUTEX_INITIALIZER;
  • libfdproto/messages.c

    r824 r871  
    6363 *  A message is made of a header ( msg ) and 0 or more AVPs ( avp ).
    6464 * The structure is a kind of tree, where some AVPs (grouped AVPs) can contain other AVPs.
    65  * Exemple:
     65 * Example:
    6666 * msg
    6767 *  |-avp
Note: See TracChangeset for help on using the changeset viewer.