- 论坛徽章:
- 0
|
本帖最后由 rwxgold 于 2011-08-18 16:18 编辑
- /*
- * tftp - Trivial File Transfer Program. Client side.
- *
- * See RFC 783 for details. Also see the "Requirements for Internet Hosts"
- * RFC for additional explanations and clarifications.
- */
- #include "defs.h"
- #include <signal.h>
- #include <sys/types.h>
- #include <sys/socket.h>
- #include <netdb.h>
- #include <string.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- int main(int argc, char *argv[])
- {
- register int i;
- register char *s;
- register FILE *fp;
- pname = argv[0];
- while (--argc > 0 && (*++argv)[0] == '-')
- for (s = argv[0]+1; *s != '\0'; s++)
- switch (*s) {
- case 'h': /* specify host name */
- if (--argc <= 0)
- err_quit("-h requires another argument");
- strcpy(hostname, *++argv);
- break;
- case 't':
- traceflag = 1;
- break;
- case 'v':
- verboseflag = 1;
- break;
- default:
- err_quit("unknown command line option: %c", *s);
- }
- /*
- * For each filename argument, execute the tftp commands in
- * that file. If no filename arguments were specified on the
- * command line, we process the standard input by default.
- */
- i = 0;
- fp = stdin;
- do {
- if (argc > 0 && (fp = fopen(argv[i], "r")) == NULL) {
- err_sys("%s: can't open %s for reading", argv[i]);
- }
- mainloop(fp); /* process a given file */
- } while (++i < argc);
- exit(0);
- }
- mainloop(fp)
- FILE *fp;
- {
- void sig_intr();
- if (signal(SIGINT, SIG_IGN) != SIG_IGN)
- signal(SIGINT, sig_intr);
- /*
- * Main loop. Read a command and execute it.
- * This loop is terminated by a "quit" command, or an
- * end-of-file on the command stream.
- */
- if (setjmp(jmp_mainloop) < 0) {
- err_ret("Timeout");
- }
- if (interactive)
- printf("%s", prompt);
- while (getline (fp)) {
- if (gettoken(command) != NULL)
- docmd(command);
- if (interactive)
- printf("%s", prompt);
- }
- }
- /*
- * INTR signal handler. Just return to the main loop above.
- * In case we were waiting for a read to complete, turn off any possible
- * alarm clock interrupts.
- *
- * Note that with TFTP, if the client aborts a file transfer (such as with
- * the interrupt signal), the server is not notified. The protocol counts
- * on the server eventually timing out and exiting.
- */
- void
- sig_intr()
- {
- signal(SIGALRM, SIG_IGN); /* first ignore the signal */
- alarm(0); /* then assure alarm is off */
- longjmp(jmp_mainloop, 1);
- /* NOTREACHED */
- }
复制代码 测试一个源代码,但是编译老是出错,请高手指点一下,谢谢!
调试后出现以下错误:
--------------------------------------
test@ubuntu:~/Desktop/mytftp$ make -f makefile
cc -c -o client.o client.c
client.c: In function ‘mainloop’:
client.c:96: warning: passing argument 1 of ‘getline’ from incompatible pointer type
/usr/include/stdio.h:651: note: expected ‘char ** __restrict__’ but argument is of type ‘struct _IO_FILE *’
client.c:96: error: too few arguments to function ‘getline’
make: *** [client.o] Error 1
---------------------------------------
系统是ubuntu-10.04.3-desktop-i386
谢谢
------------------------------------------------------
系统是Ubuntu |
|