-- File: PupGatewayArpaConfig.config - last edit:
-- AOF                  3-Mar-88 14:19:24
-- JAV                 17-Dec-87 10:54:01
-- Copyright (C) 1986, 1987, 1988 by Xerox Corporation. All rights reserved.

PACK
  --SubArpa.CONFIGURATION--
    Arpa10MBitImpl, ArpaRIPImpl,
  --ArpaAddress.CONFIGURATION--
    ArpaAddressTranslationImpl, ArpaAddressCacheImpl, ArpaHostTableImpl,
    NameResImpl, ArpaTokenImpl,
  --ArpaTelnetConfig.CONFIGURATION--
    TelnetListenerImpl, ArpaTelnetStreamImpl, ArpaTelnetConstantsImpl,
    ArpaTelnetTerminalTable,
  --Random Impls--
    ArpaInitImpl, ArpaVersionImpl, ArpaSptpImpl;

  PupGatewayArpaConfig: CONFIGURATION LINKS: CODE
  IMPORTS
    Buffer, ByteBlt, CommHeap,
    CommunicationInternal, CommUtil, Driver, Format, Heap, Process,
    ProcessorFace, Protocol1, Runtime, Space, SpecialSystem,
    Stream,  String, System
  EXPORTS ALL
  CONTROL
    ArpaAddress, ArpaInitImpl, SubArpa, ArpaTelnetConfig, ArpaSptpImpl,
    ArpaVersionImpl =
  BEGIN

  SubArpa: CONFIGURATION
    IMPORTS
      ArpaInit, Buffer, ByteBlt, CommHeap, CommunicationInternal, CommUtil,
      Driver, Process, ProcessorFace, Protocol1, Runtime, Space,
      SpecialSystem, System
    EXPORTS ALL
    CONTROL TCPIP, ArpaRIPImpl = {TCPIP; ArpaRIPImpl};

ArpaAddress: CONFIGURATION LINKS: CODE
  IMPORTS
    ArpaAddressCache, ArpaPort, ArpaPortInternal, ArpaRouter,
    ArpaAddressTranslation, ArpaToken, Buffer, Format, Heap, Inline, Process,
    Stream, String, System
  EXPORTS ALL
  CONTROL ArpaAddressTranslationImpl, ArpaAddressCacheImpl, NameResImpl =
    BEGIN
    ArpaAddressTranslationImpl;
    ArpaAddressCacheImpl;
    ArpaHostTableImpl;
    NameResImpl;
    ArpaTokenImpl;
    END;

ArpaTelnetConfig: CONFIGURATION LINKS: CODE
  IMPORTS  Heap, Process, Runtime, String, TcpStream
  EXPORTS ArpaTelnetConstants, ArpaTelnetStream, TelnetListener
  CONTROL ArpaTelnetStreamImpl, TelnetListenerImpl, ArpaTelnetConstantsImpl =
    BEGIN
    TelnetListenerImpl;
    ArpaTelnetStreamImpl;
    ArpaTelnetTerminalTable;
    ArpaTelnetConstantsImpl;
    END;

  SubArpa;
  ArpaAddress;
  ArpaSptpImpl;
  ArpaInitImpl;
  ArpaVersionImpl;
  ArpaTelnetConfig;

  END...