-
Notifications
You must be signed in to change notification settings - Fork 342
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SCTP support #82
base: master
Are you sure you want to change the base?
SCTP support #82
Conversation
How about the bug now? |
ref.: #81 |
@LionNatsu |
case IPPROTO_SCTP: | ||
mtrtype = IPPROTO_ICMP; | ||
break; | ||
} | ||
return ActionNone; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new feature: here's a new switch key s
for SCTP
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, it will surely not work. s
conflicted with line 135, the key to Change Packet Size
.
BTW, why does TCP not emit SIGPIPE? |
I added codes about SCTP in curses.c and select.c this time, and got SIGPIPE when MTRing to a non-existent address (which causes a loop route between two routers).
I modified net.c, to avoid SIGPIPE, but I don't know if I'm doing the right thing, as I'm not familiar with the whole program.