View | Details | Raw Unified | Return to bug 22238
Collapse All | Expand All

(-)nat_cmd+.c Sun Oct 22 11:53:49 2000 (-2 / +5 lines)
Lines 422-432 Link Here
422
422
423
    case PKT_ALIAS_IGNORED:
423
    case PKT_ALIAS_IGNORED:
424
      if (log_IsKept(LogTCPIP)) {
424
      if (log_IsKept(LogTCPIP)) {
425
        log_Printf(LogTCPIP, "NAT engine ignored data:\n");
425
        log_Printf(LogTCPIP, "NAT engine set packet to be ignored:\n");
426
        PacketCheck(bundle, MBUF_CTOP(bp), bp->m_len, NULL, NULL, NULL);
426
        PacketCheck(bundle, MBUF_CTOP(bp), bp->m_len, NULL, NULL, NULL);
427
      }
427
      }
428
      /* libalias has marked this packet to be ignored. It should be dropped */
429
      m_freem(bp);
430
      bp = NULL;
428
      break;
431
      break;
429
432
      
430
    default:
433
    default:
431
      log_Printf(LogWARN, "nat_LayerPull: Dropped a packet (%d)....\n", ret);
434
      log_Printf(LogWARN, "nat_LayerPull: Dropped a packet (%d)....\n", ret);
432
      m_freem(bp);
435
      m_freem(bp);

Return to bug 22238