Gets subsystem reply information from the System Resource Controller (SRC) request received.
System Resource Controller Library (libsrc.a)
#include <spc.h>
struct srchdr *srcrrqs (Packet) char *Packet;
The srcrrqs subroutine saves the srchdr information contained in the packet the subsystem received from the System Resource Controller (SRC). The srchdr structure is defined in the spc.h file. This routine must be called by the subsystem to complete the reception process of any packet received from the SRC. The subsystem requires this information to reply to any request that the subsystem receives from the SRC.
Note: The saved srchdr information is overwritten each time this subroutine is called.
The srcrrqs subroutine returns a pointer to the static srchdr structure, which contains the return address for the subsystem response.
The following will obtain the subsystem reply information:
int rc; struct sockaddr addr; int addrsz; struct srcreq packet; /* wait to receive packet from SRC daemon */ rc=recvfrom(0, &packet, sizeof(packet), 0, &addr, &addrsz); /* grab the reply information from the SRC packet */ if (rc>0) srchdr=srcrrqs (&packet);
This subroutine is part of Base Operating System (BOS) Runtime.
/dev/SRC | Specifies the AF_UNIX socket file. |
/dev/.SRC-unix | Specifies the location for temporary socket files. |
The srcsbuf subroutine, srcsrpy subroutine, srcsrqt subroutine, srcstat subroutine, srcstathdr subroutine, srcstattxt subroutine, srcstop subroutine, srcstrt subroutine.
List of SRC Subroutines in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
Programming Subsystem Communication with the SRC in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.
System Resource Controller (SRC) Overview for Programmers in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.