2022-11-23 15:43:20 +09:00
|
|
|
#include <stdint.h>
|
2022-11-23 15:21:23 +09:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/uio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include "c302.h"
|
|
|
|
|
2022-11-23 15:45:22 +09:00
|
|
|
static void http_error(errcode_enum_t code, char* msg) {
|
2022-11-23 15:21:23 +09:00
|
|
|
uint32_t len = strlen(msg) + typel[code];
|
|
|
|
char* str = malloc(len);
|
|
|
|
sprintf(str, types[code], msg);
|
|
|
|
const struct iovec iov[2] = {{&len, sizeof(uint32_t)}, {str, len}};
|
|
|
|
writev(1, (const struct iovec *)&iov, 2);
|
|
|
|
free(str);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Usage: c302 method query_string
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc != 3) {
|
|
|
|
http_error(HTTP500, "Argument Count Error.");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
srand(time(NULL));
|
2022-11-23 16:20:21 +09:00
|
|
|
uint32_t i = rand() % (sizeof(urls)/sizeof(char*));
|
|
|
|
uint32_t len = sizeof(HTTP302HEAD) - 1 + urlsl[i];
|
|
|
|
const struct iovec iov[3] = {{(void *)&len, sizeof(uint32_t)}, {HTTP302HEAD, sizeof(HTTP302HEAD)-1}, {(void *)urls[i], urlsl[i]}};
|
|
|
|
return writev(1, (const struct iovec *)&iov, 3) != len+sizeof(uint32_t);
|
2022-11-23 15:21:23 +09:00
|
|
|
}
|