FreeBSD Bugzilla – Attachment 30299 Details for
Bug 51082
FEATURE: More descriptive message on dropped tcp/udp attempts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
file.diff
file.diff (text/plain), 966 bytes, created by
Rene de Vries
on 2003-04-17 09:20:07 UTC
(
hide
)
Description:
file.diff
Filename:
MIME Type:
Creator:
Rene de Vries
Created:
2003-04-17 09:20:07 UTC
Size:
966 bytes
patch
obsolete
>Index: sys/netinet/tcp_input.c >=================================================================== >RCS file: /home/fbsd-cvsrepo/src/sys/netinet/tcp_input.c,v >retrieving revision 1.202 >diff -u -r1.202 tcp_input.c >--- sys/netinet/tcp_input.c 13 Mar 2003 11:46:57 -0000 1.202 >+++ sys/netinet/tcp_input.c 1 Apr 2003 13:51:06 -0000 >@@ -627,6 +627,21 @@ > dbuf, ntohs(th->th_dport), sbuf, > ntohs(th->th_sport), thflags); > break; >+ case 3: >+ log(LOG_INFO, >+ "dropped TCP %s:%d -> %s:%d %c%c%c%c%c%c%c%c (0x%02x)\n", >+ sbuf, ntohs(th->th_sport), >+ dbuf, ntohs(th->th_dport), >+ ((thflags & TH_CWR)?'C':'-'), >+ ((thflags & TH_ECE)?'E':'-'), >+ ((thflags & TH_URG)?'U':'-'), >+ ((thflags & TH_ACK)?'A':'-'), >+ ((thflags & TH_PUSH)?'P':'-'), >+ ((thflags & TH_RST)?'R':'-'), >+ ((thflags & TH_SYN)?'S':'-'), >+ ((thflags & TH_FIN)?'F':'-'), >+ thflags); >+ break; > default: > break; > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 51082
: 30299 |
30300