History log of /netbsd/sbin/ifconfig/env.c (Results 1 – 14 of 14)
Revision Date Author Comments
# ff7ffaf8 21-Jun-2021 christos <christos@NetBSD.org>

fix proplib deprecation


# 252d8de5 07-Jun-2020 thorpej <thorpej@NetBSD.org>

Update for proplib(3) API changes.


# 7fd429a8 16-Aug-2019 msaitoh <msaitoh@NetBSD.org>

Whitespace fix.


# 9fb65878 07-Mar-2016 christos <christos@NetBSD.org>

PR/50909: David Binderman: Optimize memset


# 74c1b742 07-Mar-2016 christos <christos@NetBSD.org>

PR/50909: David Binderman: Optimize memset


# 6dcad678 07-Feb-2013 apb <apb@NetBSD.org>

Avoid dereferencing NULL. Coverity CID 275201.
Also fix a typo in previous: !== should be !=


# 0d449f69 07-Feb-2013 apb <apb@NetBSD.org>

Don't call prop_distionary_make_immutable on a NULL pointer.
Coverity CID 275179.


# f3492603 13-Dec-2010 pooka <pooka@NetBSD.org>

Convert from the .ifdef RUMP_ACTION stuff to RUMPPRG.


# d75414ad 02-Jul-2008 dyoung <dyoung@NetBSD.org>

Let us add/remove features from ifconfig, such as support for
various address families (inet, inet6, iso, atalk) and protocols
(802.11, 802.3ad, CARP), simply by trimming the list of sources in
the M

Let us add/remove features from ifconfig, such as support for
various address families (inet, inet6, iso, atalk) and protocols
(802.11, 802.3ad, CARP), simply by trimming the list of sources in
the Makefile. This helps one customize ifconfig for an embedded
device or for install media, and it eliminates a lot of grotty
#ifdef'age. Now, the ifconfig syntax and semantics are finalized
at run-time using the constructor routines in each address-family/protocol
module.

(In principle, ifconfig could load virtually all of its syntax from
shared objects.)

Extract a lot of common code into subroutines, in order to shrink
the ifconfig binary a bit. Make all of the address families share
code for address addition/replacement/removal, and delete "legacy"
code for manipulating addresses. That may have broken atalk and
iso, despite my best efforts.

Extract an include file, Makefile.inc, containing the make-fu that
both ifconfig and x_ifconfig share.

Sprinkle static. Change some int's to bool's. Constify.

Add RCS Ids to carp.c and env.c. Move media code to a new file,
media.c. Delete several unneeded header files.

Set, reset, and display the IEEE 802.11 attribute, 'dot11RTSThreshold'.

Bug fix: do not require both a interface address and a destination
address for point-to-point interfaces, but accept a interface
address by itself.

show more ...


# 8c56a7ef 12-May-2008 dyoung <dyoung@NetBSD.org>

Cosmetic: fix copyright whitespace.


# de7ae11c 09-May-2008 dyoung <dyoung@NetBSD.org>

Use the correct key. Spotted by NONAKA Kimihiro.


# 55927815 06-May-2008 dyoung <dyoung@NetBSD.org>

Use prop_dictionary_util(3).


# e51773dc 06-May-2008 dyoung <dyoung@NetBSD.org>

Add a license.


# 7b01455a 06-May-2008 dyoung <dyoung@NetBSD.org>

Overhaul ifconfig. Use fewer global variables. Take a leap toward
improved modularity and extensibility.

In the new architecture, a directed graph of argument-matching
objects (match objects) expr

Overhaul ifconfig. Use fewer global variables. Take a leap toward
improved modularity and extensibility.

In the new architecture, a directed graph of argument-matching
objects (match objects) expresses the set of feasible ifconfig
statements. Match objects are labelled by subroutines that provide
the statement semantics.

Many IPv4, IPv6, 802.11, tunnel, and media configurations have been
tested.

AppleTalk, ISO, carp(4), agr(4), and vlan(4) configuration need
testing.

show more ...