summaryrefslogtreecommitdiff
path: root/src/html-error.c
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2009-10-02 13:01:32 +0530
committerMukund Sivaraman <muks@banu.com>2009-10-02 13:01:32 +0530
commit323a4d01478374cdacc0d4629fe1cc54f7513698 (patch)
tree71a7ed7385ad21366a75ffb9ceaf0decce322619 /src/html-error.c
parent21c8d7a7ed1da5f094370c6fea15eca791ce8a34 (diff)
downloadtinyproxy-323a4d01478374cdacc0d4629fe1cc54f7513698.tar.gz
tinyproxy-323a4d01478374cdacc0d4629fe1cc54f7513698.zip
Clean up html_send_file ()
- Make function return from one place - Move inbuf to the heap
Diffstat (limited to '')
-rw-r--r--src/html-error.c53
1 files changed, 30 insertions, 23 deletions
diff --git a/src/html-error.c b/src/html-error.c
index b096cc4..e4ddf88 100644
--- a/src/html-error.c
+++ b/src/html-error.c
@@ -103,42 +103,42 @@ static char *lookup_variable (struct conn_s *connptr, const char *varname)
return (data);
}
-#define HTML_BUFSIZE 4096
-
/*
* Send an already-opened file to the client with variable substitution.
*/
-int send_html_file (FILE * infile, struct conn_s *connptr)
+int
+send_html_file (FILE *infile, struct conn_s *connptr)
{
- char inbuf[HTML_BUFSIZE], *varstart = NULL, *p;
+ char *inbuf;
+ char *varstart = NULL;
+ char *p;
const char *varval;
- int in_variable = 0, writeret;
+ int in_variable = 0;
+ int r = 0;
- while (fgets (inbuf, HTML_BUFSIZE, infile) != NULL) {
+ inbuf = (char *) safemalloc (4096);
+
+ while (fgets (inbuf, 4096, infile) != NULL) {
for (p = inbuf; *p; p++) {
switch (*p) {
case '}':
if (in_variable) {
*p = '\0';
- varval =
- (const char *)
- lookup_variable (connptr, varstart);
+ varval = (const char *)
+ lookup_variable (connptr,
+ varstart);
if (!varval)
varval = "(unknown)";
- writeret =
- write_message (connptr->client_fd,
+ r = write_message (connptr->client_fd,
"%s", varval);
- if (writeret)
- return (writeret);
in_variable = 0;
} else {
- writeret =
- write_message (connptr->client_fd,
+ r = write_message (connptr->client_fd,
"%c", *p);
- if (writeret)
- return (writeret);
}
+
break;
+
case '{':
/* a {{ will print a single {. If we are NOT
* already in a { variable, then proceed with
@@ -151,20 +151,27 @@ int send_html_file (FILE * infile, struct conn_s *connptr)
in_variable++;
} else
in_variable = 0;
+
default:
if (!in_variable) {
- writeret =
- write_message (connptr->client_fd,
+ r = write_message (connptr->client_fd,
"%c", *p);
- if (writeret)
- return (writeret);
}
-
}
+
+ if (r)
+ break;
}
+
+ if (r)
+ break;
+
in_variable = 0;
}
- return (0);
+
+ safefree (inbuf);
+
+ return r;
}
int send_http_headers (struct conn_s *connptr, int code, const char *message)