Changeset 12 for trunk/src/sh_forward.c


Ignore:
Timestamp:
Jan 5, 2006, 11:15:45 PM (19 years ago)
Author:
rainer
Message:

More optimisation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/sh_forward.c

    r11 r12  
    177177
    178178int     clt_class = (-1);
     179
     180extern int flag_err_debug;
     181extern int flag_err_info;
    179182
    180183#ifndef SH_STANDALONE
     
    12251228      else
    12261229        {
    1227           sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_AUTH);
     1230          if (flag_err_info == SL_TRUE)
     1231            sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_AUTH);
    12281232        }
    12291233    }
     
    14501454                          /* --- SERVER CMD END --- */
    14511455#endif
    1452                           sh_error_handle((-1), FIL__, __LINE__, 0,
    1453                                           MSG_TCP_CONF);
     1456                          if (flag_err_debug == SL_TRUE)
     1457                            sh_error_handle((-1), FIL__, __LINE__, 0,
     1458                                            MSG_TCP_CONF);
    14541459                        }
    14551460                    }
     
    16481653                  (void) rewind_tmp (sfd);
    16491654                  (void) sl_sync(sfd);
    1650                   sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FOK);
     1655                  if (flag_err_info == SL_TRUE)
     1656                    sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FOK);
    16511657                }
    16521658              else
     
    28122818                  conn->head[5]  = 'L';
    28132819                  conn->head[6]  = 'T';
    2814                   sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
    2815                                   &(conn->buf[KEY_LEN]));
     2820                  if (flag_err_info == SL_TRUE)
     2821                    sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
     2822                                    &(conn->buf[KEY_LEN]));
    28162823                  strcpy(conn->buf,                      /* known to fit  */
    28172824                         &(conn->buf[KEY_LEN]));
     
    31723179                    _("msg=<File transfer - EOTE (7).>\n")));
    31733180
    3174               sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKFILE,
    3175                               conn->peer);
     3181              if (flag_err_info == SL_TRUE)
     3182                sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKFILE,
     3183                                conn->peer);
    31763184
    31773185              if ((conn->client_entry->status_now != CLT_SUSPEND) &&
     
    32673275                  conn->head[5]  = 'L';
    32683276                  conn->head[6]  = 'T';
    3269                   sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
    3270                                   &(conn->buf[KEY_LEN]));
     3277                  if (flag_err_info == SL_TRUE)
     3278                    sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_FAUTH,
     3279                                    &(conn->buf[KEY_LEN]));
    32713280                  strcpy(conn->buf,                      /* known to fit  */
    32723281                         &(conn->buf[KEY_LEN]));
     
    35913600          if (0 != (conn->head[0] & SH_PROTO_END))
    35923601            {
    3593               sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKMSG,
    3594                               sh_strip_domain (conn->peer));
     3602              if (flag_err_debug == SL_TRUE)
     3603                sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_OKMSG,
     3604                                sh_strip_domain (conn->peer));
    35953605              sh_forward_do_free (conn);
    35963606              SL_RET0(_("check_protocol"));
     
    45684578      newconn->timer        = (unsigned long) time (NULL);
    45694579
    4570       sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_CNEW, newconn->fd);
     4580      if (flag_err_info == SL_TRUE)
     4581        sh_error_handle((-1), FIL__, __LINE__, 0, MSG_TCP_CNEW, newconn->fd);
    45714582
    45724583      SL_RETURN( (0), _("sh_forward_accept"));
Note: See TracChangeset for help on using the changeset viewer.