mirror of
https://github.com/kingk85/uFTP.git
synced 2025-07-21 11:16:09 +03:00
17 lines
283 B
C
17 lines
283 B
C
#ifndef DATA_CHANNEL_H
|
|
#define DATA_CHANNEL_H
|
|
|
|
#include "ftpData.h"
|
|
|
|
typedef struct {
|
|
ftpDataType *ftpData;
|
|
int socketId;
|
|
} cleanUpWorkerArgs;
|
|
|
|
|
|
void workerCleanup(cleanUpWorkerArgs *args);
|
|
void *connectionWorkerHandle(cleanUpWorkerArgs *args);
|
|
|
|
#endif /* DATA_CHANNEL_H */
|
|
|