summaryrefslogtreecommitdiff
path: root/Src/Modules/tcp.c
AgeCommit message (Collapse)AuthorFilesLines
2017-03-10unposted: silence warnings on CygwinJun-ichi Takimoto1-1/+2
On Cygwin, h_name in struct hostent is 'const char*'
2016-02-0337868: add 'static' to file local variablesJun-ichi Takimoto1-1/+1
2016-01-3037838: use UNUSED() consistentlyJun-ichi Takimoto1-1/+1
2015-10-2937014: Improved internal parameter setting.Peter Stephenson1-3/+3
Enhance WARNCREATEGLOBAL to work in many more cases. Don't create REPLY as an integer if it didn't previously exist as one, even if the value to be set is integral, as this is likely to mess up later uses of REPLY.
2015-10-2436944: extend fd management to zsocketPeter Stephenson1-2/+2
2015-10-2436941: Mark file descripors in ztcp as used.Peter Stephenson1-1/+6
Allow such file descriptors to be either internal and closed on exec or external and so managed explicitly by module.
2015-08-10not quite posted: check for error return before EINTRPeter Stephenson1-1/+1
2015-08-1036039: Restart socket commands on EINTRJoshua Krusell1-2/+5
2015-07-2235939: fix select polling in ztcp and zsocketJoshua Krusell1-1/+1
2014-11-2433785: Fix leaks of desthost in ztcpMikael Magnusson1-0/+4
Found by coverity.
2009-09-2227286: Made movefd() return the targetfd on success. AddedWayne Davison1-8/+11
a little more error checking in the callers of movefd().
2009-09-2227284: better use of movefd()Peter Stephenson1-2/+10
2008-11-0626013: don't ztrdup the other buffer returned by inet_ntoa. cf. 25987.Clint Adams1-1/+1
2008-11-0125987: don't ztrdup the buffer returned by inet_ntoa.Clint Adams1-1/+1
2007-07-12revert thatClint Adams1-34/+107
2007-07-1223670: use getaddrinfo() and getnameinfo() instead of get*by* functions.Clint Adams1-107/+34
2007-07-0623665: autoloading of module features and related tweaksPeter Stephenson1-3/+3
2007-05-2923482: more typosPeter Stephenson1-1/+1
2007-05-28see 23479: add initial features support for modulesPeter Stephenson1-3/+25
2007-02-1323168: fix error message for failed bindPeter Stephenson1-1/+1
2006-05-3022474: use variable argument lists to improve error message handlingPeter Stephenson1-24/+23
2004-11-1620556: change SOCKLEN_T to ZSOCKLEN_T to avoid clashPeter Stephenson1-1/+1
2004-06-02Marked unused parameters with the new UNUSED() macro.Wayne Davison1-5/+5
2004-03-0319525: suppress compiler warnings and complete groups using lookupd on Mac OSOliver Kiddle1-1/+1
2003-10-29a la 19209: zcalloc -> zshcallocPeter Stephenson1-1/+1
2003-05-2218559, 18562: make modules use proper option argumentsPeter Stephenson1-22/+20
2003-04-2318466: tcp.mdh only included by C filePeter Stephenson1-0/+1
2003-02-0618202: New TCP function system plus small error message change in ztcp.Peter Stephenson1-1/+3
2002-08-2717582: Improved option argument handling.Peter Stephenson1-9/+9
unposted: Updated version to 4.1.0-dev-6 because of interface change.
2002-06-05remove builtin when tcp module is unloaded.Peter Stephenson1-3/+1
2002-05-3017253: ztcp -L gives parseable information on tcp sessionPeter Stephenson1-9/+24
2002-05-2917249: fix user output from ztcpPeter Stephenson1-4/+4
2002-05-2417220: Src/Modules/tcp.c: bugs using ztcp to list connections.Peter Stephenson1-3/+3
2002-05-1617171: Src/Modules/tcp.c: ztcp didn't return failurePeter Stephenson1-0/+2
when a connect() failed.
2002-05-1417162: Src/Modules/tcp.c: prevent warning onPeter Stephenson1-2/+2
gethostbyaddr() arguments.
2002-05-1417161: Src/Modules/tcp.c: length parameter to accept()Peter Stephenson1-0/+1
wasn't initialised, causing random failures.
2002-05-0817102: looking up TCP sessions by fd returned the wrong pointerPeter Stephenson1-1/+1
2002-05-0817097: closing all TCP sessions referenced freed memory.Peter Stephenson1-2/+4
2002-04-2517040: Src/Modules/tcp.c: AF_INET6 wasn't copied into thePeter Stephenson1-1/+2
socket structure for IPv6. 17041: Src/Modules/zftp.c: Minor but fatal typos creating a data connection for zftp using IPv6.
2002-04-1817011: Src/Modules/tcp.c, Src/Modules/zftp.c: restorePeter Stephenson1-1/+1
freehostent() incorrectly removed in 16172.
2001-10-2616176: Src/Modules/tcp.c, Src/Modules/zftp.c: after fdclose(),Peter Stephenson1-6/+8
TCP control fd is no longer valid, but we still need to remove the session cleanly.
2001-10-2616172: freehostent -> zfreehostent to avoid name clashPeter Stephenson1-1/+1
2001-10-14Remove <arpa/telnet.h> from tcp.c.Bart Schaefer1-14/+16
2001-10-08remove duplicated includes which caused problems on IRIX 5 (15987)Oliver Kiddle1-16/+0
2001-10-0815964: use SOCKLEN_TAndrey Borzenkov1-1/+2
2001-10-0215919: use LinkLists in place of somewhat equivalent codeClint Adams1-58/+33
2001-09-2715886: use select if poll is not available, or complain if neither are availableClint Adams1-2/+25
2001-09-1015780: rename **arg to **dargsClint Adams1-18/+20
2001-09-1015779: ztcp -dClint Adams1-22/+57
2001-09-10stupid bugfixesClint Adams1-5/+8