summaryrefslogtreecommitdiffstats
path: root/sys/netinet/in_pcb.c
diff options
context:
space:
mode:
authorwollman <wollman@FreeBSD.org>1995-02-16 00:55:44 +0000
committerwollman <wollman@FreeBSD.org>1995-02-16 00:55:44 +0000
commit0f1c96e35914243f7be1dd758c1d9c2b5aa97d23 (patch)
tree819ad718daa331fc645ba661c3d627cf61d1a68d /sys/netinet/in_pcb.c
parentca7e5f22bd70b1995a0b15f1ebdc61c9ed67ab3c (diff)
downloadFreeBSD-src-0f1c96e35914243f7be1dd758c1d9c2b5aa97d23.zip
FreeBSD-src-0f1c96e35914243f7be1dd758c1d9c2b5aa97d23.tar.gz
Transaction TCP support now standard. Hack away!
Diffstat (limited to 'sys/netinet/in_pcb.c')
-rw-r--r--sys/netinet/in_pcb.c22
1 files changed, 1 insertions, 21 deletions
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 1080fbe..3f6343b 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* @(#)in_pcb.c 8.2 (Berkeley) 1/4/94
- * $Id: in_pcb.c,v 1.3 1994/08/02 07:48:18 davidg Exp $
+ * $Id: in_pcb.c,v 1.4 1995/02/08 20:22:07 wollman Exp $
*/
#include <sys/param.h>
@@ -151,7 +151,6 @@ in_pcbbind(inp, nam)
return (0);
}
-#ifdef TTCP
/*
* Transform old in_pcbconnect() into an inner subroutine for new
* in_pcbconnect(): Do some validity-checking on the remote
@@ -170,20 +169,6 @@ in_pcbladdr(inp, nam, plocal_sin)
struct mbuf *nam;
struct sockaddr_in **plocal_sin;
{
-#else /* TTCP */
-/*
- * Connect from a socket to a specified address.
- * Both address and port must be specified in argument sin.
- * If don't have a local address for this socket yet,
- * then pick one.
- */
-
-int
-in_pcbconnect(inp, nam)
- register struct inpcb *inp;
- struct mbuf *nam;
-{
-#endif /* TTCP */
struct in_ifaddr *ia;
struct sockaddr_in *ifaddr = 0;
register struct sockaddr_in *sin = mtod(nam, struct sockaddr_in *);
@@ -278,7 +263,6 @@ in_pcbconnect(inp, nam)
return (EADDRNOTAVAIL);
}
}
-#ifdef TTCP
/*
* Don't do pcblookup call here; return interface in plocal_sin
* and exit to caller, that will do the lookup.
@@ -311,10 +295,6 @@ in_pcbconnect(inp, nam)
if (error = in_pcbladdr(inp, nam, &ifaddr))
return(error);
-#else /* TTCP */
- ifaddr = (struct sockaddr_in *)&ia->ia_addr;
- }
-#endif /* TTCP */
if (in_pcblookup(inp->inp_head,
sin->sin_addr,
sin->sin_port,
OpenPOWER on IntegriCloud