cgi-send.c

来自「最新的版本ACE-5.6.8,刚从外文网上搬下,与大家分享.」· C语言 代码 · 共 49 行

C
49
字号
/* $Id: cgi-send.c 81993 2008-06-16 20:26:16Z sowayaa $ */
/*
 * Send 10K file; send random bits.
 *
 */

//FUZZ: disable check_for_improper_main_declaration

#include <stdio.h>
#include <stdlib.h>

#define FILE_SIZE       10240
#define MALLOC_FAILURE  "Out of memory"

int
main()
{
  int filesize;
  char *str_filesize;
  char *buffer;
  int index;

  printf("Content-type: text/plain\r\n\r\n");

  if ( !(str_filesize = getenv("QUERY_STRING")) )
    filesize = FILE_SIZE;
  else {
    if ( !strncmp(str_filesize, "size=", 5) )
      filesize = atoi(&(str_filesize[5]));
    else
      filesize = FILE_SIZE;
  }

  if ( !(buffer = (char *)malloc(filesize)) ) {
    fwrite(MALLOC_FAILURE, strlen(MALLOC_FAILURE), 1, stdout);
    return -1;
  }

  for (index=0; index< filesize; index++)
    /* generate random characters from A-Z */
    buffer[index] = rand() %26 + 63;

  fwrite(buffer, filesize, 1, stdout);

  free(buffer);

  return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?