#if 0 #define NR_LOG_REGISTRY BLAHBLAH() #define LOG_REGISTRY BLAHBLAH() static int BLAHBLAH() { int blahblah; r_log_register("registry",&blahblah); return blahblah; } #endif /* * * registry_int.h * * $Source: /Users/ekr/tmp/nrappkit-dump/nrappkit/src/registry/registry_int.h,v $ * $Revision: 1.3 $ * $Date: 2007/06/26 22:37:51 $ * * Callback-related functions * * * Copyright (C) 2005, Network Resonance, Inc. * Copyright (C) 2006, Network Resonance, Inc. * All Rights Reserved * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of Network Resonance, Inc. nor the name of any * contributors to this software may be used to endorse or promote * products derived from this software without specific prior written * permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * * */ #ifndef __REGISTRY_INT_H__ #define __REGISTRY_INT_H__ #include #include #ifndef NO_REG_RPC #include #endif extern int NR_LOG_REGISTRY; int nr_reg_is_valid(NR_registry name); #define NR_REG_TYPE_CHAR 0 #define NR_REG_TYPE_UCHAR 1 #define NR_REG_TYPE_INT2 2 #define NR_REG_TYPE_UINT2 3 #define NR_REG_TYPE_INT4 4 #define NR_REG_TYPE_UINT4 5 #define NR_REG_TYPE_INT8 6 #define NR_REG_TYPE_UINT8 7 #define NR_REG_TYPE_DOUBLE 8 #define NR_REG_TYPE_BYTES 9 #define NR_REG_TYPE_STRING 10 #define NR_REG_TYPE_REGISTRY 11 char *nr_reg_type_name(int type); int nr_reg_compute_type(char *type_name, int *type); char *nr_reg_action_name(int action); int nr_reg_cb_init(void); int nr_reg_client_cb_init(void); int nr_reg_register_for_callbacks(int fd, int connect_to_port); int nr_reg_raise_event(NR_registry name, int action); #ifndef NO_REG_RPC int nr_reg_get_client(CLIENT **client); #endif #define CALLBACK_SERVER_ADDR "127.0.0.1" #define CALLBACK_SERVER_PORT 8082 #define CALLBACK_SERVER_BACKLOG 32 #endif