NIO CommKit Host Interface Installation and System Administration Manual
Manuals
Brands
HP Manuals
Software
HP-UX 11i v1 Networking Software
251
252
253
254
255
256
257
258
259
260
F-7
Example Programs
Introduction
strcpy (nlps,NLPSx); /* send NLPS string */
strcat (nlps,service);
n = strlen(nlps) + 1;
if (write(fd, nlps, n) != n) {
fprintf(stderr, "write of NLPS string failed\n");
return (-1);
}
return (fd);
}
1
...
...
255
256
257
258
259
...
260