Name

Unix_Mode — specify whether Interchange server should open an UNIX socket

SYNOPSIS

Yes | No

DESCRIPTION

Specify whether the Interchange server should listen on an UNIX-domain socket.

This configuration directive can be overridden using interchange -u switch on the command line.

DIRECTIVE TYPE AND DEFAULT VALUE

Global directive

EXAMPLES

Example: Disabling Inet_Mode

Unix_Mode No

NOTES

In most cases, you will want Interchange running in UNIX mode, so it is enabled by default.

AVAILABILITY

Unix_Mode is available in Interchange versions:

4.6.0-5.9.0 (git-head)

SOURCE

Interchange 5.9.0:

Source: lib/Vend/Config.pm
Line 424 (context shows lines 414-419)

['Unix_Mode',         'yesno',            (
                      defined $Global::Inet_Mode
                      ||
                      defined $Global::Unix_Mode
                      )
                      ? ($Global::Unix_Mode || 0) : 'Yes'],

Source: lib/Vend/Config.pm
Line 5434 (context shows lines 5434-5446)

sub parse_yesno {
my($var, $value) = @_;
$_ = $value;
if (m/^y/i || m/^t/i || m/^1/ || m/^on/i) {
  return 1;
}
elsif (m/^n/i || m/^f/i || m/^0/ || m/^of/i) {
  return 0;
}
else {
  config_error("Use 'yes' or 'no' for the $var directive\n");
}
}

AUTHORS

Interchange Development Group

SEE ALSO

SocketPerms(7ic), SocketFile(7ic), Inet_Mode(7ic)

DocBook! Interchange!