2015-12-27 16:23:43 -06:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Default values and other shared data between processes.
|
|
|
|
#ifndef INCLUDED_COMMON_HPP
|
|
|
|
#define INCLUDED_COMMON_HPP
|
|
|
|
|
2015-12-28 15:34:21 -06:00
|
|
|
constexpr int DEFAULT_CLIENT_PORT_NUMBER = 9980;
|
|
|
|
constexpr int MASTER_PORT_NUMBER = 9981;
|
|
|
|
constexpr int INTERVAL_PROBES = 10;
|
|
|
|
constexpr int MAINTENANCE_INTERVAL = 1;
|
|
|
|
constexpr int POLL_TIMEOUT = 1000000;
|
2015-12-30 19:01:07 -06:00
|
|
|
// Pipe buffer is in function of URL size, a big URL will be handled in several
|
|
|
|
// work loads.
|
|
|
|
constexpr int PIPE_BUFFER = 1024;
|
2015-12-27 16:23:43 -06:00
|
|
|
|
2015-12-27 16:46:42 -06:00
|
|
|
// The client port number, which is changed via loolwsd args.
|
|
|
|
static int ClientPortNumber = DEFAULT_CLIENT_PORT_NUMBER;
|
|
|
|
|
2015-12-29 18:55:26 -06:00
|
|
|
// Flag to stop pump loops.
|
|
|
|
static volatile bool TerminationFlag = false;
|
|
|
|
|
2015-12-27 16:23:43 -06:00
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|