GETHOSTNAME

The GETHOSTNAME call returns the domain name of the local host.
Note: The host name returned is the host name the TCPIP stack learned at startup from the TCPIP.DATA file that was found.
The following requirements apply to this call:

Figure 1 shows an example of GETHOSTNAME call instructions.

Figure 1. GETHOSTNAME call instruction example
    WORKING-STORAGE SECTION.
        01  SOC-FUNCTION    PIC X(16)  VALUE IS 'GETHOSTNAME'.
        01  NAMELEN         PIC 9(8) BINARY.
        01  NAME            PIC X(24).
        01  ERRNO           PIC 9(8) BINARY.
        01  RETCODE         PIC S9(8) BINARY.
 
    PROCEDURE DIVISION.
         CALL 'EZASOKET' USING SOC-FUNCTION NAMELEN NAME
                         ERRNO RETCODE.

For equivalent PL/I and assembler language declarations, see Converting parameter descriptions.