diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2000-10-09 14:39:47 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2000-10-09 14:39:47 +0000 |
commit | 8ccc013958c481e85aa52a494d3171ccd5f46ea4 (patch) | |
tree | 333758df16ffb66dc7b3475dc78b4ea71e6fac19 /sys/netinet/in_pcb.h | |
parent | 8bf0e1b16b6120dd0e730b73b1a50b5dcc6f13b9 (diff) |
check if we have a tcb connected to the destination quoted in the icmp need
fragment message when doing path mtu discovery. okay angelos@
Diffstat (limited to 'sys/netinet/in_pcb.h')
-rw-r--r-- | sys/netinet/in_pcb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/in_pcb.h b/sys/netinet/in_pcb.h index 7b8dec2ab7c..4fa8f75133a 100644 --- a/sys/netinet/in_pcb.h +++ b/sys/netinet/in_pcb.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in_pcb.h,v 1.26 2000/09/18 22:06:37 provos Exp $ */ +/* $OpenBSD: in_pcb.h,v 1.27 2000/10/09 14:39:46 provos Exp $ */ /* $NetBSD: in_pcb.h,v 1.14 1996/02/13 23:42:00 christos Exp $ */ /* @@ -253,6 +253,7 @@ void in_pcbnotify __P((struct inpcbtable *, struct sockaddr *, u_int, struct in_addr, u_int, int, void (*)(struct inpcb *, int))); void in_pcbnotifyall __P((struct inpcbtable *, struct sockaddr *, int, void (*)(struct inpcb *, int))); +int in_pcbconnected __P((struct inpcbtable *, struct sockaddr *)); void in_pcbrehash __P((struct inpcb *)); void in_rtchange __P((struct inpcb *, int)); void in_setpeeraddr __P((struct inpcb *, struct mbuf *)); |