From 2f61f62ac777cc03e30513f6fd3699f9e2f04e27 Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Sat, 17 Oct 2009 09:16:18 -0400 Subject: Introducing the parsing of both 'defaultvers' and 'defaultproto' config variables which will be used to set the the default version and network protocol. A global variable will be set for each option with the corresponding value. The value will be used as the initial value in the server negation. Signed-off-by: Steve Dickson --- support/include/conffile.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'support/include') diff --git a/support/include/conffile.h b/support/include/conffile.h index 672020a..fe23ec2 100644 --- a/support/include/conffile.h +++ b/support/include/conffile.h @@ -75,4 +75,11 @@ static inline void upper2lower(char *str) while ((c = tolower(*str))) *str++ = c; } + +/* + * Default Mount options + */ +extern unsigned long config_default_vers; +extern unsigned long config_default_proto; + #endif /* _CONFFILE_H_ */ -- cgit