diff options
author | Joshua Pritikin <joshua.pritikin@db.com> | 1999-05-11 07:10:13 -0400 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-05-11 16:32:05 +0000 |
commit | 1494e794755363d23b7bca66c4a024ccc839e963 (patch) | |
tree | 524db0f8d0a121dd0727b59a64d964f5a898e4b9 /ext/Socket/Socket.pm | |
parent | 0d0c0d42fe2aa4166c71f4cca8101e39e114387b (diff) | |
download | perl-1494e794755363d23b7bca66c4a024ccc839e963.tar.gz |
Socket IPPROTO_TCP [PATCH 5.005_5x]
Message-ID: <Pine.GSO.4.02.9905111106460.1418-100000@eq1062.wks.na.deuba.com>
p4raw-id: //depot/perl@3391
Diffstat (limited to 'ext/Socket/Socket.pm')
-rw-r--r-- | ext/Socket/Socket.pm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/ext/Socket/Socket.pm b/ext/Socket/Socket.pm index 1654b164bb..a0bb95d6e4 100644 --- a/ext/Socket/Socket.pm +++ b/ext/Socket/Socket.pm @@ -1,7 +1,7 @@ package Socket; use vars qw($VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS); -$VERSION = "1.7"; +$VERSION = "1.71"; =head1 NAME @@ -272,7 +272,14 @@ require DynaLoader; UIO_MAXIOV ); -@EXPORT_OK = qw(CR LF CRLF $CR $LF $CRLF); +@EXPORT_OK = qw(CR LF CRLF $CR $LF $CRLF + + IPPROTO_TCP + TCP_KEEPALIVE + TCP_MAXRT + TCP_MAXSEG + TCP_NODELAY + TCP_STDURG); %EXPORT_TAGS = ( crlf => [qw(CR LF CRLF $CR $LF $CRLF)], |