pblock
|
One of the following Session/Request parameter block names:
-
client: Contains the IP address of the
client machine and the DNS name of the remote machine. For more information,
see the description of the Session->client function in
the “Data Structure Reference” chapter of the Oracle iPlanet Web Proxy Server 4.0.14 NSAPI Developer’s Guide.
-
vars: Contains the server’s working
variables, which includes anything not specifically found in the reqpb, headers, or srvhdrs pblocks. The contents of
this pblock differ depending upon the specific request and the type of SAF.
-
reqpb: Contains elements of the HTTP request,
which includes the HTTP method (GET, POST, and so on), the URI, the protocol
(generally HTTP/1.0), and the query string. This pblock does not change during
the request-response process.
-
headers: Contains all the request headers
(such as User-Agent, if-Modified-Since,
and so on) received from the client in the HTTP request. This pblock does
not change during the request-response process.
-
srvhdrs: Contains the response headers
(such as Server, Date, Content-type, Content-length, and so on) that are to be sent
to the client in the HTTP response.
Note: For
more information about parameter blocks, see Oracle iPlanet Web Proxy Server 4.0.14 NSAPI Developer’s Guide.
|