about summary refs log tree commit diff
path: root/Src/Modules/tcp.c
Commit message (Collapse)AuthorAgeFilesLines
* unposted: silence warnings on CygwinJun-ichi Takimoto2017-03-101-1/+2
| | | | On Cygwin, h_name in struct hostent is 'const char*'
* 37868: add 'static' to file local variablesJun-ichi Takimoto2016-02-031-1/+1
|
* 37838: use UNUSED() consistentlyJun-ichi Takimoto2016-01-301-1/+1
|
* 37014: Improved internal parameter setting.Peter Stephenson2015-10-291-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.
* 36944: extend fd management to zsocketPeter Stephenson2015-10-241-2/+2
|
* 36941: Mark file descripors in ztcp as used.Peter Stephenson2015-10-241-1/+6
| | | | | Allow such file descriptors to be either internal and closed on exec or external and so managed explicitly by module.
* not quite posted: check for error return before EINTRPeter Stephenson2015-08-101-1/+1
|
* 36039: Restart socket commands on EINTRJoshua Krusell2015-08-101-2/+5
|
* 35939: fix select polling in ztcp and zsocketJoshua Krusell2015-07-221-1/+1
|
* 33785: Fix leaks of desthost in ztcpMikael Magnusson2014-11-241-0/+4
| | | | Found by coverity.
* 27286: Made movefd() return the targetfd on success. AddedWayne Davison2009-09-221-8/+11
| | | | a little more error checking in the callers of movefd().
* 27284: better use of movefd()Peter Stephenson2009-09-221-2/+10
|
* 26013: don't ztrdup the other buffer returned by inet_ntoa. cf. 25987.Clint Adams2008-11-061-1/+1
|
* 25987: don't ztrdup the buffer returned by inet_ntoa.Clint Adams2008-11-011-1/+1
|
* revert thatClint Adams2007-07-121-34/+107
|
* 23670: use getaddrinfo() and getnameinfo() instead of get*by* functions.Clint Adams2007-07-121-107/+34
|
* 23665: autoloading of module features and related tweaksPeter Stephenson2007-07-061-3/+3
|
* 23482: more typosPeter Stephenson2007-05-291-1/+1
|
* see 23479: add initial features support for modulesPeter Stephenson2007-05-281-3/+25
|
* 23168: fix error message for failed bindPeter Stephenson2007-02-131-1/+1
|
* 22474: use variable argument lists to improve error message handlingPeter Stephenson2006-05-301-24/+23
|
* 20556: change SOCKLEN_T to ZSOCKLEN_T to avoid clashPeter Stephenson2004-11-161-1/+1
|
* Marked unused parameters with the new UNUSED() macro.Wayne Davison2004-06-021-5/+5
|
* 19525: suppress compiler warnings and complete groups using lookupd on Mac OSOliver Kiddle2004-03-031-1/+1
|
* a la 19209: zcalloc -> zshcallocPeter Stephenson2003-10-291-1/+1
|
* 18559, 18562: make modules use proper option argumentsPeter Stephenson2003-05-221-22/+20
|
* 18466: tcp.mdh only included by C filePeter Stephenson2003-04-231-0/+1
|
* 18202: New TCP function system plus small error message change in ztcp.Peter Stephenson2003-02-061-1/+3
|
* 17582: Improved option argument handling.Peter Stephenson2002-08-271-9/+9
| | | | unposted: Updated version to 4.1.0-dev-6 because of interface change.
* remove builtin when tcp module is unloaded.Peter Stephenson2002-06-051-3/+1
|
* 17253: ztcp -L gives parseable information on tcp sessionPeter Stephenson2002-05-301-9/+24
|
* 17249: fix user output from ztcpPeter Stephenson2002-05-291-4/+4
|
* 17220: Src/Modules/tcp.c: bugs using ztcp to list connections.Peter Stephenson2002-05-241-3/+3
|
* 17171: Src/Modules/tcp.c: ztcp didn't return failurePeter Stephenson2002-05-161-0/+2
| | | | when a connect() failed.
* 17162: Src/Modules/tcp.c: prevent warning onPeter Stephenson2002-05-141-2/+2
| | | | gethostbyaddr() arguments.
* 17161: Src/Modules/tcp.c: length parameter to accept()Peter Stephenson2002-05-141-0/+1
| | | | wasn't initialised, causing random failures.
* 17102: looking up TCP sessions by fd returned the wrong pointerPeter Stephenson2002-05-081-1/+1
|
* 17097: closing all TCP sessions referenced freed memory.Peter Stephenson2002-05-081-2/+4
|
* 17040: Src/Modules/tcp.c: AF_INET6 wasn't copied into thePeter Stephenson2002-04-251-1/+2
| | | | | | socket structure for IPv6. 17041: Src/Modules/zftp.c: Minor but fatal typos creating a data connection for zftp using IPv6.
* 17011: Src/Modules/tcp.c, Src/Modules/zftp.c: restorePeter Stephenson2002-04-181-1/+1
| | | | freehostent() incorrectly removed in 16172.
* 16176: Src/Modules/tcp.c, Src/Modules/zftp.c: after fdclose(),Peter Stephenson2001-10-261-6/+8
| | | | | TCP control fd is no longer valid, but we still need to remove the session cleanly.
* 16172: freehostent -> zfreehostent to avoid name clashPeter Stephenson2001-10-261-1/+1
|
* Remove <arpa/telnet.h> from tcp.c.Bart Schaefer2001-10-141-14/+16
|
* remove duplicated includes which caused problems on IRIX 5 (15987)Oliver Kiddle2001-10-081-16/+0
|
* 15964: use SOCKLEN_TAndrey Borzenkov2001-10-081-1/+2
|
* 15919: use LinkLists in place of somewhat equivalent codeClint Adams2001-10-021-58/+33
|
* 15886: use select if poll is not available, or complain if neither are availableClint Adams2001-09-271-2/+25
|
* 15780: rename **arg to **dargsClint Adams2001-09-101-18/+20
|
* 15779: ztcp -dClint Adams2001-09-101-22/+57
|
* stupid bugfixesClint Adams2001-09-101-5/+8
|