File:  [ELWIX - Embedded LightWeight unIX -] / tftpd / inc / defs.h
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Fri Feb 14 15:38:37 2014 UTC (10 years, 4 months ago) by misho
Branches: misho
CVS tags: tftp0_3, tftp0_2, start, TFTP0_2
ELWIX tftpd server

#ifndef __DEFS_H
#define __DEFS_H


#ifndef STRSIZ
#define STRSIZ		256
#endif

#define DEFAULT_CFGNAME	"/etc/tftpd.conf"
#define DEFAULT_TIMEOUT	5
#define TFTP_PKT_MAX	516
#define TFTP_LOAD_MAX	512


struct tagCli {
	int		opc;
	u_short		seq;
	int		siz;
	sockaddr_t	addr;
	int		fd;
	char		file[PATH_MAX];
	char		mode[10];
	short		close;
};


extern struct timespec timeout;
extern struct tagCli cli;
extern cfg_root_t cfg;


#endif

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>