1
0
Fork 0
mirror of https://github.com/kakwa/uts-server synced 2025-07-04 20:47:09 +02:00

code reformat

This commit is contained in:
kakwa 2016-11-02 18:58:14 +01:00
parent fc1a736672
commit ef97018644
7 changed files with 69 additions and 75 deletions

View file

@ -1,11 +1,11 @@
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <stddef.h> /* for offsetof() macro */
#include <string.h>
#include <pthread.h>
#include <civetweb.h>
#include <openssl/ts.h>
#include <pthread.h>
#include <stdbool.h>
#include <stddef.h> /* for offsetof() macro */
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#define HTTP_OPTIONS 1
#define LOGLEVEL_OPTIONS 2

View file

@ -1,8 +1,8 @@
#include <stdbool.h>
#include "utils.h"
#include <stdbool.h>
struct tuser_data {
char *first_message;
char *first_message;
};
int http_server_start(char *conffile, char *conf_wd, bool stdout_dbg);

View file

@ -1,16 +1,16 @@
#include <openssl/opensslconf.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <sys/syslog.h>
#include "context.h"
#include <openssl/bio.h>
#include <openssl/bn.h>
#include <openssl/err.h>
#include <openssl/opensslconf.h>
#include <openssl/pem.h>
#include <openssl/rand.h>
#include <openssl/ts.h>
#include <openssl/bn.h>
#include "context.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/syslog.h>
/* Name of config entry that defines the OID file. */
#define OID_SECTION "oids"