Skip to content
Snippets Groups Projects
Commit 84fa93e9 authored by Moe Jette's avatar Moe Jette
Browse files

No logic changed, just clean-up

parent 4f05a7f2
No related branches found
No related tags found
No related merge requests found
...@@ -7,16 +7,22 @@ ...@@ -7,16 +7,22 @@
/* for sendto and recvfrom commands */ /* for sendto and recvfrom commands */
#define SLURM_PROTOCOL_NO_SEND_RECV_FLAGS 0 #define SLURM_PROTOCOL_NO_SEND_RECV_FLAGS 0
/* for accpet commands */ /* for accpet commands */
#define SLURM_PROTOCOL_DEFAULT_LISTEN_BACKLOG 128 #define SLURM_PROTOCOL_DEFAULT_LISTEN_BACKLOG 128
/* used in interface methods */ /* used in interface methods */
#define SLURM_PROTOCOL_FUNCTION_NOT_IMPLEMENTED -2 #define SLURM_PROTOCOL_FUNCTION_NOT_IMPLEMENTED -2
/* max slurm message send and receive buffer size /* max slurm message send and receive buffer size
this may need to be increased to 350k-512k */ * this may need to be increased to 350k-512k */
#define SLURM_PROTOCOL_MAX_MESSAGE_BUFFER_SIZE (512*1024) #define SLURM_PROTOCOL_MAX_MESSAGE_BUFFER_SIZE (512*1024)
/* slurm protocol header defines */ /* slurm protocol header defines */
#define SLURM_PROTOCOL_VERSION 1 #define SLURM_PROTOCOL_VERSION 1
#define SLURM_PROTOCOL_NO_FLAGS 0 /* used in the header to set flags to empty */
/* used to set flags to empty */
#define SLURM_PROTOCOL_NO_FLAGS 0
#if MONGO_IMPLEMENTATION #if MONGO_IMPLEMENTATION
# include <src/common/slurm_protocol_mongo_common.h> # include <src/common/slurm_protocol_mongo_common.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment