Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
206 changes: 0 additions & 206 deletions include/ftpd.h

This file was deleted.

5 changes: 1 addition & 4 deletions include/httpcgi.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,7 @@
/* Basic typedefs (no dependency) */
/* ------------------------------------------------------------------ */

typedef unsigned char UCHAR;
typedef unsigned short USHRT;
typedef unsigned int UINT;
typedef unsigned long ULONG;
#include "types.h"

/* ------------------------------------------------------------------ */
/* Forward declarations — CGI modules hold pointers, never dereference */
Expand Down
12 changes: 2 additions & 10 deletions include/httpd.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include "dbg.h" /* debugging goodies */
#include "errors.h" /* the missing errno values */
#include "racf.h" /* security environment */
#include "ftpd.h" /* FTP daemon and client */
#include "types.h" /* UCHAR, USHRT, UINT, ULONG */
#include "cred.h" /* Credentials */
#include "mqtc370.h" /* MQTT Client */
#include "httpxlat.h" /* ASCII/EBCDIC translation */
Expand All @@ -63,14 +63,6 @@ typedef enum rdw RDW; /* RDW option */

#include "httppub.h" /* HTTP Telemetry Publisher */

#if 0 /* declared in FTPD.H */
typedef unsigned char UCHAR;
typedef unsigned short USHRT;
typedef unsigned int UINT;
typedef unsigned long ULONG;
typedef unsigned long long U64;
#endif

#ifndef OR
#define OR ??!??! /* logical OR trigraph */
#endif
Expand Down Expand Up @@ -122,7 +114,7 @@ struct httpd {
char rname[12]; /* 38 resource name */
HTTPCGI **httpcgi; /* 44 CGI path and programs */
time64_t uptime; /* 48 Server startup time */
FTPD *ftpd; /* 50 FTP daemon */
void *unused_50; /* 50 (was: FTPD *ftpd) */
UFSSYS *ufssys; /* 54 Unix like file system */
LUAX *luax; /* 58 Lua function vector */
const char *version; /* 5C HTTPD Version */
Expand Down
13 changes: 13 additions & 0 deletions include/types.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#ifndef TYPES_H
#define TYPES_H
/*
** TYPES.H - Basic unsigned type definitions for HTTPD and CGI modules
*/

typedef unsigned char UCHAR;
typedef unsigned short USHRT;
typedef unsigned int UINT;
typedef unsigned long ULONG;
typedef unsigned long long U64;

#endif
82 changes: 0 additions & 82 deletions src/ftpcdsc.c

This file was deleted.

Loading
Loading