| 403 | void SctpShowAliasStats(struct libalias *la); |
| 404 | |
| 405 | static u_int |
| 406 | StartPointIn(struct in_addr alias_addr, |
| 407 | u_short alias_port, |
| 408 | int link_type) |
| 409 | { |
| 410 | u_int n; |
| 411 | |
| 412 | n = alias_addr.s_addr; |
| 413 | if (link_type != LINK_PPTP) |
| 414 | n += alias_port; |
| 415 | n += link_type; |
| 416 | return (n % LINK_TABLE_IN_SIZE); |
| 417 | } |
| 418 | |
| 419 | static u_int |
| 420 | StartPointOut(struct in_addr src_addr, struct in_addr dst_addr, |
no outgoing calls
no test coverage detected