Lines Matching refs:reqbufp

56 	REQUEST *		reqbufp  in putrequest()  argument
59 putrequest (file, reqbufp) in putrequest()
61 REQUEST *reqbufp;
76 reqbufp->copies <= 0
77 || !(reqbufp->destination)
78 || !reqbufp->file_list || !*(reqbufp->file_list)
79 || (reqbufp->actions & (ACT_MAIL|ACT_WRITE))
80 && (reqbufp->alert && *(reqbufp->alert))
81 || reqbufp->priority < -1 || 39 < reqbufp->priority
130 (void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->copies);
134 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->destination);
138 for (pp = reqbufp->file_list; *pp; pp++)
143 if (reqbufp->form)
144 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->form);
148 if ((reqbufp->actions & ACT_SPECIAL) == ACT_IMMEDIATE)
150 else if ((reqbufp->actions & ACT_SPECIAL) == ACT_RESUME)
152 else if ((reqbufp->actions & ACT_SPECIAL) == ACT_HOLD)
157 if (reqbufp->actions & ACT_MAIL)
159 else if (reqbufp->actions & ACT_WRITE)
161 else if (reqbufp->actions & ACT_NOTIFY)
163 else if (reqbufp->alert && *(reqbufp->alert))
164 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->alert);
168 if (reqbufp->options)
169 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->options);
173 if (reqbufp->priority != -1)
174 (void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->priority);
178 if (reqbufp->pages)
179 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->pages);
183 if (reqbufp->charset)
184 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->charset);
188 if (reqbufp->title)
189 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->title);
193 if (reqbufp->modes)
194 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->modes);
198 if (reqbufp->input_type)
199 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->input_type);
203 if (reqbufp->user)
204 (void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->user);
208 if (reqbufp->actions & ACT_RAW)
213 if (reqbufp->actions & ACT_FAST)
218 (void)fdprintf(fd, "%s%#6.4x\n", HEAD, reqbufp->outcome);