Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix compiler warnings. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
c932fa47ef58e60d69bf9bd1942b41fd |
| User & Date: | mistachkin 2013-10-14 08:28:04.627 |
Context
|
2013-10-14
| ||
| 13:30 | Bring in the latest SQLite 3.8.1 beta for the purpose of pre-release testing of SQLite. ... (check-in: 089dad49e2 user: drh tags: trunk) | |
| 08:51 | Merge updates from trunk. ... (check-in: 14be8e8a17 user: mistachkin tags: allExtra) | |
| 08:28 | Fix compiler warnings. ... (check-in: c932fa47ef user: mistachkin tags: trunk) | |
|
2013-10-11
| ||
| 20:19 | Improved the help text for /reports. Started 1.28 changelog entries. ... (check-in: 5c123de48c user: stephan tags: trunk) | |
Changes
Changes to src/cgi.c.
| ︙ | ︙ | |||
1321 1322 1323 1324 1325 1326 1327 |
**
** It is called in a loop so some variables will need to be replaced
*/
void cgi_handle_ssh_http_request(const char *zIpAddr){
static int nCycles = 0;
static char *zCmd = 0;
char *z, *zToken;
| | | | 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 |
**
** It is called in a loop so some variables will need to be replaced
*/
void cgi_handle_ssh_http_request(const char *zIpAddr){
static int nCycles = 0;
static char *zCmd = 0;
char *z, *zToken;
const char *zType = 0;
int i, content_length = 0;
char zLine[2000]; /* A single line of input. */
if( zIpAddr ){
if( nCycles==0 ){
cgi_setenv("REMOTE_ADDR", zIpAddr);
g.zIpAddr = mprintf("%s", zIpAddr);
}
|
| ︙ | ︙ |