123456789101112131415161718192021222324252627282930313233 |
- #ifndef HEADER_CURL_TFTP_H
- #define HEADER_CURL_TFTP_H
- #ifndef CURL_DISABLE_TFTP
- extern const struct Curl_handler Curl_handler_tftp;
- #define TFTP_BLKSIZE_MIN 8
- #define TFTP_BLKSIZE_MAX 65464
- #endif
- #endif
|