Loading earthworm/nmxptool.d +4 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,10 @@ NmxpPortPDS 28000 # Port number of NaqsServer (Default 28 NmxpPortDAP 28002 # Port number of DataServer(Default 28002) # It is equivalent to the option -D. #UserDAP myuser # DataServer user name. Comment if 'none'. # It is equivalent to the option -u. #PassDAP mypass # DataServer password. Comment if 'none'. # It is equivalent to the option -p. MaxTolerableLatency 120 # Max tolerable latency for each channel. (Default 600 sec.) # In general, DO NOT use with parameter TimeoutRecv. Loading src/nmxptool_ew.c +12 −0 Original line number Diff line number Diff line Loading @@ -384,6 +384,18 @@ int nmxptool_ew_proc_configfile (char * configfile, NMXPTOOL_PARAMS *params) { params->portnumberdap = k_int(); } else if (k_its ("UserDAP")) { if ( (str = k_str ()) ) { params->datas_username = strdup(str); } } else if (k_its ("PassDAP")) { if ( (str = k_str ()) ) { params->datas_password = strdup(str); } } else if (k_its ("ForceTraceBuf1")) { forcetracebuf = k_int(); } Loading Loading
earthworm/nmxptool.d +4 −0 Original line number Diff line number Diff line Loading @@ -28,6 +28,10 @@ NmxpPortPDS 28000 # Port number of NaqsServer (Default 28 NmxpPortDAP 28002 # Port number of DataServer(Default 28002) # It is equivalent to the option -D. #UserDAP myuser # DataServer user name. Comment if 'none'. # It is equivalent to the option -u. #PassDAP mypass # DataServer password. Comment if 'none'. # It is equivalent to the option -p. MaxTolerableLatency 120 # Max tolerable latency for each channel. (Default 600 sec.) # In general, DO NOT use with parameter TimeoutRecv. Loading
src/nmxptool_ew.c +12 −0 Original line number Diff line number Diff line Loading @@ -384,6 +384,18 @@ int nmxptool_ew_proc_configfile (char * configfile, NMXPTOOL_PARAMS *params) { params->portnumberdap = k_int(); } else if (k_its ("UserDAP")) { if ( (str = k_str ()) ) { params->datas_username = strdup(str); } } else if (k_its ("PassDAP")) { if ( (str = k_str ()) ) { params->datas_password = strdup(str); } } else if (k_its ("ForceTraceBuf1")) { forcetracebuf = k_int(); } Loading