Lines Matching defs:opt
60 struct opthdr *opt;
63 t_optreq.opt.maxlen = MAXOPTSIZE;
64 t_optreq.opt.buf = malloc(MAXOPTSIZE);
65 if (t_optreq.opt.buf == NULL) {
71 opt = (struct opthdr *)(t_optreq.opt.buf);
72 opt->name = TCP_NODELAY;
73 opt->len = 4;
74 opt->level = IPPROTO_TCP;
75 (void) memcpy((caddr_t)(t_optreq.opt.buf +
77 t_optreq.opt.len = (int)(sizeof (struct opthdr) +
80 t_optret.opt.maxlen = MAXOPTSIZE;
81 t_optret.opt.len = 0;
82 t_optret.opt.buf = malloc(MAXOPTSIZE);
83 if (t_optret.opt.buf == NULL) {
85 free(t_optreq.opt.buf);