?? tftp.h
字號:
/////////////////////////////////////////////////////////////////////////////////// Copyright(c) 2001-2002 Emdoor Electronic & Technology Co,.ltd. All rights reserved.// // Module name:// main.c// // Description:// // // // Created:// 2002.10/////////////////////////////////////////////////////////////////////////////////#ifndef _TFTP_H_65478236478614934324#define _TFTP_H_65478236478614934324#include "main.h"#define CMD_TBL_TFTP \ {"tftp", DoTftp, \ " tftp [file] {loader/kernel/root} Run Tftp. Get file and store in Area.\n" \ " tftp [file] [addr] Run Tftp. Get file and store in addr.\n", \ " tftp [file] {loader/kernel/root} Run Tftp. Get file and store in Area.\n", \ " tftp [file] {loader/kernel/root} Run Tftp. Get file and store in Area.\n" \ " tftp [file] [addr] Run Tftp. Get file and store in addr.\n", \ }// Prototypes.bool DoTftp(CMD_TBL *cptr, int argc, char **argv); // Begin TFTP get.bool TftpRx(char *rxBuf, int len);extern ushort tftpPort;extern ushort tftpHostPort;extern ushort tftpClientPort;#endif // end _TFTP_H_65478236478614934324.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -