/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * Copyright (C) 2008 OMC Denmark ApS. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef F2T_BRUTUS_CHECK_DEF #define F2T_BRUTUS_CHECK_DEF #pragma prefix "omc.brutus" module BRUTUS { /* * This interface is used by the Brutus server to check client capabilities, * such as being alive or not. */ interface BrutusCheck { /* * This method is a call-back that the server will invoke every * so often to check that the client is alive. Failure to implement * this interface will make all logon attempts fail. Failure to * respond to ping() will make the session terminate. */ void ping(); }; }; // End of module BRUTUS #endif