00001 /* 00002 * Drizzle Client & Protocol Library 00003 * 00004 * Copyright (C) 2008 Eric Day (eday@oddments.org) 00005 * All rights reserved. 00006 * 00007 * Use and distribution licensed under the BSD license. See 00008 * the COPYING file in this directory for full text. 00009 */ 00010 00016 #include "libdrizzle/common.h" 00017 #include "libdrizzle/conn_private.h" 00018 00019 /* 00020 * Common definitions 00021 */ 00022 00023 const char *drizzle_con_uds(drizzle_con_st *con) 00024 { 00025 (void)con; 00026 return (const char *)NULL; 00027 } 00028 00029 void drizzle_con_set_uds(drizzle_con_st *con, const char *uds) 00030 { 00031 (void)con; 00032 (void)uds; 00033 } 00034 00035 /* 00036 * Private definitions 00037 */ 00038 00039 bool drizzle_con_uses_uds(drizzle_con_st *con) 00040 { 00041 (void)con; 00042 return false; 00043 } 00044 00045 void drizzle_con_clone_uds(drizzle_con_st *con, drizzle_con_st *from) 00046 { 00047 (void)con; 00048 (void)from; 00049 }