mapport.h raw

   1  // Copyright (c) 2011-present The Bitcoin Core developers
   2  // Distributed under the MIT software license, see the accompanying
   3  // file COPYING or http://www.opensource.org/licenses/mit-license.php.
   4  
   5  #ifndef BITCOIN_MAPPORT_H
   6  #define BITCOIN_MAPPORT_H
   7  
   8  static constexpr bool DEFAULT_NATPMP = true;
   9  
  10  void StartMapPort(bool enable);
  11  void InterruptMapPort();
  12  void StopMapPort();
  13  
  14  #endif // BITCOIN_MAPPORT_H
  15