uFTP/controlChannel/controlChannel.h
2025-05-23 22:03:41 +01:00

17 lines
298 B
C

#ifndef CTRL_CHANNEL_H
#define CTRL_CHANNEL_H
#include "ftpData.h"
typedef int (*CommandHandler)(struct FtpDataType*, int);
typedef struct {
const char* command;
CommandHandler handler;
} CommandMapEntry;
void evaluateControlChannel(ftpDataType *ftpData);
#endif /* DATA_CHANNEL_H */