/*****************************************************************************\ * slurm_protocol_common.h - slurm communications definitions common to * all protocols ***************************************************************************** * Copyright (C) 2002 The Regents of the University of California. * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). * Written by Kevin Tew , et. al. * CODE-OCEC-09-009. All rights reserved. * * This file is part of Slurm, a resource management program. * For details, see . * Please also read the included file: DISCLAIMER. * * Slurm is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * In addition, as a special exception, the copyright holders give permission * to link the code of portions of this program with the OpenSSL library under * certain conditions as described in each individual source file, and * distribute linked combinations including the two. You must obey the GNU * General Public License in all respects for all of the code used other than * OpenSSL. If you modify file(s) with this exception, you may extend this * exception to your version of the file(s), but you are not obligated to do * so. If you do not wish to do so, delete this exception statement from your * version. If you delete this exception statement from all source files in * the program, then also delete it here. * * Slurm 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 General Public License for more * details. * * You should have received a copy of the GNU General Public License along * with Slurm; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. \*****************************************************************************/ #ifndef _SLURM_PROTOCOL_COMMON_H #define _SLURM_PROTOCOL_COMMON_H #include "config.h" #include #include #include "slurm/slurm_errno.h" /* for sendto and recvfrom commands */ #define SLURM_PROTOCOL_NO_SEND_RECV_FLAGS 0 /* for listen API */ #define SLURM_DEFAULT_LISTEN_BACKLOG 4096 /* used in interface methods */ #define SLURM_PROTOCOL_FUNCTION_NOT_IMPLEMENTED -2 /* slurm protocol header defines, based upon config.h, 16 bits */ /* A new SLURM_PROTOCOL_VERSION needs to be made each time the version * changes so the slurmdbd can talk all versions for update messages. */ /* NOTE: The API version can not be the same as the Slurm version. The * version in the code is referenced as a uint16_t which if 1403 was the * api it would go over the limit. So keep is a relatively * small number. * NOTE: These values must be moved to * src/plugins/accounting_storage/mysql/as_mysql_archive.c when we are * done here with them since we have to support old version of archive * files since they don't update once they are created. */ #define SLURM_20_02_PROTOCOL_VERSION ((35 << 8) | 0) #define SLURM_19_05_PROTOCOL_VERSION ((34 << 8) | 0) #define SLURM_18_08_PROTOCOL_VERSION ((33 << 8) | 0) #define SLURM_PROTOCOL_VERSION SLURM_20_02_PROTOCOL_VERSION #define SLURM_ONE_BACK_PROTOCOL_VERSION SLURM_19_05_PROTOCOL_VERSION #define SLURM_MIN_PROTOCOL_VERSION SLURM_18_08_PROTOCOL_VERSION #if 0 /* Old Slurm versions kept for reference only. Slurm only actively keeps track * of 2 previous versions. */ #define SLURM_17_11_PROTOCOL_VERSION ((32 << 8) | 0) #define SLURM_17_02_PROTOCOL_VERSION ((31 << 8) | 0) #define SLURM_16_05_PROTOCOL_VERSION ((30 << 8) | 0) #define SLURM_15_08_PROTOCOL_VERSION ((29 << 8) | 0) #define SLURM_14_11_PROTOCOL_VERSION ((28 << 8) | 0) #define SLURM_14_03_PROTOCOL_VERSION ((27 << 8) | 0) #define SLURM_2_6_PROTOCOL_VERSION ((26 << 8) | 0) #define SLURM_2_5_PROTOCOL_VERSION ((25 << 8) | 0) #define SLURM_2_4_PROTOCOL_VERSION ((24 << 8) | 0) #define SLURM_2_3_PROTOCOL_VERSION ((23 << 8) | 0) #define SLURM_2_2_PROTOCOL_VERSION ((22 << 8) | 0) #define SLURM_2_1_PROTOCOL_VERSION ((21 << 8) | 0) #define SLURM_2_0_PROTOCOL_VERSION ((20 << 8) | 0) #define SLURM_1_3_PROTOCOL_VERSION ((13 << 8) | 0) #endif /* Below are flags for the header of a message. */ /* Used to set flags to empty */ #define SLURM_PROTOCOL_NO_FLAGS 0 #define SLURM_GLOBAL_AUTH_KEY 0x0001 #define SLURMDBD_CONNECTION 0x0002 #define SLURM_MSG_KEEP_BUFFER 0x0004 #define SLURM_DROP_PRIV 0x0008 #define USE_BCAST_NETWORK 0x0010 #endif