mirror of
https://github.com/owntracks/recorder.git
synced 2024-11-15 18:08:28 -07:00
default 40x40 PNG on 404
This commit is contained in:
parent
78c922e5ac
commit
835e37cc97
26
http.c
26
http.c
@ -38,6 +38,28 @@
|
||||
|
||||
#ifdef WITH_HTTP
|
||||
|
||||
/* A transparent 40x40 PNG image with a black border */
|
||||
static unsigned char border40x40png[] = {
|
||||
0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, 0x00, 0x00,
|
||||
0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x28,
|
||||
0x00, 0x00, 0x00, 0x28, 0x08, 0x06, 0x00, 0x00, 0x00, 0x8C,
|
||||
0xFE, 0xB8, 0x6D, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4B, 0x47,
|
||||
0x44, 0x00, 0xFF, 0x00, 0xFF, 0x00, 0xFF, 0xA0, 0xBD, 0xA7,
|
||||
0x93, 0x00, 0x00, 0x00, 0x09, 0x70, 0x48, 0x59, 0x73, 0x00,
|
||||
0x00, 0x0B, 0x13, 0x00, 0x00, 0x0B, 0x13, 0x01, 0x00, 0x9A,
|
||||
0x9C, 0x18, 0x00, 0x00, 0x00, 0x07, 0x74, 0x49, 0x4D, 0x45,
|
||||
0x07, 0xDF, 0x0A, 0x15, 0x0C, 0x31, 0x28, 0xF8, 0x39, 0xED,
|
||||
0x7A, 0x00, 0x00, 0x00, 0x46, 0x49, 0x44, 0x41, 0x54, 0x58,
|
||||
0xC3, 0xED, 0xD8, 0x21, 0x0E, 0x00, 0x20, 0x0C, 0x04, 0xC1,
|
||||
0x2B, 0xE1, 0xFF, 0x5F, 0x06, 0x8B, 0x06, 0x53, 0x92, 0x59,
|
||||
0x55, 0x39, 0x39, 0xD9, 0x4A, 0xB2, 0xD2, 0xB8, 0x91, 0xE6,
|
||||
0xCD, 0xE3, 0xAE, 0x66, 0xB6, 0xF5, 0xC5, 0x82, 0x80, 0x80,
|
||||
0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80,
|
||||
0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0x80, 0xB7,
|
||||
0x55, 0x7C, 0xF9, 0xDF, 0xDA, 0xCB, 0x3B, 0x03, 0x4F, 0x9E,
|
||||
0xFE, 0xB9, 0x44, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E,
|
||||
0x44, 0xAE, 0x42, 0x60, 0x82 };
|
||||
|
||||
/*
|
||||
* Return a lowercased copy of a GET/POST parameter or NULL. The parameter
|
||||
* may be overriden by an HTTP header called X-Limit-<fieldname>.
|
||||
@ -463,8 +485,8 @@ static int photo(struct mg_connection *conn)
|
||||
return (MG_MORE);
|
||||
}
|
||||
free(u);
|
||||
mg_send_status(conn, 404);
|
||||
mg_printf_data(conn, "%s unreadable\n", userphoto);
|
||||
mg_send_header(conn, "Content-type", "image/png");
|
||||
mg_send_data(conn, border40x40png, sizeof(border40x40png));
|
||||
return (MG_TRUE);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user