Home
last modified time | relevance | path

Searched refs:tftpfile (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/sys/lib/libsa/
H A Dtftp.c99 static ssize_t tftp_size_of_file(struct tftp_handle *tftpfile);
254 struct tftp_handle *tftpfile; in tftp_open() local
258 tftpfile = (struct tftp_handle *)alloc(sizeof(*tftpfile)); in tftp_open()
259 if (!tftpfile) in tftp_open()
262 tftpfile->iodesc = io = socktodesc(*(int *)(f->f_devdata)); in tftp_open()
264 tftpfile->off = 0; in tftp_open()
265 tftpfile->path = path; /* XXXXXXX we hope it's static */ in tftp_open()
267 res = tftp_makereq(tftpfile); in tftp_open()
270 dealloc(tftpfile, sizeof(*tftpfile)); in tftp_open()
273 f->f_fsdata = (void *)tftpfile; in tftp_open()
[all …]