summaryrefslogtreecommitdiffhomepage
path: root/src/sock.c
AgeCommit message (Collapse)Author
2009-09-15Indent code to Tinyproxy coding styleMukund Sivaraman
The modified files were indented with GNU indent using the following command: indent -npro -kr -i8 -ts8 -sob -l80 -ss -cs -cp1 -bs -nlps -nprs -pcs \ -saf -sai -saw -sc -cdw -ce -nut -il0 No other changes of any sort were made.
2009-08-07Rename tinyproxy.[ch] to main.[ch]Mukund Sivaraman
2008-12-08Convert tabs to spacesMukund Sivaraman
2008-12-01Reformat code to GNU coding styleMukund Sivaraman
This is a commit which simply ran all C source code files through GNU indent. No other modifications were made.
2008-05-24Updated copyright, license notices in source codeMukund Sivaraman
The notices have been changed to a more GNU look. Documentation comments have been separated from the copyright header. I've tried to keep all copyright notices intact. Some author contact details have been updated.
2008-03-13Corrected datatype of salen to fix compiler warningMukund Sivaraman
2005-08-15* [Indent] Ran Source Through indentRobert James Kaes
I re-indented the source code using indent with the following options: indent -kr -bad -bap -nut -i8 -l80 -psl -sob -ss -ncs There are now _no_ tabs in the source files, and all indentation is eight spaces. Lines are 80 characters long, and the procedure type is on it's own line. Read the indent manual for more information about what each option means.
2005-07-12* Specified Correct typedef in getsock_ip()Robert James Kaes
Changed the variable type for the namelen variable to the correct socklen_t type. The configure script already checked for it, but for some reason I never got around to actually using it in this function.
2004-04-27Added the "BindSame" configure directive from Oswald Buddenhagen.Robert James Kaes
This allows tinyproxy to respond to a request bound to the same interface that the request came in on. As Oswald explains: "attached is a patch that adds the BindSame option. it causes binding an outgoing connection to the ip address of the respective incoming connection. that way one can simulate an entire proxy farm with a single instance of tinyproxy on a multi-homed machine." Cool.
2004-02-18Converted the various socket functions to work with both IPv4 and IPv6Robert James Kaes
addresses.
2002-10-03#Style formatting change.Robert James Kaes
2002-05-31(getpeer_information): Fixed a problem retrieving the FQDN of a host because ↵Robert James Kaes
I was passing in an incorrect parameter to gethostbyaddr(). D'oh.
2002-05-27(opensock): Changed a comment around to better state what the code is ↵Robert James Kaes
actually doing.
2002-05-26Removed the DNS API calls and replaced them with the standardRobert James Kaes
gethostbyname() and gethostbyaddr() functions. This is possible because tinyproxy now uses a standard pre-forked() method.
2002-05-24Fixed some spelling mistakes, and removed the getpeer_ip() andRobert James Kaes
getpeer_string() functions as they've been replaced by the getpeer_information() function.
2002-05-23Changed the lookup_domain() function to use the new "dnsserver" API.Robert James Kaes
Also moved safe_write(), safe_read(), readline(), and write_message() functions into their own file.
2002-04-24bind_address has been moved inside the config structure. Fixed up aRobert James Kaes
problem where "data" was being freed even if it had not been allocated (because of an error condition.)
2002-04-22The "Bind" directive sets a binding address which the outgoing connectionsRobert James Kaes
will use.
2002-04-18Whoops. The previous include only had the code conditionally removed.Robert James Kaes
Remove for real this time.
2002-04-18Removed the call to inet_aton() since the gethostbyname() function handlesRobert James Kaes
the dotted-decimal case itself.
2002-04-18Removed the call to hstrerror() in the getpeer_string() function. It'sRobert James Kaes
not available on all machines.
2002-04-17Removed the LOOKUP_LOCK() and LOOKUP_UNLOCK() macros since I believe IRobert James Kaes
need locking around both gethostbyname() and gethostbyaddr() at the same time.
2002-04-16Tightened the lookup_domain() function.Robert James Kaes
2002-04-15Added a test to make sure the "whole_buffer" could be allocated.Robert James Kaes
2002-04-13Added additional error handling for the bind() and listen() system callsRobert James Kaes
when setting up the listening socket.
2002-04-13Modified the opensock() function to respect the Listen directive. If it'sRobert James Kaes
set, bind all outgoing addresses to this local address.
2001-12-24Added the write_message() function (from reqs.c)Robert James Kaes
2001-12-19Changed the calls to write() to send() so that we can use send(...,Robert James Kaes
MSG_NOSIGNAL) and not get signals sent to the process. (easier for debugging and the system doesn't need to worry about signals.)
2001-12-17Added the assert() calls to safe_write() to make sure the arguments areRobert James Kaes
sane.
2001-12-15Changed safe_write() to fully send all the data in the buffer it wasRobert James Kaes
passed. Also safe_write() and safe_read() now use char pointer buffers rather than the void pointer style.
2001-12-15Added the host name lookup code (which use to be in the DNS cachingRobert James Kaes
system.)
2001-11-25Add support to limit the maximum size of the input line (to 128KB whichRobert James Kaes
should be _more_ than enough for any header line. :)
2001-11-23Style changes. Also replaces all mallocs with safemalloc, etc.Robert James Kaes
2001-11-22Replaced the readline() function with a new version which has noRobert James Kaes
restrictions on the length of a line (unless you fill memory of course.) Reformated the source.
2001-11-12Changed the read() call into a recv() call with a flag of NOSIGNAL since IRobert James Kaes
don't want signals messing up my calling conventions.
2001-10-25Bit of source code clean up.Robert James Kaes
2001-10-24Error message cleanup to make the information more informative.Robert James Kaes
2001-10-23Fixed a spelling problem in a log message.Robert James Kaes
2001-10-23Moved the zero-length string setting to outside the tests in getpeer_*()Robert James Kaes
functions. Also added a more robust error reporting for DNS errors.
2001-10-22Changed the getpeer_*() functions to return the reason why the name or IPRobert James Kaes
address could not be looked up.
2001-10-22Fixed a problem where a user's variable would be uninitialized if a DNSRobert James Kaes
lookup failed.
2001-09-16Moved the safe_write() and safe_read() functions here.Robert James Kaes
2001-09-07Error message cleanup.Robert James Kaes
2001-08-29Cleaned up the locking code to make it more fine grained. Did this sinceRobert James Kaes
dncache.c has locking itself now.
2001-05-27Removed the SA define.Robert James Kaes
Made the sock_mutex static since it's not referenced outside the file. Changed the data types for some of the variables. Cleaned up the readline function (changed data types and removed variables.)
2001-05-23Added ASSERT statements.Robert James Kaes
2000-09-11Needed locking in getpeer_string().Robert James Kaes
Added mutex locking around the dnscache() call. Removed the global sockaddr and setup_fd variables. Added the socket_blocking() and socket_nonblocking() functions. Gutted the readling() function and replaced it with something similar to the 1.0 version. :)
2000-03-31Completely rewrote the readline function.Robert James Kaes
2000-02-16This commit was generated by cvs2svn to compensate for changes in r2,Steven Young
which included commits to RCS files with non-trunk default branches.