summaryrefslogtreecommitdiff
path: root/sbin/dhclient/dhcpd.h
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2012-11-14 15:47:42 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2012-11-14 15:47:42 +0000
commit5ad8d02163b10c046671650b1dd9ebbd51920b2a (patch)
tree37433aa4554e038665a093284ba7d0a90e96abbc /sbin/dhclient/dhcpd.h
parent192d99a946f3b351c1ee71860cf315fe2e94b329 (diff)
Remove useless _new_ and _old_ from various function names to make
them shorter and eliminate implications about what the function does. No functional change.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r--sbin/dhclient/dhcpd.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h
index 1af1429e245..4a34af62311 100644
--- a/sbin/dhclient/dhcpd.h
+++ b/sbin/dhclient/dhcpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dhcpd.h,v 1.91 2012/11/08 21:32:55 krw Exp $ */
+/* $OpenBSD: dhcpd.h,v 1.92 2012/11/14 15:47:41 krw Exp $ */
/*
* Copyright (c) 2004 Henning Brauer <henning@openbsd.org>
@@ -295,7 +295,7 @@ void go_daemon(void);
void routehandler(void);
-void priv_new_resolv_conf(char *);
+void priv_resolv_conf(char *);
/* packet.c */
void assemble_hw_header(unsigned char *, int *, struct hardware *);
@@ -318,12 +318,12 @@ int parse_option_decl(FILE *, struct option_data *);
void parse_reject_statement(FILE *);
/* kroute.c */
-void delete_old_addresses(char *, int);
-void delete_old_address(char *, int, struct in_addr);
-void priv_delete_old_address(char *, int, struct in_addr);
+void delete_addresses(char *, int);
+void delete_address(char *, int, struct in_addr);
+void priv_delete_address(char *, int, struct in_addr);
-void add_new_address(char *, int, struct in_addr, struct in_addr);
-void priv_add_new_address(char *, int, struct in_addr, struct in_addr);
+void add_address(char *, int, struct in_addr, struct in_addr);
+void priv_add_address(char *, int, struct in_addr, struct in_addr);
void flush_routes_and_arp_cache(int);
void priv_flush_routes_and_arp_cache(int);