Lines Matching defs:value
89 #define EINTR 4 /* errno.h value */
91 #define EAGAIN 11 /* errno.h value */
93 #define ENOMEM 12 /* errno.h value */
95 #define EINVAL 22 /* errno.h value */
165 static unsigned char byteval(char *value)
167 unsigned long num = strtoul(value, NULL, 10);
171 static unsigned short shortval(char *value)
173 unsigned long num = strtoul(value, NULL, 10);
196 char value[260];
197 if(2 == sscanf(buffer, "%31s %259s", key, value)) {
199 config.version = byteval(value);
203 config.nmethods_min = byteval(value);
207 config.nmethods_max = byteval(value);
211 strcpy(config.addr, value);
215 config.port = shortval(value);
219 strcpy(config.user, value);
223 strcpy(config.password, value);
232 config.responsemethod = byteval(value);
236 config.connectrep = byteval(value);
903 port we actually got and update the listener port value with it. */