|
Lines 627-632
Link Here
|
| 627 |
dbuf, ntohs(th->th_dport), sbuf, |
627 |
dbuf, ntohs(th->th_dport), sbuf, |
| 628 |
ntohs(th->th_sport), thflags); |
628 |
ntohs(th->th_sport), thflags); |
| 629 |
break; |
629 |
break; |
|
|
630 |
case 3: |
| 631 |
log(LOG_INFO, |
| 632 |
"dropped TCP %s:%d -> %s:%d %c%c%c%c%c%c%c%c (0x%02x)\n", |
| 633 |
sbuf, ntohs(th->th_sport), |
| 634 |
dbuf, ntohs(th->th_dport), |
| 635 |
((thflags & TH_CWR)?'C':'-'), |
| 636 |
((thflags & TH_ECE)?'E':'-'), |
| 637 |
((thflags & TH_URG)?'U':'-'), |
| 638 |
((thflags & TH_ACK)?'A':'-'), |
| 639 |
((thflags & TH_PUSH)?'P':'-'), |
| 640 |
((thflags & TH_RST)?'R':'-'), |
| 641 |
((thflags & TH_SYN)?'S':'-'), |
| 642 |
((thflags & TH_FIN)?'F':'-'), |
| 643 |
thflags); |
| 644 |
break; |
| 630 |
default: |
645 |
default: |
| 631 |
break; |
646 |
break; |
| 632 |
} |
647 |
} |