Navigation


Changeset 1:bafb831ba688 in freeDiameter for libfreeDiameter


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:
libfreeDiameter
Files:
8 moved

Legend:

Unmodified
Added
Removed
  • libfreeDiameter/CMakeLists.txt

    r0 r1  
    11# Name of the subproject
    2 Project("libfreediameter" C)
     2Project("libfreeDiameter" C)
    33
    44SET(PROJECT_COPYRIGHT "Copyright (c) 2008-2009, WIDE Project (www.wide.ad.jp) and NICT (www.nict.go.jp)")
     
    66# List of source files for the library
    77SET(LFD_SRC
    8         libfd.h
     8        libfD.h
    99        init.c
    1010        log.c
     
    1616
    1717# Build as a shared library
    18 ADD_LIBRARY(libfreediameter SHARED ${LFD_SRC})
     18ADD_LIBRARY(libfreeDiameter SHARED ${LFD_SRC})
    1919
    2020# Avoid the liblib name
    21 SET_TARGET_PROPERTIES(libfreediameter PROPERTIES OUTPUT_NAME "freediameter")
     21SET_TARGET_PROPERTIES(libfreeDiameter PROPERTIES OUTPUT_NAME "freeDiameter")
    2222
    2323# The library itself needs other libraries
    24 TARGET_LINK_LIBRARIES(libfreediameter ${FD_LIBS})
     24TARGET_LINK_LIBRARIES(libfreeDiameter ${FD_LIBS})
    2525
  • libfreeDiameter/dictionary.c

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 #include "libfd.h"
     36#include "libfD.h"
    3737
    3838/* Names of the base types */
     
    12901290/*******************************************************************************************************/
    12911291
    1292 /* These are the functions exported outside libfreediameter. */
     1292/* These are the functions exported outside libfreeDiameter. */
    12931293
    12941294/* Get the data associated to an object */
  • libfreeDiameter/init.c

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 #include "libfd.h"
     36#include "libfD.h"
    3737
    3838int fd_lib_init(void)
     
    4343        ret = pthread_key_create(&fd_log_thname, free);
    4444        if (ret != 0) {
    45                 fprintf(stderr, "Error initializing the libfreediameter library: %s\n", strerror(ret) );
     45                fprintf(stderr, "Error initializing the libfreeDiameter library: %s\n", strerror(ret) );
    4646                return ret;
    4747        }
  • libfreeDiameter/libfD.h

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 /* This file contains the definitions for internal use in the libfreediameter library */
     36/* This file contains the definitions for internal use in the libfreeDiameter library */
    3737
    3838#ifndef _LIBFD_H
    3939#define _LIBFD_H
    4040
    41 #include <freediameter/freediameter-host.h>
    42 #include <freediameter/libfreediameter.h>
     41#include <freeDiameter/freeDiameter-host.h>
     42#include <freeDiameter/libfreeDiameter.h>
    4343
    4444/* Internal to the library */
     
    4747
    4848
    49 
    5049#endif /* _LIBFD_H */
  • libfreeDiameter/lists.c

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 #include "libfd.h"
     36#include "libfD.h"
    3737
    3838/* Initialize a list element */
  • libfreeDiameter/log.c

    r0 r1  
    3434*********************************************************************************************************/
    3535
    36 #include "libfd.h"
     36#include "libfD.h"
    3737
    3838#include <stdarg.h>
  • libfreeDiameter/messages.c

    r0 r1  
    3939 */
    4040
    41 #include "libfd.h"
     41#include "libfD.h"
    4242
    4343#include <sys/param.h>
  • libfreeDiameter/mqueues.c

    r0 r1  
    4646 */
    4747
    48 #include "libfd.h"
     48#include "libfD.h"
    4949
    5050/* Definition of a message queue object */
     
    5959        int             thrs;   /* number of threads waiting for a new message (when count is 0) */
    6060       
    61         uint16_t        high;   /* High level threshold (see libfreediameter.h for details) */
     61        uint16_t        high;   /* High level threshold (see libfreeDiameter.h for details) */
    6262        uint16_t        low;    /* Low level threshhold */
    6363        void            *data;  /* Opaque pointer for threshold callbacks */
Note: See TracChangeset for help on using the changeset viewer.