tftp.h (82725ba9bf1fd59746a4006a06f24d4d61d142f2) | tftp.h (92570f67c7911126ce742a3dfe1b97046091ed0e) |
---|---|
1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 18 unchanged lines hidden (view full) --- 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * @(#)extern.h 8.1 (Berkeley) 6/6/93 32 * $FreeBSD$ 33 */ 34 | 1/*- 2 * SPDX-License-Identifier: BSD-3-Clause 3 * 4 * Copyright (c) 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions --- 18 unchanged lines hidden (view full) --- 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * @(#)extern.h 8.1 (Berkeley) 6/6/93 32 * $FreeBSD$ 33 */ 34 |
35void recvfile(int peer, char *port, int fd, char *name, char *mode); 36void xmitfile(int peer, char *port, int fd, char *name, char *mode); | 35int recvfile(int peer, char *port, int fd, char *name, char *mode); 36int xmitfile(int peer, char *port, int fd, char *name, char *mode); |
37 38extern int verbose; 39extern int maxtimeout; | 37 38extern int verbose; 39extern int maxtimeout; |
40extern volatile int txrx_error; | |