Address
:
[go:
up one dir
,
main page
]
Include Form
Remove Scripts
Session Cookies
FreeBSD Bugzilla – Attachment 252849 Details for
Bug 269770
libalias udp redirect_port temporary translation failure
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
proposed fix
alias_db.c.diff (text/plain), 631 bytes, created by
Eugene Grosbein
on 2024-08-17 14:50:00 UTC
(
hide
)
Description:
proposed fix
Filename:
MIME Type:
Creator:
Eugene Grosbein
Created:
2024-08-17 14:50:00 UTC
Size:
631 bytes
patch
obsolete
>--- sys/netinet/libalias/alias_db.c.orig 2024-05-26 16:52:44.741059000 +0700 >+++ sys/netinet/libalias/alias_db.c 2024-08-17 21:44:22.577766000 +0700 >@@ -868,8 +868,15 @@ _FindLinkIn(struct libalias *la, struct in_addr dst_ad > case 0: > LIST_FOREACH(lnk, &grp->full, all.in) { > if (lnk->dst_addr.s_addr == dst_addr.s_addr && >- lnk->dst_port == dst_port) >- return (UseLink(la, lnk)); >+ lnk->dst_port == dst_port) { >+ struct alias_link *found; >+ >+ found = UseLink(la, lnk); >+ if (found != NULL) >+ return (found); >+ /* link expired */ >+ break; >+ } > } > break; > case LINK_UNKNOWN_DEST_PORT:
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 269770
:
248673
|
252840
| 252849 |
252939