MASTER (JANUS DEFINE parameter)

From m204wiki
Revision as of 15:44, 23 April 2015 by JAL (talk | contribs) (show "JANUS DEFINE parameter" in title)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Set as default "outgoing" port

MASTER is a parameter on the JANUS DEFINE command, which defines and sets characteristics of a Janus port.

This parameter specifies that this is the default port for outgoing connections to remote servers. A single MASTER port will serve as the access route to multiple external server address spaces.

  • The servers may be other Model 204 servers or may be Sybase/Microsoft servers that are to receive Janus Open Client function calls.

    Users accessing the Model 204 address space over an OPENSERV port will use the same port they came in on for any outgoing Janus Open Client connections. Users accessing the Model 204 address space with other threads (for example, 3270 or web based applications) must have a MASTER port defined in order for the Janus Open Client functions to establish connections to other address spaces.

    Note that the port number is irrelevant for outgoing purposes, though it must still be specified.

  • The servers may host server sockets for Janus Sockets client (CLSOCK) calls, or (as of Sirius Mods Version 7.9) Janus/TN3270 Debugger client (DEBUGGERCLIENT) calls. A single MASTER port will serve as the access route to multiple external servers.

    A port defined as MASTER can be accessed on a Janus Sockets or Debugger connection request without specifying its port name on the $function, object method, or command that establishes the connection to a remote server socket. The socket port name parameter on $Sock_Conn, on the Socket and UdpSocket object New constructors, on the HTTP Helper Get and Post methods, and on the SIRIUS DEBUG ON command defaults to the MASTER port, if any.

You can define and start multiple ports that have the MASTER parameter specified, but the one used in any particular instance will not be predictable.

MASTER is valid only for CLSOCK, CLSOCKU, DEBUGGERCLIENT, OPENSERV, or SDS ports.

Examples

This command defines an SSL-protected, client socket MASTER port:

JANUS DEFINE CLMASTER * CLSOCK 5 TIMEOUT 240 REMOTE * * MASTER SSL 0 SSLOPT - SSLMAXCERTL 4096 SSLBSIZE 32767 LINEND 0D0A

See also