Symbol: tftphdr
libexec/tftpd/tftpd.c
109
struct tftphdr *tp;
libexec/tftpd/tftpd.c
300
tp = (struct tftphdr *)buf;
libexec/tftpd/tftpd.c
346
tftp(struct tftphdr *tp, int size)
libexec/tftpd/tftpd.c
581
struct tftphdr *dp;
libexec/tftpd/tftpd.c
582
struct tftphdr *ap; /* ack packet */
libexec/tftpd/tftpd.c
588
ap = (struct tftphdr *)ackbuf;
libexec/tftpd/tftpd.c
660
struct tftphdr *dp;
libexec/tftpd/tftpd.c
661
struct tftphdr *ap; /* ack buffer */
libexec/tftpd/tftpd.c
667
ap = (struct tftphdr *)ackbuf;
libexec/tftpd/tftpd.c
771
struct tftphdr *tp;
libexec/tftpd/tftpd.c
775
tp = (struct tftphdr *)buf;
libexec/tftpd/tftpd.c
80
static void tftp(struct tftphdr *, int) __dead2;
libexec/tftpd/tftpd.c
820
struct tftphdr *tp, *ap;
libexec/tftpd/tftpd.c
824
tp = (struct tftphdr *)buf;
libexec/tftpd/tftpd.c
841
ap = (struct tftphdr *)ackbuf;
stand/lib/tftp.c
115
struct tftphdr *t;
stand/lib/tftp.c
133
t = (struct tftphdr *)pkt;
stand/lib/tftp.c
142
t = (struct tftphdr *)pkt;
stand/lib/tftp.c
197
struct tftphdr t;
stand/lib/tftp.c
203
struct tftphdr *t;
stand/lib/tftp.c
240
struct tftphdr t;
stand/lib/tftp.c
244
struct tftphdr *t;
stand/lib/tftp.c
96
struct tftphdr t;
usr.bin/tftp/tftp.c
102
ap = (struct tftphdr *)ackbuf;
usr.bin/tftp/tftp.c
203
struct tftphdr *ap;
usr.bin/tftp/tftp.c
204
struct tftphdr *dp;
usr.bin/tftp/tftp.c
218
ap = (struct tftphdr *)ackbuf;
usr.bin/tftp/tftp.c
320
makerequest(int request, const char *name, struct tftphdr *tp, const char *mode)
usr.bin/tftp/tftp.c
360
struct tftphdr *tp;
usr.bin/tftp/tftp.c
363
tp = (struct tftphdr *)ackbuf;
usr.bin/tftp/tftp.c
382
tpacket(const char *s, struct tftphdr *tp, int n)
usr.bin/tftp/tftp.c
74
static int makerequest(int, const char *, struct tftphdr *, const char *);
usr.bin/tftp/tftp.c
79
static void tpacket(const char *, struct tftphdr *, int);
usr.bin/tftp/tftp.c
88
struct tftphdr *ap; /* data and ack packets */
usr.bin/tftp/tftp.c
89
struct tftphdr *dp;
usr.bin/tftp/tftpsubs.c
112
*dpp = (struct tftphdr *)b->buf; /* set caller's ptr */
usr.bin/tftp/tftpsubs.c
127
struct tftphdr *dp;
usr.bin/tftp/tftpsubs.c
134
dp = (struct tftphdr *)b->buf;
usr.bin/tftp/tftpsubs.c
168
writeit(FILE *file, struct tftphdr **dpp, int ct, int convert)
usr.bin/tftp/tftpsubs.c
175
*dpp = (struct tftphdr *)bfs[current].buf;
usr.bin/tftp/tftpsubs.c
194
struct tftphdr *dp;
usr.bin/tftp/tftpsubs.c
202
dp = (struct tftphdr *)b->buf;
usr.bin/tftp/tftpsubs.c
75
static struct tftphdr *rw_init(int);
usr.bin/tftp/tftpsubs.c
77
struct tftphdr *w_init(void) { return rw_init(0); } /* write-behind */
usr.bin/tftp/tftpsubs.c
78
struct tftphdr *r_init(void) { return rw_init(1); } /* read-ahead */
usr.bin/tftp/tftpsubs.c
80
static struct tftphdr *
usr.bin/tftp/tftpsubs.c
90
return (struct tftphdr *)bfs[0].buf;
usr.bin/tftp/tftpsubs.c
99
struct tftphdr **dpp,
usr.bin/tftp/tftpsubs.h
37
struct tftphdr *r_init(void);
usr.bin/tftp/tftpsubs.h
39
int readit(FILE *, struct tftphdr **, int);
usr.bin/tftp/tftpsubs.h
43
struct tftphdr *w_init(void);
usr.bin/tftp/tftpsubs.h
45
int writeit(FILE *, struct tftphdr **, int, int);