/*
- * $Id: comm.cc,v 1.225 1998/02/05 20:33:58 wessels Exp $
+ * $Id: comm.cc,v 1.226 1998/02/06 17:30:51 wessels Exp $
*
* DEBUG: section 5 Socket Functions
* AUTHOR: Harvest Derived
commSetCloseOnExec(new_socket);
if (port > (u_short) 0) {
commSetNoLinger(new_socket);
- if (do_reuse)
+ if (opt_reuseaddr)
commSetReuseAddr(new_socket);
}
if (addr.s_addr != no_addr.s_addr) {
/*
- * $Id: globals.h,v 1.33 1998/02/04 23:34:28 wessels Exp $
+ * $Id: globals.h,v 1.34 1998/02/06 17:30:52 wessels Exp $
*/
extern FILE *debug_log; /* NULL */
extern int configured_once; /* 0 */
extern int debugLevels[MAX_DEBUG_SECTIONS];
extern int do_mallinfo; /* 0 */
-extern int do_reuse; /* 1 */
+extern int opt_reuseaddr; /* 1 */
extern int hash_links_allocated;
extern int icmp_sock; /* -1 */
extern int neighbors_do_private_keys; /* 1 */
/*
- * $Id: main.cc,v 1.213 1998/02/04 23:50:26 wessels Exp $
+ * $Id: main.cc,v 1.214 1998/02/06 17:30:53 wessels Exp $
*
* DEBUG: section 1 Startup and Main Loop
* AUTHOR: Harvest Derived
opt_no_daemon = 1;
break;
case 'R':
- do_reuse = 0;
+ opt_reuseaddr = 0;
break;
case 'V':
vhost_mode = 1;