Rename some .c-files, removing gw-prefix

May require reconfiguring the build. Some "gw":s are still
remaining, at least in test files.
This commit is contained in:
Esa Korhonen 2017-01-20 10:21:54 +02:00
parent 6e38276a20
commit 6dc6d6280a
6 changed files with 6 additions and 6 deletions

View File

@ -13,7 +13,7 @@
*/
/**
* @file gwbitmask.h An implementation of an arbitrarily long bitmask
* @file bitmask.h An implementation of an arbitrarily long bitmask
*
* @verbatim
* Revision History

View File

@ -13,7 +13,7 @@
*/
/**
* @file gw_ssl.h
* @file ssl.h
*
* The SSL definitions for MaxScale
*

View File

@ -1,4 +1,4 @@
add_library(maxscale-common SHARED adminusers.c alloc.c authenticator.c atomic.c buffer.c config.c config_runtime.c dcb.c filter.c filter.cc externcmd.c gwbitmask.c gwdirs.c hashtable.c hint.c housekeeper.c load_utils.c log_manager.cc maxscale_pcre2.c memlog.c misc.c mlist.c modutil.c monitor.c queuemanager.c query_classifier.c poll.c random_jkiss.c resultset.c secrets.c server.c service.c session.c spinlock.c thread.c users.c utils.c skygw_utils.cc statistics.c listener.c gw_ssl.c mysql_utils.c mysql_binlog.c modulecmd.c )
add_library(maxscale-common SHARED adminusers.c alloc.c authenticator.c atomic.c buffer.c config.c config_runtime.c dcb.c filter.c filter.cc externcmd.c bitmask.c paths.c hashtable.c hint.c housekeeper.c load_utils.c log_manager.cc maxscale_pcre2.c memlog.c misc.c mlist.c modutil.c monitor.c queuemanager.c query_classifier.c poll.c random_jkiss.c resultset.c secrets.c server.c service.c session.c spinlock.c thread.c users.c utils.c skygw_utils.cc statistics.c listener.c ssl.c mysql_utils.c mysql_binlog.c modulecmd.c )
target_link_libraries(maxscale-common ${MARIADB_CONNECTOR_LIBRARIES} ${LZMA_LINK_FLAGS} ${PCRE2_LIBRARIES} ${CURL_LIBRARIES} ssl pthread crypt dl crypto inih z rt m stdc++)

View File

@ -17,7 +17,7 @@
#include <maxscale/alloc.h>
/**
* @file gwbitmask.c Implementation of bitmask operations for the gateway
* @file bitmask.c Implementation of bitmask operations for the gateway
*
* GWBITMASK is a fixed size bitmask with space for 256 bits.
*

View File

@ -12,7 +12,7 @@
*/
/**
* @file gw_ssl.c - SSL generic functions
* @file ssl.c - SSL generic functions
*
* SSL is intended to be available in conjunction with a variety of protocols
* on either the client or server side.
@ -45,7 +45,7 @@
*
* @param dcb Request handler DCB connected to the client
* @param is_capable Indicates if the client can handle SSL
* @return 0 if ok, >0 if a problem - see return codes defined in gw_ssl.h
* @return 0 if ok, >0 if a problem - see return codes defined in ssl.h
*/
int ssl_authenticate_client(DCB *dcb, bool is_capable)
{