Changeset 732 for branches/samba-3.5.x/source3/param
- Timestamp:
- Nov 12, 2012, 4:35:55 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.5.x/source3/param/loadparm.c
r690 r732 255 255 int winbind_cache_time; 256 256 int winbind_reconnect_delay; 257 int winbind_max_ idle_children;257 int winbind_max_clients; 258 258 char **szWinbindNssInfo; 259 259 int iLockSpinTime; … … 4556 4556 }, 4557 4557 { 4558 .label = "winbind max clients", 4559 .type = P_INTEGER, 4560 .p_class = P_GLOBAL, 4561 .ptr = &Globals.winbind_max_clients, 4562 .special = NULL, 4563 .enum_list = NULL, 4564 .flags = FLAG_ADVANCED, 4565 }, 4566 { 4558 4567 .label = "winbind enum users", 4559 4568 .type = P_BOOL, … … 5223 5232 Globals.winbind_cache_time = 300; /* 5 minutes */ 5224 5233 Globals.winbind_reconnect_delay = 30; /* 30 seconds */ 5234 Globals.winbind_max_clients = 200; 5225 5235 Globals.bWinbindEnumUsers = False; 5226 5236 Globals.bWinbindEnumGroups = False; … … 5790 5800 FN_GLOBAL_INTEGER(lp_winbind_cache_time, &Globals.winbind_cache_time) 5791 5801 FN_GLOBAL_INTEGER(lp_winbind_reconnect_delay, &Globals.winbind_reconnect_delay) 5802 FN_GLOBAL_INTEGER(lp_winbind_max_clients, &Globals.winbind_max_clients) 5792 5803 FN_GLOBAL_LIST(lp_winbind_nss_info, &Globals.szWinbindNssInfo) 5793 5804 FN_GLOBAL_INTEGER(lp_algorithmic_rid_base, &Globals.AlgorithmicRidBase)
Note:
See TracChangeset
for help on using the changeset viewer.