Diff for /libaitrpc/src/srv.c between versions 1.20.4.1 and 1.20.4.2

version 1.20.4.1, 2013/11/13 12:18:14 version 1.20.4.2, 2013/11/13 12:18:43
Line 728  acceptBLOBClients(sched_task_t *task) Line 728  acceptBLOBClients(sched_task_t *task)
         for (i = 0; i < array_Size(srv->srv_blob.clients) &&           for (i = 0; i < array_Size(srv->srv_blob.clients) && 
                         (c = array(srv->srv_blob.clients, i, rpc_cli_t*)); i++);                          (c = array(srv->srv_blob.clients, i, rpc_cli_t*)); i++);
         if (c) {        /* no more free slots! */          if (c) {        /* no more free slots! */
                EVERBOSE(1, "RPC client quota exceeded! Connection will be shutdown!\n");                EVERBOSE(1, "BLOB client quota exceeded! Connection will be shutdown!\n");
                 if ((sock = accept(TASK_FD(task), NULL, NULL)) != -1) {                  if ((sock = accept(TASK_FD(task), NULL, NULL)) != -1) {
                         shutdown(sock, SHUT_RDWR);                          shutdown(sock, SHUT_RDWR);
                         close(sock);                          close(sock);

Removed from v.1.20.4.1  
changed lines
  Added in v.1.20.4.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>