X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=kernel%2Fkernel.h;h=704bb66854acd5e023217af12aefba707e90f652;hb=4938d0c2e8f4e1eec397c2bfbbc7e23fd150c369;hp=e97020dc43e233ffa94a11e2f4ba3aa952a055ee;hpb=d9dc334cfdbe42f9acf56266c0bdd53522315304;p=egate.git diff --git a/kernel/kernel.h b/kernel/kernel.h index e97020d..704bb66 100644 --- a/kernel/kernel.h +++ b/kernel/kernel.h @@ -45,7 +45,18 @@ * Europagate, 1995 * * $Log: kernel.h,v $ - * Revision 1.18 1995/05/16 09:40:42 adam + * Revision 1.21 1996/02/12 10:04:52 adam + * The gateway doesn't try to reconnect if it is already known that + * it will fail (connect_fail flag introduced). + * + * Revision 1.20 1995/07/28 10:51:08 adam + * Bug fix: account from previous session had effect when new target command + * was executed. + * + * Revision 1.19 1995/07/11 11:49:12 adam + * LINE_MAX renamed to STR_LINE_MAX. + * + * Revision 1.18 1995/05/16 09:40:42 adam * LICENSE. Setting of CCL token names (and/or/not/set) in read_kernel_res. * * Revision 1.17 1995/05/03 16:34:18 adam @@ -119,7 +130,7 @@ #endif #include -#define LINE_MAX 1024 +#define STR_LINE_MAX 1024 struct gw_user_set { char *name; /* name of result set */ @@ -139,7 +150,9 @@ struct gw_kernel_info { char target[128]; char hostname[128]; char account[128]; + int account_in_session; int port; + int connect_failed; const char *lang; const char *override_portno; const char *override_hostname; @@ -147,7 +160,7 @@ struct gw_kernel_info { char *database; ZASS zass; int command_no; - char from_str[LINE_MAX+1]; + char from_str[STR_LINE_MAX+1]; const char *reply_fname; int setno; int next_position;