Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-08-07 | Rename tinyproxy.[ch] to main.[ch] | Mukund Sivaraman | 1 | -1/+1 | |
2009-08-04 | conffile: change [sg]et_int_arg() to return unsigned long int | Michael Adam | 1 | -7/+7 | |
This is also the parser regexp for INT in the definition. Michael | |||||
2009-08-04 | conffile: add explicit cast in get_string_arg(). | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-08-04 | config_compile(): add an explicit cast. | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-08-04 | config_compile(): fix as signed / unsigned comparison compiler warning. | Michael Adam | 1 | -1/+1 | |
Michael | |||||
2009-08-04 | conffile: fix indentation in the directives definition. | Michael Adam | 1 | -45/+47 | |
Michael | |||||
2009-08-04 | conffile: fix some missing initializer warnings in the directives definition. | Michael Adam | 1 | -4/+5 | |
Michael | |||||
2009-08-04 | conffile: reformat some indentation and linebreak in the directives definition. | Michael Adam | 1 | -10/+8 | |
Michael | |||||
2008-12-08 | Convert tabs to spaces | Mukund Sivaraman | 1 | -29/+29 | |
2008-12-08 | Break at 80 columns | Mukund Sivaraman | 1 | -1/+3 | |
2008-12-01 | Reformat code to GNU coding style | Mukund Sivaraman | 1 | -388/+400 | |
This is a commit which simply ran all C source code files through GNU indent. No other modifications were made. | |||||
2008-07-14 | Allow numeric uid/gids in User and Group directives | Mukund Sivaraman | 1 | -1/+1 | |
This change allows numeric uid/gids to be specified in the User and Group directives in tinyproxy.conf. Formerly, only username and group names were accepted. This fixes bug #15, which was created after looking at a case on the OpenWrt wiki. X-Banu-Bugzilla-Ids: 15 | |||||
2008-05-24 | Renamed htmlerror.[ch] to html-error.[ch] | Mukund Sivaraman | 1 | -1/+1 | |
2008-05-24 | Updated copyright, license notices in source code | Mukund Sivaraman | 1 | -16/+20 | |
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-30 | Free arg before returning, or it'll leak | Mukund Sivaraman | 1 | -0/+3 | |
2008-03-13 | Renamed file to replace underscores in it with dashes | Mukund Sivaraman | 1 | -1/+1 | |
2005-11-04 | Added support for UPSTREAM directive. | Robert James Kaes | 1 | -4/+52 | |
Included the basic grammar and handler functions for the "upstream" and "no upstream" directives. I still need to update the grammar to match _all_ the possibilities documented in the tinyproxy.conf file, but at least it now does as much as the old config parser. | |||||
2005-11-04 | Reformatted the reverse and filter configuration blocks. If either | Robert James Kaes | 1 | -73/+10 | |
section is not enabled at compile time, it should not be included in the object file. | |||||
2005-11-04 | Fixed up whitespace formatting of the config file directives. Also | Robert James Kaes | 1 | -52/+61 | |
added blank lines to group related directives. | |||||
2005-08-16 | * [Refactor] Moved Reverse Proxy Code | Robert James Kaes | 1 | -1/+2 | |
Moved the reverse proxy code from reqs.c into it's own files (reverse_proxy.c). The code in reqs.c is way too complicated, so I want to move unrelated code into their own files to simplify the main concepts in reqs.c. | |||||
2005-08-15 | * [Indent] Ran Source Through indent | Robert James Kaes | 1 | -168/+281 | |
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. | |||||
2004-08-24 | (get_bool_arg): Moved the initialization of "p" _before_ the assert() | Robert James Kaes | 1 | -3/+3 | |
calls. The code doesn't compile under gcc 2.95 otherwise. (I'm surprised it compiles under gcc 3.3 without a problem.) | |||||
2004-08-14 | Reorganized the source code. Added the missing reverse proxy | Robert James Kaes | 1 | -109/+143 | |
directives. Added a bunch of comments to clarify how the code works. | |||||
2004-08-13 | Added some error logging information for directives that are | Robert James Kaes | 1 | -13/+49 | |
conditionally compiled. Still need to add info messages for the directives. | |||||
2004-08-13 | Added the new configuration parsing system (conffile.c and | Robert James Kaes | 1 | -0/+612 | |
conffile.h.) The new system is intended to replace the existing grammar.y and scanner.l files. I don't want to depend on flex/bison any longer. |