Navigation


Changeset 1:bafb831ba688 in freeDiameter for freeDiameter


Ignore:
Timestamp:
Aug 31, 2009, 11:31:10 AM (15 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Fix names to proper case for freeDiameter

Location:
freeDiameter
Files:
9 moved

Legend:

Unmodified
Added
Removed
  • freeDiameter/CMakeLists.txt

    r0 r1  
    11# The subproject name
    2 Project("freediameterd" C)
     2Project("freeDiameterd" C)
    33
    44SET(PROJECT_VERSION 0.1)
     
    77# List of source files
    88SET(FD_COMMON_SRC
    9         fd.h
     9        fD.h
    1010        dict_base_proto.c
    1111        )
    1212
    1313# Building the executable
    14 ADD_EXECUTABLE(freediameterd ${FD_COMMON_SRC} main.c)
     14ADD_EXECUTABLE(freeDiameterd ${FD_COMMON_SRC} main.c)
    1515
    1616# The link command
    17 LINK_DIRECTORIES(${CURRENT_BINARY_DIR}/../libfreediameter)
    18 TARGET_LINK_LIBRARIES(freediameterd libfreediameter ${FD_LIBS})
     17LINK_DIRECTORIES(${CURRENT_BINARY_DIR}/../libfreeDiameter)
     18TARGET_LINK_LIBRARIES(freeDiameterd libfreeDiameter ${FD_LIBS})
    1919
    2020# The unary tests directory
  • freeDiameter/dict_base_proto.c

    r0 r1  
    3737 */
    3838
    39 #include "fd.h"
     39#include "fD.h"
    4040
    4141#include <netinet/in.h>
  • freeDiameter/fD.h

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 /* This file contains the definitions for internal use in the freediameter daemon */
     36/* This file contains the definitions for internal use in the freeDiameter daemon */
    3737
    3838#ifndef _FD_H
    3939#define _FD_H
    4040
    41 #include <freediameter/freediameter-host.h>
    42 #include <freediameter/freediameter.h>
     41#include <freeDiameter/freeDiameter-host.h>
     42#include <freeDiameter/freeDiameter.h>
    4343
    4444/* Create all the dictionary objects defined in the Diameter base RFC. */
  • freeDiameter/main.c

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 #include "fd.h"
     36#include "fD.h"
    3737
    3838/* Entry point */
     
    5454        fd_dict_dump(fd_g_dict);
    5555       
    56         TRACE_DEBUG(INFO, "FreeDiameter daemon initialized.");
     56        TRACE_DEBUG(INFO, "freeDiameter daemon initialized.");
    5757       
    5858        return 0;
  • freeDiameter/tests/CMakeLists.txt

    r0 r1  
    11# Test directory
    2 PROJECT("libfreediameter tests" C)
     2PROJECT("libfreeDiameter tests" C)
    33
    44# give the possibility to configure the timeout duration for the tests
     
    3535# ENDFOREACH(SRC_FILE)
    3636
    37 # Create an archive with the daemon common files
    38 ADD_LIBRARY(fdcore STATIC ${TEST_COMMON_SRC})
     37# Create an archive with the daemon common files (all but main)
     38ADD_LIBRARY(fDcore STATIC ${TEST_COMMON_SRC})
    3939
    4040
     
    4343FOREACH( TEST ${TEST_LIST} )
    4444   ADD_EXECUTABLE(${TEST} ${TEST}.c tests.h)
    45    TARGET_LINK_LIBRARIES(${TEST} libfreediameter fdcore ${FD_LIBS})
     45   TARGET_LINK_LIBRARIES(${TEST} libfreeDiameter fDcore ${FD_LIBS})
    4646   ADD_TEST(${TEST} ${EXECUTABLE_OUTPUT_PATH}/${TEST})
    4747ENDFOREACH( TEST )
  • freeDiameter/tests/testmq.c

    r0 r1  
    3636#include "tests.h"
    3737
    38 /* Structure for testing threashold function */
     38/* Structure for testing threshold function */
    3939static struct thrh_test {
    4040        struct mqueue * queue; /* pointer to the queue */
  • freeDiameter/tests/tests.h

    r0 r1  
    4242#define _TESTS_H
    4343
    44 #include "fd.h"
     44#include "fD.h"
    4545
    4646#include <pthread.h>
Note: See TracChangeset for help on using the changeset viewer.