Navigation


Changeset 1374:e99e8f20b346 in freeDiameter


Ignore:
Timestamp:
Jun 13, 2019, 6:26:42 PM (5 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Rename loadtest_cc to test_ccload to match naming convention.

Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • contrib/debian/changelog

    r1368 r1374  
    11freediameter (1.3.2) RELEASED; urgency=low
    22
    3   * loadtest_cc: new extension: generates random
     3  * test_ccload: new extension: generates random
    44    Credit-Control-Requests and counts how many are answered/give an
    55    error/get no answer. Start it with SIGUSR2, stop it with a second
  • extensions/CMakeLists.txt

    r1367 r1374  
    9494FD_EXTENSION_SUBDIR(dbg_msg_dumps   "Show human-readable content of the received & sent messages"      ON)
    9595FD_EXTENSION_SUBDIR(dbg_rt          "Routing extension for debugging the routing module" ON)
    96 FD_EXTENSION_SUBDIR(loadtest_cc     "Generate Credit-Control-Requests and count replies" ON)
    9796FD_EXTENSION_SUBDIR(test_app        "Testing application to send dummy message to another peer, like a Diameter 'ping'" OFF)
    9897FD_EXTENSION_SUBDIR(test_as     "Receive Abort-Session-Requests and display the data" OFF)
    9998FD_EXTENSION_SUBDIR(test_cc     "Receive Credit-Control-Requests and display the data" ON)
     99FD_EXTENSION_SUBDIR(test_ccload     "Generate Credit-Control-Requests and count replies" ON)
    100100FD_EXTENSION_SUBDIR(test_sip        "Testing application to simulate Diameter-SIP client (RFC4740)" OFF)
    101101FD_EXTENSION_SUBDIR(dbg_interactive "Python-interpreter based module"                OFF)
  • extensions/test_ccload/CMakeLists.txt

    r1364 r1374  
    1 # The loadtest_cc extension
     1# The test_ccload extension
    22PROJECT("Credit Control load generator server" C)
    33
    4 FD_ADD_EXTENSION(loadtest_cc loadtest_cc.c)
     4FD_ADD_EXTENSION(test_ccload test_ccload.c)
    55
    66
     
    88## INSTALL section ##
    99
    10 INSTALL(TARGETS loadtest_cc
     10INSTALL(TARGETS test_ccload
    1111        LIBRARY DESTINATION ${INSTALL_EXTENSIONS_SUFFIX}
    1212        COMPONENT freeDiameter-debug-tools)
  • extensions/test_ccload/test_ccload.c

    r1372 r1374  
    3939#include <signal.h>
    4040
    41 #define MODULE_NAME "loadtest_cc"
     41#define MODULE_NAME "test_ccload"
    4242
    4343static pthread_t gen_thr  = (pthread_t)NULL;
Note: See TracChangeset for help on using the changeset viewer.