Altair EEvision 2025.1 APIs
    Preparing search index...

    Type Alias UserInfo

    Information about the user and his/her IP address. This information is only available if the user is authenticated using basic authentication. The information is then extracted from the CGI environment variables REMOTE_USER, REMOTE_HOST, and REMOTE_ADDR.

    type UserInfo = {
        hostaddr?: string;
        hostname?: string;
        username?: string;
    }
    Index

    Properties

    hostaddr?: string

    IP address of the EEvision user. Corresponds to REMOTE_ADDR on the server.

    hostname?: string

    Hostname of the EEvision user (if authenticated). Corresponds to REMOTE_HOST on the server.

    username?: string

    Username of the EEvision user (if authenticated). Corresponds to REMOTE_USER on the server.