Navigation


Changeset 1228:e5010975da35 in freeDiameter


Ignore:
Timestamp:
Jul 18, 2013, 9:45:37 PM (11 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Fix typo in comment.

Files:
6 edited

Legend:

Unmodified
Added
Removed
  • contrib/app_acct_tools/README

    r533 r1228  
    2121  * when a session is complete (STOP record received), it stores a session summary
    2222  into the processed records table (see process_database.sql file for format).
    23   * It optionaly archives the processed records into a different table, before deleting them.
     23  * It optionally archives the processed records into a different table, before deleting them.
    2424  * It can also move records of unterminated sessions that are older than a configurable time
    2525  to an orphan_records table, so that they are not re-processed every time.
  • doc/app_acct.conf.sample

    r533 r1228  
    6868
    6969# Timestamp_field:
    70 # Optionaly, you can specify a name of a field that will receive the value 'now' when a new record is inserted.
     70# Optionally, you can specify a name of a field that will receive the value 'now' when a new record is inserted.
    7171# Default: no timestamp is inserted.
    7272# Example: Timestamp_field = "recorded_on";
    7373
    7474# Server_name_field:
    75 # Optionaly, you can specify a field which will receive the Diameter Identity of the local server for each record saved.
     75# Optionally, you can specify a field which will receive the Diameter Identity of the local server for each record saved.
    7676# This is useful especially if you have several Accounting servers and want to check Load-Balancing behavior or so,
    7777# after aggregating all the data.
  • doc/dbg_interactive.py.sample

    r1176 r1228  
    468468mydwr.send()
    469469
    470 # Optionaly, a callback can be registered when a request is sent, with an optional object.
     470# Optionally, a callback can be registered when a request is sent, with an optional object.
    471471# This callback takes the answer message as parameter and should return None or a message. (cf. fd_msg_send)
    472472def send_callback(msg, obj):
     
    480480mydwr.send(send_callback, some_object)
    481481
    482 # Again optionaly, a time limit can be specified in this case as follow:
     482# Again optionally, a time limit can be specified in this case as follow:
    483483mydwr.send(send_callback, some_object, 10)
    484484# In that case, if no answer / error is received after 10 seconds (the value specified),
  • doc/test_app.conf.sample

    r1214 r1228  
    4949#  - server is silent on message reception, only the activity summary is displayed every 30 seconds
    5050#  - client attempts to send as many messages as possible during 10 seconds and counts them.
    51 # The benchmark keyword can be followed optionaly by two integers:
     51# The benchmark keyword can be followed optionally by two integers:
    5252#   duration is the time for the measurement, in seconds (default 10).
    5353#   concurrency is the number of messages that can be on the wire before waiting for an answer (default 100).
  • libfdcore/messages.c

    r1120 r1228  
    336336}
    337337
    338 /* Send a message and optionaly register a callback for an answer */
     338/* Send a message and optionally register a callback for an answer */
    339339int fd_msg_send ( struct msg ** pmsg, void (*anscb)(void *, struct msg **), void * data )
    340340{
  • libfdcore/sctp.c

    r1200 r1228  
    964964}
    965965
    966 /* Retrieve streams information from a connected association -- optionaly provide the primary address */
     966/* Retrieve streams information from a connected association -- optionally provide the primary address */
    967967int fd_sctp_get_str_info( int sock, uint16_t *in, uint16_t *out, sSS *primary )
    968968{
Note: See TracChangeset for help on using the changeset viewer.