Skip to content
Snippets Groups Projects
Commit 405e5b91 authored by Jason King's avatar Jason King
Browse files

* Lowered number of SNI adapters we look for at starup to one

* Increased the size of the buffer used to store libstate from
  128KB to 1MB
parent 9c4223d6
No related branches found
No related tags found
No related merge requests found
......@@ -63,8 +63,8 @@ enum {
EUNLOAD
};
#define FED_MAXADAPTERS 2
#define FED_LIBSTATE_LEN (1024 * 128)
#define FED_MAXADAPTERS 1
#define FED_LIBSTATE_LEN (1024 * 1024 * 1)
int fed_alloc_nodeinfo(fed_nodeinfo_t **nh);
int fed_build_nodeinfo(fed_nodeinfo_t *np, char *hostname);
......
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