Changeset 2038


Ignore:
Timestamp:
2001-02-21T16:01:41+13:00 (23 years ago)
Author:
sjboddie
Message:

Increased the maximum URL length for the local library to 8kB and fixed
a nasty little array indexing bug.

Location:
trunk/gsdl/src/w32server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/w32server/httpreq.h

    r611 r2038  
    11#ifndef HTTPREQ_H
    22#define HTTPREQ_H
     3
     4#include "locate.h"
    35
    46/*
     
    7476    //Simple request line info v0.9
    7577    char MethodStr[ReqMethodStrLen];
    76     char URIStr[ReqURIStrLen];
     78  //    char URIStr[ReqURIStrLen];
     79    char URIStr[MAX_URL_SIZE];
    7780    //added v1.0
    7881    char VersionStr[ReqVersionStrLen];
  • trunk/gsdl/src/w32server/locate.h

    r1624 r2038  
    11//#define MAX_URL_SIZE 256
    22// now kind of long to allow for post data
    3 #define MAX_URL_SIZE 4096
     3#define MAX_URL_SIZE 8192
    44
    55extern HWND GSDL_Window;
Note: See TracChangeset for help on using the changeset viewer.