Main Page | Data Structures | File List | Data Fields | Globals

client.h

Go to the documentation of this file.
00001 #ifndef CLIENT_H 00002 #define CLIENT_H 00003 00004 // 00005 // client.h - Custom client application header 00006 // 00007 00017 // Various site-dependent but system-independent default values 00018 00019 // Default client application values (override/set in loadconfig.c) 00020 00021 #define DEFAULT_MYID "MS" 00022 #define DEFAULT_MYPORT 10601 00023 #define DEFAULT_RCFILE "/home/darkstar/dts/Config/barcode.ini" 00024 #define DEFAULT_LOGFILE "/home/darkstar/dts/Logs/barcode.log" 00025 00026 // Default ISIS server information (see loadconfig.c if used) 00027 00028 #define DEFAULT_ISISID "IS" 00029 #define DEFAULT_ISISHOST "darkstar" 00030 #define DEFAULT_ISISPORT 6600 00031 00032 // 00033 // END of Site-Dependent Setup 00034 // 00035 //---------------------------------------------------------------- 00036 00037 // System header files 00038 00039 #include <stdio.h> 00040 #include <string.h> 00041 #include <stdlib.h> 00042 #include <unistd.h> 00043 #include <errno.h> 00044 #include <sys/time.h> 00045 #include <sys/times.h> 00046 #include <sys/types.h> 00047 #include <sys/socket.h> 00048 #include <sys/file.h> 00049 #include <netdb.h> 00050 #include <netinet/in.h> 00051 #include <arpa/inet.h> 00052 #include <time.h> 00053 #include <termios.h> 00054 #include <fcntl.h> 00055 #include <signal.h> 00056 00057 // In case the version and compilation data are not defined 00058 // at compilation, put in some placeholders to prevent code barfing 00059 00060 #ifndef APP_VERSION 00061 #define APP_VERSION "1.0 Beta" 00062 #endif 00063 00064 #ifndef APP_COMPDATE 00065 #define APP_COMPDATE "2004-01-01" 00066 #endif 00067 00068 #ifndef APP_COMPTIME 00069 #define APP_COMPTIME "00:00:00" 00070 #endif 00071 00072 // ISIS common client utilties library header 00073 00074 #include "isisclient.h" // should be in -I path in Makefile, no paths here! 00075 00076 extern isisclient_t client; 00077 00078 //---------------------------------------------------------------- 00079 // 00080 // barcode scanner parameter struct 00081 // 00082 00109 typedef struct barcode 00110 { 00111 char Port[64]; 00112 int FD; 00113 long timeout; 00114 char Name[64]; 00115 int Debug; 00116 } barcode_t; 00117 00118 extern barcode_t mask; 00119 00120 //---------------------------------------------------------------- 00121 // 00122 // Custom client application function prototypes 00123 // 00124 00125 int LoadConfig(char *); // Load/parse the agent runtime config file (see loadconfig.c) 00126 void KeyboardCommand(char *); // process keyboard (cli) commands (see commands.c) 00127 void SocketCommand(char *); // process client socket remote commands/messages (see commands.c) 00128 00129 void handleint(int); // Ctrl+C (SIGINT) interrupt handler 00130 00131 #endif // CLIENT_H

Generated on Thu Jul 22 20:10:48 2004 for Barcode Reader Agent by doxygen 1.3.7