Home | History | Annotate | Download | only in irs

Lines Matching defs:pvt

65 struct pvt {
101 struct pvt *pvt;
109 if (!(pvt = memget(sizeof *pvt))) {
114 memset(pvt, 0, sizeof *pvt);
115 pvt->girpdata = this->private;
117 ho->private = pvt;
139 struct pvt *pvt = (struct pvt *)this->private;
143 free_host(&pvt->host);
145 memput(pvt, sizeof *pvt);
172 struct pvt *pvt = (struct pvt *)this->private;
173 struct hostent *ho = &pvt->host;
185 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
189 if (irs_irp_send_command(pvt->girpdata, "gethostbyname2 %s %s",
193 if (irs_irp_get_full_response(pvt->girpdata, &code,
225 struct pvt *pvt = (struct pvt *)this->private;
226 struct hostent *ho = &pvt->host;
243 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
251 if (irs_irp_send_command(pvt->girpdata, "gethostbyaddr %s %s",
256 if (irs_irp_get_full_response(pvt->girpdata, &code,
288 struct pvt *pvt = (struct pvt *)this->private;
289 struct hostent *ho = &pvt->host;
295 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
299 if (irs_irp_send_command(pvt->girpdata, "gethostent") != 0) {
303 if (irs_irp_get_full_response(pvt->girpdata, &code,
332 struct pvt *pvt = (struct pvt *)this->private;
336 if (irs_irp_connection_setup(pvt->girpdata, &pvt->warned) != 0) {
340 if (irs_irp_send_command(pvt->girpdata, "sethostent") != 0) {
344 code = irs_irp_read_response(pvt->girpdata, text, sizeof text);
361 struct pvt *pvt = (struct pvt *)this->private;
363 free_host(&pvt->host);
365 irs_irp_disconnect(pvt->girpdata);