mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-09-02 06:51:53 -06:00
slirp: Factorizing and cleaning solookup()
solookup() was only compatible with TCP. Having the socket list in argument, it is now compatible with UDP too. Some optimization code is factorized inside the function (the function look at the last returned result before browsing the complete socket list). This prepares for IPv6 support. Signed-off-by: Guillaume Subiron <maethor@subiron.org> Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
This commit is contained in:
parent
5379229a27
commit
a5fd24aa6d
4 changed files with 31 additions and 43 deletions
|
@ -320,16 +320,9 @@ tcp_input(struct mbuf *m, int iphlen, struct socket *inso)
|
|||
* Locate pcb for segment.
|
||||
*/
|
||||
findso:
|
||||
so = slirp->tcp_last_so;
|
||||
if (so->so_fport != ti->ti_dport ||
|
||||
so->so_lport != ti->ti_sport ||
|
||||
so->so_laddr.s_addr != ti->ti_src.s_addr ||
|
||||
so->so_faddr.s_addr != ti->ti_dst.s_addr) {
|
||||
so = solookup(&slirp->tcb, ti->ti_src, ti->ti_sport,
|
||||
ti->ti_dst, ti->ti_dport);
|
||||
if (so)
|
||||
slirp->tcp_last_so = so;
|
||||
}
|
||||
so = solookup(&slirp->tcp_last_so, &slirp->tcb,
|
||||
ti->ti_src, ti->ti_sport,
|
||||
ti->ti_dst, ti->ti_dport);
|
||||
|
||||
/*
|
||||
* If the state is CLOSED (i.e., TCB does not exist) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue