Commit 3eead2d6 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

port number fix, now stores the processed request sent to the server

parent 5cffe055
Loading
Loading
Loading
Loading
+1 −3
Original line number Original line Diff line number Diff line
CC	= gcc
CC	= gcc
OPTIM	= -O2
CFLAGS	= -g -Wall
DEF	= -DDEFAULT_PORT=7676
CFLAGS	= -g -Wall $(OPTIM) $(DEF)


.PHONY: all clean
.PHONY: all clean


+22 −24
Original line number Original line Diff line number Diff line
@@ -14,9 +14,7 @@
#include <netdb.h>
#include <netdb.h>
#include <assert.h>
#include <assert.h>


#ifndef DEFAULT_PORT
#define DEFAULT_PORT 8999
#define DEFAULT_PORT 8642
#endif


#ifndef DEFAULT_LOGFILE
#ifndef DEFAULT_LOGFILE
#define DEFAULT_LOGFILE "/dev/null"
#define DEFAULT_LOGFILE "/dev/null"
@@ -25,7 +23,9 @@
#define DOCBUFSIZE 4
#define DOCBUFSIZE 4
#define BUFFERSIZE (DOCBUFSIZE * 1024)
#define BUFFERSIZE (DOCBUFSIZE * 1024)


#define VERSION "SWS/0.1"
#define VERSION "cURL test suite HTTP server/0.1"

#define REQUEST_DUMP "http-request.dump"


#define TEST_DATA_PATH "../data/test%d"
#define TEST_DATA_PATH "../data/test%d"


@@ -106,6 +106,20 @@ int ProcessRequest(char *request)
  return 1; /* done */
  return 1; /* done */
}
}


/* store the entire request in a file */
void storerequest(char *reqbuf)
{
  FILE *dump;

  dump = fopen(REQUEST_DUMP, "wb"); /* b is for windows-preparing */
  if(dump) {
    fwrite(reqbuf, 1, strlen(reqbuf), dump);

    fclose(dump);
  }

}



#define REQBUFSIZ 4096
#define REQBUFSIZ 4096
#define MAXDOCNAMELEN 1024
#define MAXDOCNAMELEN 1024
@@ -141,8 +155,10 @@ static int get_request(int sock)
  }
  }
  reqbuf[offset]=0;
  reqbuf[offset]=0;
  
  
  logmsg("Got request:");
  logmsg("Received a request");
  logmsg(reqbuf);

  /* dump the request to an external file */
  storerequest(reqbuf);


  if (sscanf(reqbuf, "%s %s HTTP/%d.%d",
  if (sscanf(reqbuf, "%s %s HTTP/%d.%d",
             request,
             request,
@@ -218,30 +234,12 @@ static int send_doc(int sock, int doc)
  return 0;
  return 0;
}
}



static void usage(const char *me)
{
    fprintf(stderr, "Usage: %s [ OPTIONS ]\n", me);
    fprintf(stderr,
	    "-p NUM    --port=NUM         accept requests on port NUM (default %d)\n",
	    DEFAULT_PORT);
    fprintf(stderr,
	    "-l FILE   --logfile=FILE     log requests to file FILE (default %s)\n",
	    DEFAULT_LOGFILE);
    fprintf(stderr,
	    "-f NUM    --fork=NUM         fork NUM server processes (default 0)\n");
    fprintf(stderr, "-h        --help             this screen\n");
    exit(1);
}


int main(int argc, char *argv[])
int main(int argc, char *argv[])
{
{
    struct sockaddr_in me;
    struct sockaddr_in me;
    int sock, msgsock, flag;
    int sock, msgsock, flag;
    unsigned short port = DEFAULT_PORT;
    unsigned short port = DEFAULT_PORT;
    char *logfile = DEFAULT_LOGFILE;
    char *logfile = DEFAULT_LOGFILE;
    int c, longind;
    
    
    if(argc>1)
    if(argc>1)
      port = atoi(argv[1]);
      port = atoi(argv[1]);