2008-10-20 Dan Williams <dcbw@redhat.com>
[NetworkManager.git] / ChangeLog
1 2008-10-20  Dan Williams  <dcbw@redhat.com>
2
3         * src/dhcp-manager/nm-dhcp-manager.c
4                 - (nm_dhcp_manager_get): fix mismatched refcount; creating the dhcp
5                         manager object already refs it once
6                 - (nm_dhcp_manager_cancel_transaction_real): clear freed variables that
7                         also get cleaned up by nm_dhcp_device_destroy() to prevent
8                         double-frees
9
10 2008-10-20  Dan Williams  <dcbw@redhat.com>
11
12         * src/nm-manager.c
13                 - (initial_get_connections): use private dbus manager, don't keep
14                         ref-ing the singleton.  Fixes mismatched refcounts of the dbus
15                         manager object.
16
17 2008-10-18  Dan Williams  <dcbw@redhat.com>
18
19         * libnm-glib/nm-settings.c
20           libnm-glib/nm-settings.h
21                 - Rename the "get_secrets" virtual function "service_get_secrets" to
22                         clarify when it's used; NMExportedConnetion is a base-class for both
23                         the client and service side, which is sort of confusing, and
24                         get_secrets only makes sense on the service side.
25
26         * libnm-glib/nm-dbus-connection.c
27                 - (get_secrets): remove, unused, and clients need to do extra work to
28                         get secrets anyway since the call can block on the remote side
29
30         * system-settings/plugins/ifupdown/nm-ifupdown-connection.c
31           system-settings/plugins/keyfile/nm-keyfile-connection.c
32                 - Fix up for get_secrets -> service_get_secrets
33
34 2008-10-16  Dan Williams  <dcbw@redhat.com>
35
36         * src/nm-device-wifi.c
37                 - (constructor): correctly determine encryption capabilities
38
39 2008-10-15  Dan Williams  <dcbw@redhat.com>
40
41         * src/nm-device-wifi.c
42                 - (wireless_qual_to_percent): fix quality calculation in a fallback case
43                         (Johannes Berg)
44
45 2008-10-15  Dan Williams  <dcbw@redhat.com>
46
47         * src/NetworkManagerSystem.c
48                 - (ip4_dest_in_same_subnet): tighter checks on subnet matching,
49                         if the ip4_dest is in a smaller subnet contained within a subnet
50                         the machine is currently on, the destination is in the same subnet
51                 - (nm_system_device_set_ip4_route): move subnet checks to callers
52                 - (add_vpn_gateway_route): check if the VPN gateway is in the same
53                         subnet as the parent device, and if so, don't add the direct
54                         host route via the parent device's gateway (bgo #481620)
55                 - (nm_system_apply_ip4_config): check whether the route to be added
56                         is contained within a subnet the device is already on
57
58 2008-10-11  Dan Williams  <dcbw@redhat.com>
59
60         * include/NetworkManager.h
61           introspection/nm-device.xml
62           include/NetworkManagerVPN.h
63                 - Add a few more state reasons for the device deactivated state
64
65         * src/nm-device-interface.c
66           src/nm-device-interface.h
67                 - (nm_device_interface_deactivate): add a 'reason' argument
68
69         * src/nm-device.c
70           src/nm-device.h
71                 - (nm_device_deactivate, nm_device_take_down): add a 'reason' argument
72                 - (nm_device_state_changed): pass the state change reason to
73                         nm_device_take_down()
74                 - (nm_device_set_managed): take a 'reason' argument, and pass it along
75                         to the state change function
76
77         * src/nm-manager.c
78           src/nm-manager.h
79                 - (remove_one_device, handle_unmanaged_devices, sync_devices,
80                    impl_manager_sleep): pass a reason code to nm_device_set_managed()
81                 - (nm_manager_deactivate_connection): add a 'reason' argument and pass
82                         something reasonable along to VPN deactivation
83
84         * src/vpn-manager/nm-vpn-manager.c
85           src/vpn-manager/nm-vpn-manager.h
86                 - (nm_vpn_manager_deactivate_connection): add a 'reason' argument and
87                         pass that along to nm_vpn_connection_disconnect()
88
89 2008-10-11  Dan Williams  <dcbw@redhat.com>
90
91         * src/nm-device-wifi.c
92                 - (can_scan): remove old madwifi hack for not scanning while connected
93
94 2008-10-11  Dan Williams  <dcbw@redhat.com>
95
96         Add support for VPN subnet gateways (bgo #549196)
97
98         * include/NetworkManager.h
99                 - Add key for internal VPN subnet gateway
100
101         * src/vpn-manager/nm-vpn-connection.c
102                 - (ip_address_to_string): return a const from a static buffer so we
103                         don't leak a lot of strings
104                 - (print_vpn_config): print internal VPN gateway as well
105                 - (nm_vpn_connection_ip4_config_get): grab internal VPN gateway from
106                         VPN service too
107                 - (nm_vpn_connection_get_ip4_internal_gateway): new function
108
109         * src/NetworkManagerSystem.c
110           src/NetworkManagerSystem.h
111                 - (nm_system_device_replace_default_ip4_route): split into two, one for
112                         VPN connections and one for normal devices
113                 - (replace_default_ip4_route): break out route stuff into its own function
114                 - (nm_system_replace_default_ip4_route_vpn,
115                    nm_system_replace_default_ip4_route): simplify by having two cases,
116                         one for VPNs and one for normal devices
117
118         * src/NetworkManagerPolicy.c
119                 - (update_routing_and_dns): simplify, use split default route replacement
120                         functions
121
122 2008-10-10  Dan Williams  <dcbw@redhat.com>
123
124         Rework default route handling to consolidate decisions in the policy,
125         and to take active VPN connections into account when changing the default
126         route (bgo #545912)
127
128         * src/NetworkManager.c
129                 - (main): pass the vpn_manager to the policy so it knows about active
130                         VPN connections; clean up the named manager which wasn't done before
131
132         * src/NetworkManagerPolicy.c
133           src/NetworkManagerPolicy.h
134                 - (nm_policy_new): get a clue about the vpn_manager
135                 - (update_default_route): remove, fold into update_routing_and_dns()
136                 - (update_routing_and_dns): handle active VPN connections too; an
137                         active VPN connection becomes the default route if it does not have
138                         server-specified or user-specified custom routes.  Otherwise, the
139                         best active device gets the default route
140                 - (vpn_connection_activated, vpn_connection_deactivated, nm_policy_new,
141                    nm_policy_destroy): track VPN connection activation and deactivation
142                         and update the default route when appropriate
143
144         * src/NetworkManagerSystem.c
145           src/NetworkManagerSystem.h
146                 - (nm_system_vpn_device_unset_from_ip4_config): remove, put functionality
147                         in the VPN connection itself
148                 - (nm_system_vpn_device_set_from_ip4_config,
149                    nm_system_device_set_from_ip4_config): merge together to make
150                         nm_system_apply_ip4_config()
151                 - (add_vpn_gateway_route): add a route to the VPN's external gateway
152                         via the parent device
153                 - (nm_system_apply_ip4_config): simplify
154                 - (add_ip4_route_to_gateway): new function; add a direct route to the
155                         gateway if needed
156                 - (nm_system_device_replace_default_ip4_route): simplify, break gateway
157                         route stuff out into add_ip4_route_to_gateway() for clarity
158
159         * src/nm-device.c
160                 - (nm_device_set_ip4_config): update for nm_system_apply_ip4_config()
161
162         * src/vpn-manager/nm-vpn-connection.c
163           src/vpn-manager/nm-vpn-connection.h
164                 - (nm_vpn_connection_get_ip4_config, nm_vpn_connection_get_ip_iface,
165                    nm_vpn_connection_get_parent_device): add
166                 - (nm_vpn_connection_ip4_config_get): make the requirement of a tunnel
167                         device explicit
168                 - (connection_state_changed): update the named manager now that
169                         nm_system_vpn_device_unset_from_ip4_config() is gone; do something
170                         useful on errors
171
172         * src/vpn-manager/nm-vpn-manager.c
173           src/vpn-manager/nm-vpn-manager.h
174                 - Add a 'connection-activated' signal
175                 - (nm_vpn_manager_get_active_connections): new function; mainly for the
176                         policy to find out about active VPN connections
177
178 2008-10-10  Tambet Ingo  <tambet@gmail.com>
179
180         * src/nm-logging.c (nm_logging_setup): Don't use LOG_CONS when running as
181         a daemon to prevent NM logging spew on console on startup and shutdown (due
182         to dependency loop between NM and syslog).
183
184 2008-10-10  Alexander Sack  <asac@ubuntu.com>
185
186         Implement managed mode. We bind devices configured in /etc/network/interfaces
187         to their connections by updating wired/wireless setting with the
188         mac address of the device.
189
190         * system-settings/plugins/ifupdown/plugin.c
191                 - (get_net_address_for_udi): implement function to retrieve MAC
192                         address of udi from hal in GByteArray format
193                 - (bind_device_to_connection): bind mac address of device to
194                         wired/wireless system connection
195                 - (hal_device_added_cb): call bind_device_to_connection for
196                         system connections with a matching interface.name
197                 - (hal_device_added_cb): ensure that all code paths
198                         properly free the "iface" string.
199
200 2008-10-10  Alexander Sack  <asac@ubuntu.com>
201
202         Parse nm-system-settings.conf and allow admins to either use managed and unmanaged
203         mode of the ifupdown system config plugin.
204
205         * system-settings/plugins/ifupdown/plugin.c
206                 - (SCPluginIfupdown_init): parse nm-system-settings.conf keyfile and set
207                         private unmanage_well_known state field accordingly
208
209 2008-10-10  Alexander Sack  <asac@ubuntu.com>
210
211         Implement unmanaged mode that will prevent all devices in the
212         well_known_udis set from being touched by NetworkManager
213
214         * system-settings/plugins/ifupdown/plugin.c
215                 - (typedef struct SCPluginIfupdownPrivate): add gboolean
216                         unmanage_well_known field used to turn on/off unmanaged
217                         mode
218                 - (hal_device_added_cb,hal_device_remove_cb): emit |unmanaged-devices-changed|
219                         signal when well_known_udis get added/removed
220                 - (SCPluginIfupdown_get_unmanaged_devices): return all well_known_udis
221                         if we are in unmanaged mode
222
223 2008-10-10  Alexander Sack  <asac@ubuntu.com>
224
225         Add support to track network devices that have a configuration
226         with a matching interface.name in /etc/network/interfaces
227
228         * system-settings/plugins/ifupdown/plugin.c
229                 - (typedef struct SCPluginIfupdownPrivate): add hash table
230                         to track |well_known_udis|
231                 - (get_iface_for_udi): helper function to get interface.name
232                         for a udi
233                 - (hal_device_added_cb, hal_device_removed_cb): callbacks
234                         that add and remove devices to and from the well_known_udis
235                         set depending on whether their |interface.name| matches
236                         any interface definition in /etc/network/interfaces
237                 - (SCPluginIfupdown_init): connect callbacks from above with
238                         hal_mgr and setup well_known_udis hashtable
239                 - (GObject__dispose): destroy well_known_udis hashtable
240                 - (hal_device_added_cb2): implement wrapper callback with GFunc
241                         signature. user_data is supposed to be a triple (hal_mgr,
242                         config and devtype)
243                 - (SCPluginIfupdown_init): bootstrap wired and wifi devices for
244                         startup and call hal_device_added_cb2
245
246 2008-10-10  Alexander Sack  <asac@ubuntu.com>
247
248         Remove implementation for not used NMSystemConfigInterface callback functions
249         in ifupdown plugin
250
251         * system-settings/plugins/ifupdown/plugin.c
252                 - (SCPluginIfupdown_unmanaged_devices_changed): removed
253                 - (SCPluginIfupdown_connection_added): removed
254
255 2008-10-08  Dan Williams  <dcbw@redhat.com>
256
257         Add a 'hostname' dispatcher action triggered on hostname changes (bgo #552983)
258
259         * src/NetworkManagerUtils.c
260                 - (nm_utils_call_dispatcher): add a 'hostname' action
261
262         * src/NetworkManagerPolicy.c
263                 - (set_system_hostname): dispatch hostname changes
264
265         * callouts/nm-dispatcher-action.c
266                 - (nm_dispatcher_action): handle 'hostname' actions
267
268 2008-10-08  Dan Williams  <dcbw@redhat.com>
269
270         * src/NetworkManagerSystem.c
271                 - (find_route): ref the route so it doesn't get destroyed when the cache
272                         is cleared
273                 - (nm_system_device_set_priority): unref the route here after it's done
274                         being used
275
276 2008-10-08  Dan Williams  <dcbw@redhat.com>
277
278         * src/nm-serial-device.c
279                 - Turn on serial debugging when NM_SERIAL_DEBUG is set in the environment
280
281 2008-10-08  Tambet Ingo  <tambet@gmail.com>
282
283         * system-settings/plugins/keyfile/nm-keyfile-connection.c (update): Update the
284         connection with new settings before saving it.
285
286 2008-10-06  Dan Williams  <dcbw@redhat.com>
287
288         * src/nm-ip4-config.c
289           src/nm-ip4-config.h
290                 - nm_ip4_config_is_exported -> nm_ip4_config_get_dbus_path
291
292         * src/nm-device-interface.c
293                 - (nm_device_interface_init): make 'ip4-config' a boxed property of type
294                         DBUS_TYPE_G_OBJECT_PATH so that we can make it NULL when we need to
295                         by using '/' for the object path
296
297         * src/nm-device.c
298                 - (src/nm-device.c): marshal missing/unexported ip4-config through
299                         dbus as '/' since dbus-glib can't handle NULL objects nor can
300                         dbus handle NULL object paths
301
302 2008-10-03  Alexander Sack  <asac@ubuntu.com>
303
304         Implement system hostname support for debian/ubuntu
305
306         * system-settings/plugins/ifupdown/plugin.c
307                 - (GObject__get_property): extend announced capabilities; add
308                         NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_HOSTNAME support
309                 - (GObject__set_property,write_system_hostname): implement
310                         NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_HOSTNAME capability.
311                 - (GObject__set_property, GObject__get_property, SCPluginIfupdown_init,
312                    update_system_hostname, get_hostname):
313                         implement hostname property that watches and
314                         parses /etc/hostname
315
316 2008-10-03  Alexander Sack  <asac@ubuntu.com>
317
318         * system-settings/plugins/ifcfg-fedora/nm-inotify-helper.c
319           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.h
320           system-settings/plugins/ifcfg-fedora/Makefile.am
321           system-settings/src/nm-inotify-helper.c
322           system-settings/src/nm-inotify-helper.h
323           src/Makefile.am
324                 - Move ifcfg-fedora inotify helpers to the system settings service so
325                         they are available to all plugins
326
327 2008-10-03  Alexander Sack  <asac@ubuntu.com>
328
329         Implement support for wep-tx-keyidx in ifupdown system
330         config plugin.
331
332         * system-settings/plugins/ifupdown/parser.c
333                 - (update_wireless_security_setting_from_if_block): introduce
334                         free_type_mapping func table; rename a few local
335                         variables to improve readability; add wpa security mapping
336                         for wep-tx-keyidx property
337                 - (string_to_gpointerint): new function used for the auto_type_mapping
338                         of new wep-tx-keyidx property
339                 - (slist_free_all): free func used for mapped slist types
340
341 2008-10-03  Alexander Sack  <asac@ubuntu.com>
342
343         * system-settings/src/main.c:
344                 - (add_default_dhcp_connection, device_removed_cb): ensure the UDI is
345                         always used as the hash key; fixes a crash when removing wired
346                         devices
347
348 2008-10-02  Dan Williams  <dcbw@redhat.com>
349
350         * src/nm-gsm-device.c
351                 - (enter_pin_done, enter_pin, check_pin_done, real_act_stage1_prepare):
352                         pass the required GSM secret along via user_data rather than keeping
353                         it around in the private data where it sometimes didn't get cleared
354                 - (real_get_ppp_name): implement using the GSM username
355
356 2008-10-02  Dan Williams  <dcbw@redhat.com>
357
358         * src/ppp-manager/nm-ppp-manager.c
359           src/ppp-manager/nm-ppp-manager.h
360                 - (impl_ppp_manager_need_secrets): tries secrets twice before asking
361                         the settings daemon for completely new ones
362                 - (create_pppd_cmd_line): new parameter 'ppp_name' used to set the
363                         local PPP peer name; allow PPP debuging by launching NM with
364                         the environment variable NM_PPP_DEBUG defined
365                 - (nm_ppp_manager_start): new parameter 'ppp_name' passed to
366                         create_pppd_cmd_line()
367
368         * src/nm-serial-device.c
369           src/nm-serial-device.h
370                 - New 'get_ppp_name' function for subclasses to implement to return the
371                         local PPP peer name
372                 - (real_act_stage2_config): call 'get_ppp_name' function of subclasses
373                         and pass that name to the PPP manager
374
375         * src/nm-device-ethernet.c
376                 - (pppoe_stage2_config): pass the PPPoE username to the PPP manager as
377                         the local peer name
378
379         * src/nm-cdma-device.c
380                 - (real_get_ppp_name): implement using the CDMA username
381
382 2008-10-02  Dan Williams  <dcbw@redhat.com>
383
384         Patch from Alexander Sack <asac ubuntu com>
385
386         * system-settings/plugins/ifupdown/parser.c
387                 - Implement more graceful ip4 config parsing for cases where
388                   /etc/network/interfaces omits basic ip4 settings, such as gateway etc
389                   by using default values
390
391 2008-10-02  Dan Williams  <dcbw@redhat.com>
392
393         * src/NetworkManagerPolicy.c
394                 - (device_state_changed): when marking a connection invalid, clear its
395                         secrets too so that fresh secrets get requested the next time
396
397 2008-10-01  Dan Williams  <dcbw@redhat.com>
398
399         * system-settings/src/dbus-settings.c
400                 - (nm_sysconfig_settings_init): cache system hostname on startup as
401                         a fallback if no plugin provides a hostname
402                 - (get_property): fall back to cached hostname if no plugin provides
403                         a hostname
404
405 2008-10-01  Dan Williams  <dcbw@redhat.com>
406
407         Fix setting value comparison issue that caused some settings to look the
408         same when they were really different (rh #464417)
409
410         * libnm-util/nm-param-spec-specialized.c
411                 - (type_is_fixed_size): return fundamental size of the fixed type too
412                 - (nm_gvalues_compare_collection): use the fundamental fixed type size
413                         in the comparison so that the _entire_ fixed type collection gets
414                         compared rather than just the first 'len1' bytes
415
416 2008-09-30  Dan Williams  <dcbw@redhat.com>
417
418         * src/NetworkManagerPolicy.c
419                 - (lookup_thread_worker): don't store the idle handler ID becuase the
420                         idle handler could have already run and freed the LookupThread
421                         structure
422
423 2008-09-30  Tambet Ingo  <tambet@gmail.com>
424
425         * src/nm-device.c (nm_device_get_priority): Implement.
426         (nm_device_set_ip4_config): Send the device priority to system ip4 
427         config setter.
428
429         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config):
430         Add priority argument and if it's >= 0, set the priority of the network
431         route added automatically by netlink (or kernel?).
432         (nm_system_device_set_priority): Implement.
433
434         * src/NetworkManagerPolicy.c (get_best_device): Use 
435         nm_device_get_priority() instead of home-grown version. Revert the
436         meaning, best priority is the lowest one.
437
438 2008-09-29  Dan Williams  <dcbw@redhat.com>
439
440         Handle ipw3945 suspend/resume by retrying the GIWRANGE request a few times
441         when it returns EAGAIN (rh #362421)
442
443         * src/nm-device-wifi.c
444                 - (wireless_get_range): try GIWRANGE a few times until the card responds
445                 - (real_get_generic_capabilities, constructor): use wireless_get_range()
446
447 2008-09-28  Dan Williams  <dcbw@redhat.com>
448
449         * src/nm-serial-device.c
450           src/nm-serial-device.h
451                 - (nm_serial_device_close): stop PPP manager here so that PPP gets
452                         cleaned at the right times when subclasses close the serial port too
453                 - (nm_serial_device_send_command): use a default send delay; don't
454                         spin forever on EAGAIN
455                 - (get_reply_done, get_reply_got_data, nm_serial_device_get_reply):
456                         remove, no longer used
457                 - (find_response): return the matched response if any
458                 - (nm_serial_device_wait_reply_blocking): wait for a reply but block
459                         while doing so
460                 - (wait_for_reply_done): pass the matched response to the callback
461                 - (wait_for_reply_got_data): save the matched response; simplify timeout
462                         handling
463                 - (nm_serial_device_wait_for_reply): make 'responses' and 'terminators'
464                         const since they never get modified
465                 - (cleanup_device): split out common cleanup stuff to a new function
466                 - (real_deactivate_quickly, finalize): use cleanup_device()
467
468         * src/nm-gsm-device.c
469                 - (modem_get_reply): remove, unused
470                 - (set_apn): give the card a bit more time to respond
471                 - (manual_registration_again, schedule_manual_registration_again,
472                    manual_registration_response, manual_registration): handle manual
473                         registration timeouts better by retrying registration a few times
474                         because cards are a bit slow after CFUN=1
475                 - (automatic_registration_get_network, get_network_response): use
476                         modem_wait_for_reply() because it interacts better with the serial
477                         buffer and does more intelligent matching; need to wait for 'OK'
478                         rather than just matching terminators
479                 - (schedule_automatic_registration_again,
480                    automatic_registration_response, automatic_registration): retry
481                         registration a few times on timeout or "searching" because cards
482                         take a bit to find a network after being powered up with CFUN=1
483                 - (power_up_response, power_up, init_full_done, enter_pin,
484                    check_pin_done): power up the card with CFUN=1 before trying to
485                         register with the network
486                 - (init_modem_full, init_modem): use more standard 3G init strings
487
488         * src/nm-hso-gsm-device.c
489                 - (modem_get_reply): remove, unused
490                 - (hso_ip4_config_response, real_act_stage3_ip_config_start): use
491                         modem_wait_for_reply() to match actual responses instead of single
492                         termination characters; it doesn't leave stuff in the serial buffer
493                         that might confuse later calls
494                 - (real_deactivate_quickly): use nm_serial_device_wait_reply_blocking()
495                         to ensure that the call is really disconnected and not leave extra
496                         stuff in the serial buffer
497
498         * src/nm-cdma-device.c
499                 - (power_up_response, power_up, init_done): try Sierra-style modem
500                         power up before attempting to connect
501
502 2008-09-27  Dan Williams  <dcbw@redhat.com>
503
504         * libnm-util/nm-setting-gsm.c
505                 - (verify): verify GSM network ID
506
507 2008-09-25  Dan Williams  <dcbw@redhat.com>
508
509         * libnm-util/nm-setting-gsm.c
510           libnm-util/nm-setting-gsm.h
511                 - Fix up NM_GSM_NETWORK_* constants to accurately reflect the network
512                         technology terms (bgo #551361)
513
514 2008-09-25  Dan Williams  <dcbw@redhat.com>
515
516         Fix bgo #549401 (inspired by patch from Alexander Sack)
517
518         * src/nm-device-ethernet.c
519                 - (finish_supplicant_task): clean up scheduled tasks and free memory
520                 - (remove_supplicant_interface_error_handler): remove the supplicant
521                         error idle callback too
522                 - (supplicant_interface_release): rename from supplicant_interface_clean
523                         to match nm-device-wifi.c; clean up supplicant interface-related
524                         state tasks when the supplicant interface is disposed of
525                 - (schedule_state_handler): add scheduled tasks to a list so they can
526                         be cleaned up later
527                 - (supplicant_mgr_state_cb_handler, supplicant_iface_state_cb_handler,
528                    supplicant_iface_connection_state_cb_handler): use
529                         finish_supplicant_task() to clean up each completed task
530                 - (supplicant_iface_connection_error_cb_handler,
531                    supplicant_connection_timeout_cb): clear source id when the task is
532                         complete
533                 - (supplicant_iface_connection_error_cb): save scheduled task id for
534                         later cleanup
535                 - (nm_device_ethernet_dispose): clean up any pending supplicant state
536                         tasks
537
538         * src/nm-device-wifi.c
539                 - (finish_supplicant_task): clean up scheduled tasks and free memory
540                 - (remove_supplicant_interface_error_handler): remove the supplicant
541                         error idle callback too
542                 - (supplicant_interface_release): clean up supplicant interface-related
543                         state tasks when the supplicant interface is disposed of
544                 - (schedule_state_handler): add scheduled tasks to a list so they can
545                         be cleaned up later
546                 - (supplicant_mgr_state_cb_handler, supplicant_iface_state_cb_handler,
547                    supplicant_iface_connection_state_cb_handler): use
548                         finish_supplicant_task() to clean up each completed task
549                 - (supplicant_iface_connection_error_cb_handler): clear source id when
550                         the task is complete
551                 - (supplicant_iface_connection_error_cb): save scheduled task id for
552                         later cleanup
553                 - (nm_device_wifi_dispose): clean up any pending supplicant state tasks
554
555 2008-09-24  Tambet Ingo  <tambet@gmail.com>
556
557         * system-settings/plugins/keyfile/plugin.c: Implement unmanaged_devices
558         method and get/set hostname property.
559
560 2008-09-24  Tambet Ingo  <tambet@gmail.com>
561
562         * src/supplicant-manager/nm-supplicant-interface.c
563         (nm_supplicant_interface_disconnect): Don't increment the reference 
564         count when disconnecting. The problem is on shutdown, when the replies
565         to these commands do not arrive before NM exits, resulting on never
566         calling supplicant interface's dispose(), which removes the interface
567         from supplicant.
568
569 2008-09-24  Tambet Ingo  <tambet@gmail.com>
570
571         * libnm-glib/nm-vpn-plugin-ui-interface.c: Add type checking to
572         all the public function arguments.
573
574 2008-09-22  Tambet Ingo  <tambet@gmail.com>
575
576         * src/vpn-manager/nm-vpn-connection.c: Add a signal handler for the
577         "Failure" signal from VPN plugins, store the failure reason, and
578         use it when the state is changed to failure.
579
580         * introspection/nm-vpn-plugin.xml: Fix the "Failure" signal's type
581         description.
582
583         * include/NetworkManagerVPN.h (NMVPNConnectionStateReason): Add a new
584         reason to the end of the list to not break the API.
585         (NMVPNPluginFailure): Move it here (from libnm-glib/nm-vpn-plugin.h)
586         so it can be shared by plugins and daemon.
587
588 2008-09-18  Dan Williams  <dcbw@redhat.com>
589
590         Patch from Alexander Sack <asac@ubuntu.com>
591
592         * configure.in
593           system-settings/plugins/Makefile.am
594           system-settings/plugins/ifupdown/Makefile.am
595           system-settings/plugins/ifupdown/interface_parser.c
596           system-settings/plugins/ifupdown/interface_parser.h
597           system-settings/plugins/ifupdown/nm-ifupdown-connection.c
598           system-settings/plugins/ifupdown/nm-ifupdown-connection.h
599           system-settings/plugins/ifupdown/parser.c
600           system-settings/plugins/ifupdown/parser.h
601           system-settings/plugins/ifupdown/plugin.c
602           system-settings/plugins/ifupdown/plugin.h
603                 - Implement a Debian/Ubuntu legacy network configuration plugin
604                         (gnome.org #551941)
605
606 2008-09-18  Dan Williams  <dcbw@redhat.com>
607
608         Implement support for honoring configured and automatic hostnames, and for
609         setting the configured hostname.
610
611         * introspection/nm-ip4-config.xml
612           src/nm-ip4-config.c
613           src/nm-ip4-config.h
614           src/dhcp-manager/nm-dhcp-manager.c
615                 - Remove useless hostname property; it's not really part of the IPv4
616                         config
617
618         * introspection/nm-settings-system.xml
619           libnm-glib/nm-dbus-settings-system.c
620           libnm-glib/nm-dbus-settings-system.h
621                 - Add SetHostname() call to system settings D-Bus interface
622                 - Add Hostname property to system settings D-Bus interface
623                 - (nm_dbus_settings_system_save_hostname,
624                    nm_dbus_settings_system_get_hostname): implement
625
626         * src/nm-device.c
627           src/nm-device.h
628                 - (nm_device_get_dhcp4_config): implement
629
630         * src/nm-manager.c
631           src/nm-manager.h
632                 - Fetch and track system settings service hostname changes, and proxy
633                         the changes via a GObject property of the manager
634
635         * system-settings/src/nm-system-config-interface.c
636           system-settings/src/nm-system-config-interface.h
637                 - Replace nm_system_config_interface_supports_add() with a capabilities
638                         bitfield
639
640         * system-settings/src/nm-system-config-error.c
641           system-settings/src/nm-system-config-error.h
642                 - Add additional errors
643
644         * system-settings/src/dbus-settings.c
645           system-settings/src/dbus-settings.h
646                 - (get_property, nm_sysconfig_settings_class_init): add hostname
647                         property; first plugin returning a hostname wins
648                 - (impl_settings_add_connection): use plugin capabilities instead of
649                         nm_system_config_interface_supports_add()
650                 - (impl_settings_save_hostname): implement hostname saving
651
652         * src/NetworkManagerPolicy.c
653                 - (lookup_thread_run_cb, lookup_thread_worker, lookup_thread_new,
654                    lookup_thread_die): implement an asynchronous hostname lookup thread
655                         which given an IPv4 address tries to look up the hostname for that
656                         address with reverse DNS
657                 - (get_best_device): split out best device code from
658                         update_routing_and_dns()
659                 - (update_etc_hosts): update /etc/hosts with the machine's new hostname
660                         to preserve the 127.0.0.1 reverse mapping that so many things require
661                 - (set_system_hostname): set a given hostname
662                 - (update_system_hostname): implement hostname policy; a configured
663                         hostname (from the system settings service) is used if available,
664                         otherwise an automatically determined hostname from DHCP, VPN, etc.
665                         If there was no automatically determined hostname, reverse DNS of
666                         the best device's IP address will be used, and as a last resort the
667                         hostname 'localhost.localdomain' is set.
668                 - (update_routing_and_dns): use get_best_device(); update the system
669                         hostname when the network config changes
670                 - (hostname_changed): update system hostname if the system settings
671                         service signals a hostname change
672                 - (nm_policy_new): list for system settings service hostname changes
673                 - (nm_policy_destroy): ensure that an in-progress hostname lookup thread
674                         gets told to die
675
676         * system-settings/plugins/keyfile/plugin.c
677           system-settings/plugins/ifcfg-suse/plugin.c
678                 - (get_property, sc_plugin_ifcfg_class_init): implement hostname and
679                         capabilities properties
680
681         * system-settings/plugins/ifcfg-fedora/shvar.c
682                 - (svOpenFile): re-enable R/W access of ifcfg files since the plugin
683                         writes out /etc/sysconfig/network now
684
685         * system-settings/plugins/ifcfg-fedora/plugin.c
686                 - (plugin_get_hostname): get hostname from /etc/sysconfig/network
687                 - (plugin_set_hostname): save hostname to /etc/sysconfig/network
688                 - (sc_network_changed_cb): handle changes to /etc/sysconfig/network
689                 - (sc_plugin_ifcfg_init): monitor /etc/sysconfig/network for changes
690                 - (get_property, set_property, sc_plugin_ifcfg_class_init): implement
691                         hostname get/set and capabilities get
692
693 2008-09-18  Dan Williams  <dcbw@redhat.com>
694
695         * libnm-util/nm-setting-wireless.c
696                 - (nm_setting_wireless_ap_security_compatible): only verify pairwise and
697                         group ciphers if the wireless-security setting explicitly specified
698                         them, effectively making the default be "all ciphers"  (idea from
699                         Alexander Sack)
700
701 2008-09-15  Dan Williams  <dcbw@redhat.com>
702
703         Patch from Alexander Sack <asac@ubuntu.com>
704
705         * src/named-manager/nm-named-manager.c
706                 - (dispatch_resolvconf): respect resolvconf exit code
707
708 2008-09-12  Tambet Ingo  <tambet@gmail.com>
709
710         * src/named-manager/nm-named-manager.c (dispatch_netconfig): Make it compile
711         again. Add some debugging.
712
713 2008-09-11  Dan Williams  <dcbw@redhat.com>
714
715         * system-settings/plugins/keyfile/plugin.c
716                 - (update_connection_settings): update connection manually, since
717                         nm_exported_connection_update() does authentication
718                 - (dir_changed): update_connection_settings() doesn't need to return
719                         an error
720
721 2008-09-09  Dan Williams  <dcbw@redhat.com>
722
723         * libnm-glib/nm-vpn-plugin-ui-interface.c
724           libnm-glib/nm-vpn-plugin-ui-interface.h
725           libnm-glib/libnm_glib_vpn.ver
726                 - (nm_vpn_plugin_ui_interface_delete_connection): called when the plugin
727                         should clean up resources related to the connection (like keyring
728                         secrets)
729                 - (nm_vpn_plugin_ui_widget_interface_save_secrets): called when the plugin
730                         should save user-scope secrets (like to the keyring)
731
732 2008-09-08  Dan Williams  <dcbw@redhat.com>
733
734         Patch from Alexander Sack <asac@ubuntu.com>
735
736         * libnm-util/crypto_gnutls.c
737           libnm-util/crypto_nss.c
738                 - (crypto_init, crypto_deinit): just use a boolean instead of a refcount
739
740         * libnm-util/nm-utils.c
741           libnm-util/nm-utils.h
742           libnm-util/libnm-util.ver
743                 - (nm_utils_init): initialize libnm-util
744                 - (nm_utils_deinit): de-initialize libnm-util and clean up resources
745
746         * libnm-util/nm-setting-8021x.c
747                 - (nm_setting_802_1x_class_init): init libnm-util when needed
748
749 2008-09-05  Dan Williams  <dcbw@redhat.com>
750
751         Patch from Roy Marples <roy@marples.name> and others
752
753         * configure.in
754           src/named-manager/nm-named-manager.c
755                 - Add support for resolvconf; use --with-resolvconf at configure time
756                         to enable it
757
758 2008-09-05  Dan Williams  <dcbw@redhat.com>
759
760         * libnm-util/crypto_nss.c
761           libnm-util/crypto_gnutls.c
762           libnm-util/crypto.h
763                 - (crypto_init): return error when init fails
764
765 2008-09-05  Dan Williams  <dcbw@redhat.com>
766
767         * libnm-glib/nm-device-wifi.c
768                 - (access_point_removed_proxy): clean up the active access point too
769                         just in case the active ap changed signal didn't come through yet
770                 - (clean_up_aps): be sure to set priv->active_ap to NULL when cleaning up
771
772 2008-09-05  Dan Williams  <dcbw@redhat.com>
773
774         * libnm-glib/nm-client.c
775                 - (constructor): get initial state after we know whether NM is running
776                         or not
777
778 2008-09-05  Dan Williams  <dcbw@redhat.com>
779
780         * libnm-glib/nm-ip4-config.c
781           libnm-glib/nm-dhcp4-config.c
782                 - (finalize): clean up the DBusGProxy
783
784 2008-09-04  Dan Williams  <dcbw@redhat.com>
785
786         * src/nm-ip4-config.c
787           src/nm-ip4-config.h
788                 - (nm_ip4_config_new): don't export over D-Bus here
789                 - (nm_ip4_config_export): new function; export the config over D-Bus
790                 - (nm_ip4_config_is_exported): new function
791
792         * src/nm-device.c
793                 - (nm_device_activate_stage5_ip_config_commit): fix leak of IP4Config
794                         objects by balancing the IP4Config constructor; the device holds
795                         a reference to the IP4Config already
796                 - (nm_device_set_ip4_config): export the IP4Config when needed
797
798 2008-09-04  Dan Williams  <dcbw@redhat.com>
799
800         * src/supplicant-manager/nm-supplicant-settings-verify.c
801                 - Allow WPA-NONE key management for Ad-Hoc WPA connections
802
803 2008-09-04  Dan Williams  <dcbw@redhat.com>
804
805         * libnm-util/nm-setting-vpn.c
806           libnm-util/nm-setting-vpn.h
807                 - Split VPN secrets from VPN data so that settings services can actually
808                         figure out that they are secrets and store them accordingly
809
810         * system-settings/plugins/keyfile/nm-keyfile-connection.c
811           system-settings/plugins/keyfile/reader.c
812           system-settings/plugins/keyfile/reader.h
813           system-settings/plugins/keyfile/writer.c
814                 - Store VPN secrets separately from VPN data so that they can be fetched
815                         on demand
816                 - Implement the get_secrets() call so that (a) secrets don't leak out
817                         to unprivileged callers, and (b) secrets can be sent to privileged
818                         callers when needed
819
820         * vpn-daemons/vpnc/src/nm-vpnc-service.c
821                 - Handle split VPN secrets
822
823 2008-08-27  Dan Williams  <dcbw@redhat.com>
824
825         * system-settings/plugins/ifcfg-fedora/reader.c
826                 - (make_ip4_setting): use DOMAIN not SEARCH (rh #459370)
827
828 2008-08-27  Dan Williams  <dcbw@redhat.com>
829
830         Ensure zombie children get cleaned up.  To get notifications when children
831         die abnormally, g_spawn_async() requires G_SPAWN_DO_NOT_REAP_CHILD, but
832         that requires calling waitpid() yourself if you've removed the child watch
833         handler before the process has actually died, which NM needs to do in a few
834         places.  So ensure that everything uses G_SPAWN_DO_NOT_REAP_CHILD and also
835         cleans up after the child when required.  Should fix problems trying to
836         activate mobile broadband connections after a previous failure.
837
838         * src/dhcp-manager/nm-dhcp-dhclient.c
839           src/dhcp-manager/nm-dhcp-dhcpcd.c
840                 - Use G_SPAWN_DO_NOT_REAP_CHILD
841
842         * src/dhcp-manager/nm-dhcp-manager.c
843                 - (nm_dhcp_device_destroy): ensure child is cleaned up
844                 - (nm_dhcp_client_stop, nm_dhcp_manager_cancel_transaction_real): always
845                         block on child quitting, since the non-blocking functionality was
846                         never actually used
847
848         * src/dnsmasq-manager/nm-dnsmasq-manager.c
849                 - (dm_watch_cb): child is already reaped here
850                 - (ensure_killed, nm_dnsmasq_manager_stop): block until child is dead
851
852         * src/nm-device.c
853                 - (aipd_cleanup): block until child is dead
854
855         * src/named-manager/nm-named-manager.c
856                 - (run_netconfig): don't use G_SPAWN_DO_NOT_REAP_CHILD if we aren't
857                         event bothering to watch the child
858
859         * src/ppp-manager/nm-ppp-manager.c
860                 - (ppp_watch_cb): child is already reaped here
861                 - (ensure_killed, nm_ppp_manager_stop): block until child is dead
862
863         * src/vpn-manager/nm-vpn-service.c
864                 - (vpn_service_watch_cb): child is already reaped here
865                 - (nm_vpn_service_daemon_exec): use G_SPAWN_DO_NOT_REAP_CHILD so that
866                         status of the child is actually tracked
867                 - (ensure_killed, finalize): block until child is dead
868
869 2008-08-26  Dan Williams  <dcbw@redhat.com>
870
871         * system-settings/plugins/keyfile/nm-keyfile-connection.c
872                 - (update): Update filename of the connection if the connection id
873                         was changed
874
875         * system-settings/plugins/keyfile/plugin.c
876                 - (dir_changed): first pass at handling connection renames correctly
877
878         * system-settings/plugins/keyfile/writer.c
879           system-settings/plugins/keyfile/writer.h
880                 - (write_connection): replace '/' with '*' when writing out the filename
881                         from the connection id
882
883 2008-08-26  Dan Williams  <dcbw@redhat.com>
884
885         Add connection UUIDs, since connection names can be changed, and since
886         old-style connection IDs could change over the life of the connection.  The
887         UUID should be assigned at connection creation time, be stable for a given
888         connection, and should be unique among all connections for a given settings
889         service.
890
891         * configure.in
892           libnm-util/Makefile.am
893                 - Require libuuid
894
895         * introspection/nm-exported-connection.xml
896                 - Remove "GetID" method
897
898         * libnm-glib/nm-dbus-connection.c
899           libnm-glib/nm-settings.c
900           libnm-glib/nm-settings.h
901                 - Remove id-related stuff
902
903         * libnm-util/nm-utils.c
904           libnm-util/nm-utils.h
905           libnm-util/libnm-util.ver
906                 - (nm_utils_uuid_generate, nm_utils_uuid_generate_from_string): Add
907                         utility functions to generate UUIDs
908
909         * libnm-util/nm-setting-connection.c
910           libnm-util/nm-setting-connection.h
911                 - Add 'uuid' member to the connection setting
912                 - (verify): require valid 'uuid' for a valid connection
913
914         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
915           system-settings/plugins/ifcfg-fedora/reader.c
916           system-settings/plugins/ifcfg-suse/nm-suse-connection.c
917           system-settings/plugins/ifcfg-suse/parser.c
918           system-settings/plugins/keyfile/nm-keyfile-connection.c
919           system-settings/src/main.c
920                 - Remove id-related stuff
921                 - Give connections UUIDs where needed
922
923 2008-08-25  Dan Williams  <dcbw@redhat.com>
924
925         * libnm-util/crypto_gnutls.c
926           libnm-util/crypto_nss.c
927                 - (crypto_init, crypto_deinit): refcount init/deinit
928                 - (crypto_md5_hash): allow NULL salt
929
930 2008-08-22  Michael Biebl  <mbiebl@gmail.com>
931
932         * libnm-glib/Makefile.am
933           libnm-util/Makefile.am
934           libnm-glib/libnm_glib.ver
935           libnm-glib/libnm_glib_vpn.ver
936           libnm-util/libnm-util.ver
937                 - Use linker version scripts to control the list of exported 
938                 symbols. List each exported symbol explicitely.
939         * libnm-util/Makefile.am
940                 - Fix compilation of the test-crypto binary. The crypto
941                 functions are no longer part of the libnm-util API. Add 
942                 crypto_*.c to test_crypto_SOURCES and link against the correct
943                 crypto libraries.
944
945 2008-08-19  Dan Williams  <dcbw@redhat.com>
946
947         * configure.in
948           test/Makefile.am
949                 - Don't build test/test-common
950                 - Remove unused stuff
951
952         * test/nm-set-fallback
953           test/nmtestdevices.c
954           test/test-common/.cvsignore
955           test/test-common/Makefile.am
956           test/test-common/test-common.c
957           test/test-common/test-common.h
958                 - delete
959
960 2008-08-18  Dan Williams  <dcbw@redhat.com>
961
962         * libnm-util/nm-utils.c
963           libnm-util/nm-utils.h
964                 - (nm_utils_garray_to_string): remove; NM was the only user and doesn't
965                         export anything that needs to be converted with this function
966
967         * src/dhcp-manager/nm-dhcp-manager.c
968                 - (garray_to_string): convert a byte array to a UTF-8 string with
969                         minimal validation; the DHCP client sends it in ASCII anyway
970                 - (get_option, copy_option): use garray_to_string()
971
972 2008-08-18  Dan Williams  <dcbw@redhat.com>
973
974         * include/NetworkManager.h
975           introspection/nm-device.xml
976                 - Add a "missing firmware" device state reason
977
978         * src/NetworkManagerSystem.c
979           src/NetworkManagerSystem.h
980                 - (nm_system_device_set_up_down): add a no_firmware argument
981                 - (nm_system_device_set_up_down_with_iface): if the result of setting
982                         IFF_UP is ENOENT, that almost always means missing firmware
983
984         * src/backends/NetworkManagerGeneric.c
985           src/nm-device-ethernet.c
986           src/nm-device-private.h
987           src/nm-device-wifi.c
988           src/nm-device.c
989           src/nm-device.h
990           src/nm-hso-gsm-device.c
991           src/vpn-manager/nm-vpn-connection.c
992                 - Pass no_firmware along; check it where appropriate
993
994 2008-08-18  Dan Williams  <dcbw@redhat.com>
995
996         Patch from Robert Buchholz <rbu@gentoo.org>
997
998         * autogen.sh
999           configure.in
1000                 - Change to automake 1.9 and 'ustar' tar format defined by POSIX
1001                         1003.1-1988, allowing for file names longer than 99 characters
1002
1003 2008-08-17  Dan Williams  <dcbw@redhat.com>
1004
1005         * include/NetworkManager.h
1006           introspection/nm-device.xml
1007           src/nm-gsm-device.c
1008                 - Finer-grained GSM registration failure error codes
1009
1010 2008-08-17  Dan Williams  <dcbw@redhat.com>
1011
1012         * callouts/Makefile.am
1013           src/Makefile.am
1014                 - Move dispatcher directory creation to callouts/Makefile.am
1015
1016         * system-settings/plugins/keyfile/Makefile.am
1017                 - Create keyfile connections directory in DESTDIR (bgo #546833)
1018
1019 2008-08-15  Dan Williams  <dcbw@redhat.com>
1020
1021         Do connection sharing in a cleaner manner; all required iptables rules
1022         are now stored in the activation request and pertain only to the device
1023         which is being shared to other computers. (rh #458625)
1024
1025         * src/nm-activation-request.c
1026           src/nm-activation-request.h
1027                 - (nm_act_request_add_share_rule): new function; add a sharing rule to
1028                         the activation request which will get torn down automatically when
1029                         the activation request dies
1030                 - (nm_act_request_set_shared): push sharing rules to iptables when sharing
1031                         is started, and tear them down when sharing is stopped
1032
1033         * src/nm-device.c
1034                 - (start_sharing): start up sharing by doing the required iptables magic
1035                 - (share_init): poke the right bits of the kernel and load the right
1036                         modules for NAT
1037                 - (nm_device_activate_stage5_ip_config_commit): start NAT-ing this
1038                         connection if it's a 'shared' connection
1039
1040         * src/NetworkManagerPolicy.c
1041                 - Remove all sharing stuff; done in the device code itself
1042
1043 2008-08-15  Dan Williams  <dcbw@redhat.com>
1044
1045         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1046                 - (create_dm_cmd_line): send the right router address
1047
1048 2008-08-15  Dan Williams  <dcbw@redhat.com>
1049
1050         * src/ppp-manager/nm-ppp-manager.c
1051                 - (pppd_timed_out): ensure timeouts fail the connection
1052
1053 2008-08-14  Dan Williams  <dcbw@redhat.com>
1054
1055         * src/nm-properties-changed-signal.c
1056           src/nm-properties-changed-signal.h
1057                 - Add a property spec flag for "don't export this property" in
1058                         property changed signals
1059
1060         * src/nm-hso-gsm-device.c
1061           src/nm-gsm-device.c
1062           src/nm-cdma-device.c
1063                 - Don't export monitor interface or netdev interface properties
1064
1065 2008-08-14  Dan Williams  <dcbw@redhat.com>
1066
1067         * src/NetworkManagerPolicy.c
1068                 - (update_routing_and_dns): 'hso' devices can be default even if they
1069                         don't have a gateway
1070
1071 2008-08-14  Dan Williams  <dcbw@redhat.com>
1072
1073         * src/nm-device.c
1074                 - (nm_device_deactivate_quickly): tear down activation request after
1075                         calling device-specific deactivation
1076
1077         * src/nm-hso-gsm-device.c
1078                 - (real_deactivate_quickly): terminate connection when deactivating
1079
1080 2008-08-14  Dan Williams  <dcbw@redhat.com>
1081
1082         * src/nm-activation-request.h
1083                 - Add HSO secrets caller
1084
1085         * src/nm-gsm-device.c
1086           src/nm-gsm-device.h
1087                 - (modem_wait_for_reply): add a 'user_data' argument so callers can pass
1088                         something to the callback function
1089                 - (set_apn, set_apn_done): call class dial function, not a static one
1090                 - (nm_gsm_device_class_init): add a class 'dial' function
1091
1092         * src/nm-hal-manager.c
1093                 - (get_hso_netdev): find the hso-driven hardware's net device
1094                 - (modem_device_creator): recognize hso-driven hardware and create the
1095                         right type of device object for it
1096
1097         * src/Makefile.am
1098           src/nm-hso-gsm-device.c
1099           src/nm-hso-gsm-device.h
1100                 - Implement support for devices driven by the 'hso' driver as a subclass
1101                         of NMGsmDevice
1102
1103 2008-08-14  Dan Williams  <dcbw@redhat.com>
1104
1105         * src/NetworkManagerSystem.c
1106                 - (nm_system_device_is_up_with_iface): ensure ifreq is cleared before using
1107                 - (nm_system_device_set_up_down_with_iface): cleanups; only return
1108                         success if the operation really was successful
1109
1110 2008-08-14  Dan Williams  <dcbw@redhat.com>
1111
1112         * src/nm-netlink-monitor.c
1113           src/nm-netlink-monitor.h
1114           src/nm-device-ethernet.c
1115                 - (nm_netlink_monitor_request_status): return an error on failure
1116                 - (constructor): don't segfault on missing error
1117
1118 2008-08-13  Dan Williams  <dcbw@redhat.com>
1119
1120         * callouts/nm-dispatcher-action.c
1121                 - Add IP4 config info to script environment
1122
1123 2008-08-12  Dan Williams  <dcbw@redhat.com>
1124
1125         * src/nm-device.c
1126                 - (nm_device_set_ip4_config): don't touch hostnames here; distros
1127                         that want to use DHCP hostnames should use dispatcher scripts
1128                         for that
1129
1130         * src/NetworkManagerSystem.h
1131           src/backends/NetworkManagerArch.c
1132           src/backends/NetworkManagerDebian.c
1133           src/backends/NetworkManagerFrugalware.c
1134           src/backends/NetworkManagerGeneric.c
1135           src/backends/NetworkManagerGeneric.h
1136           src/backends/NetworkManagerGentoo.c
1137           src/backends/NetworkManagerMandriva.c
1138           src/backends/NetworkManagerPaldo.c
1139           src/backends/NetworkManagerRedHat.c
1140           src/backends/NetworkManagerSlackware.c
1141           src/backends/NetworkManagerSuSE.c
1142                 - Remove nm_system_set_hostname(), no longer used
1143           
1144         * src/backends/Makefile.am
1145           src/backends/shvar.c
1146           src/backends/shvar.h
1147                 - Remove shvar.*; no longer used
1148
1149 2008-08-12  Dan Williams  <dcbw@redhat.com>
1150
1151         Revert most of the 'hostname' patch.  Too much stuff still breaks when
1152         hostname is updated at runtime.  Distros or users who want hostname updates
1153         can use dispatcher scripts to update the hostname if they need it.
1154
1155 2008-08-12  Dan Williams  <dcbw@redhat.com>
1156
1157         * introspection/nm-settings-system.xml
1158           system-settings/src/dbus-settings.c
1159           system-settings/src/dbus-settings.h
1160                 - Add a 'Hostname' property (rw) which represents the configured
1161                         hostname and domain of the system, if any
1162
1163         * system-settings/src/nm-system-config-error.c
1164           system-settings/src/nm-system-config-error.h
1165           system-settings/src/nm-system-config-interface.c
1166           system-settings/src/nm-system-config-interface.h
1167                 - Add a 'hostname' property to the plugin interface
1168                 - Add a method to send updated hostname to plugins to save in their
1169                         backing configuration store
1170
1171         * system-settings/plugins/keyfile/nm-keyfile-connection.c
1172           system-settings/plugins/keyfile/plugin.c
1173           system-settings/plugins/keyfile/writer.c
1174           system-settings/plugins/keyfile/writer.h
1175           system-settings/plugins/ifcfg-suse/plugin.c
1176                 - Add minimal hostname support
1177
1178         * system-settings/plugins/ifcfg-fedora/plugin.c
1179                 - Add support for updating system hostname in /etc/sysconfig/network
1180
1181 2008-08-12  Dan Williams  <dcbw@redhat.com>
1182
1183         * system-settings/plugins/ifcfg-fedora/shvar.c
1184           system-settings/plugins/ifcfg-fedora/shvar.c
1185                 - Fix double-free caused by svSetValue() followed by svCloseFile()
1186
1187 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1188
1189         * Makefile.am: Fix distcheck.
1190
1191 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1192
1193         * libnm-glib/*.c. Document some more.
1194
1195 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1196
1197         Start documenting libnm-glib public API using gtk-doc.
1198
1199         * libnm-glib/nm-serial-device.c: 
1200         * libnm-glib/nm-object.c: 
1201         * libnm-glib/nm-gsm-device.c: 
1202         * libnm-glib/nm-device.c: 
1203         * libnm-glib/nm-device-wifi.c: 
1204         * libnm-glib/nm-device-ethernet.c: 
1205         * libnm-glib/nm-client.c: 
1206         * libnm-glib/nm-cdma-device.c: Document the public API.
1207
1208         * docs/libnm-glib/libnm-glib.types: Implement.
1209
1210         * docs/libnm-glib/Makefile.am: Implement.
1211
1212         * autogen.sh: 
1213         * configure.in: 
1214         * Makefile.am: Add gtk-doc support.
1215
1216 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1217
1218         * src/backends/*: Get rid of nm_system_should_modify_resolv_conf().
1219
1220         * src/named-manager/nm-named-manager.c (rewrite_resolv_conf): Calculate
1221         the composite result of all the IP4 configurations and call a distro
1222         specific update_resolv_conf().
1223         (update_resolv_conf): Implement one for directly writing to 
1224         /etc/resolv.conf and one for opensuse to call netconfig.
1225
1226 2008-08-11  Dan Williams  <dcbw@redhat.com>
1227
1228         * src/ppp-manager/nm-ppp-manager.c
1229                 - (impl_ppp_manager_need_secrets): pass interface as required
1230
1231 2008-08-11  Dan Williams  <dcbw@redhat.com>
1232
1233         Merge the vpn-properties setting with the vpn setting since it was pointless
1234         to keep both of them around.  Convert the vpn 'data' hash table to a hash
1235         of string:string (instead of string:variant) so that system settings plugins
1236         can have an easier time dealing with the arbitrary key/value pairs.
1237
1238 2008-08-11  Dan Williams  <dcbw@redhat.com>
1239
1240         * libnm-util/nm-utils.c
1241                 - (nm_utils_register_value_transformations): add value transform for
1242                         a hash table of string:string
1243
1244 2008-08-10  Dan Williams  <dcbw@redhat.com>
1245
1246         * libnm-glib/nm-vpn-plugin.c
1247                 - (nm_vpn_plugin_connect): stop plugin after connection failure from
1248                         an idle handler so the Connect reply gets delivered before the
1249                         stop StateChanged signal
1250
1251 2008-08-10  Dan Williams  <dcbw@redhat.com>
1252
1253         * src/nm-ip4-config.c
1254                 - (get_property): use common ip4 address/route conversion functions
1255                 - (nm_ip4_config_replace_address, nm_ip4_config_replace_route): should
1256                         copy the new route here, not take ownership
1257
1258 2008-08-08  Tambet Ingo  <tambet@gmail.com>
1259
1260         * system-settings/plugins/ifcfg-suse/parser.c (make_ip4_setting):
1261         Update the IP4 setting's method name.
1262
1263 2008-08-07  Dan Williams  <dcbw@redhat.com>
1264
1265         * introspection/nm-ip4-config.xml
1266           libnm-glib/libnm-glib-test.c
1267           libnm-glib/nm-ip4-config.c
1268           libnm-glib/nm-ip4-config.h
1269           src/NetworkManagerSystem.h
1270           src/backends/NetworkManagerArch.c
1271           src/backends/NetworkManagerDebian.c
1272           src/backends/NetworkManagerFrugalware.c
1273           src/backends/NetworkManagerGeneric.c
1274           src/backends/NetworkManagerGeneric.h
1275           src/backends/NetworkManagerGentoo.c
1276           src/backends/NetworkManagerMandriva.c
1277           src/backends/NetworkManagerPaldo.c
1278           src/backends/NetworkManagerRedHat.c
1279           src/backends/NetworkManagerSlackware.c
1280           src/backends/NetworkManagerSuSE.c
1281           src/dhcp-manager/nm-dhcp-manager.c
1282           src/nm-device.c
1283           src/nm-ip4-config.c
1284           src/nm-ip4-config.h
1285                 - Remove NIS logic; should be done from dispatcher scripts instead
1286
1287 2008-08-07  Dan Williams  <dcbw@redhat.com>
1288
1289         * src/dhcp-manager/nm-dhcp-manager.c
1290                 - (nm_dhcp_manager_get_ip4_config): fix regression which caused
1291                         mis-handling of DHCP responses that returned more than one router
1292                         (found by Grant Williamson)
1293
1294 2008-08-07  Dan Williams  <dcbw@redhat.com>
1295
1296         * callouts/nm-dispatcher-action.c
1297                 - (nm_dispatcher_action): grab device path and create the device; pass
1298                         the device's DHCP4 config to script caller
1299                 - (dispatch_scripts): dump the DHCP4 config to the environment of called
1300                         scripts
1301
1302         * libnm-glib/nm-dhcp4-config.c
1303           libnm-glib/nm-dhcp4-config.h
1304                 - (nm_dhcp4_config_get_options): expose
1305                 - (nm_dhcp4_config_get_one_option): renamed from nm_dhcp4_config_get_option
1306
1307 2008-08-07  Dan Williams  <dcbw@redhat.com>
1308
1309         * include/NetworkManager.h
1310                 - Add the DHCP4Config D-Bus interface
1311
1312         * libnm-glib/Makefile.am
1313           libnm-glib/nm-dhcp4-config.c
1314           libnm-glib/nm-dhcp4-config.h
1315                 - Handle DHCP4 config objects exported by NM over D-Bus
1316
1317         * libnm-glib/nm-device.c
1318           libnm-glib/nm-device.h
1319                 - Add a 'dhcp4-config' property
1320
1321         * libnm-glib/libnm-glib-test.c
1322                 - Print out DHCP4 config for devices
1323                 - Fix some crashes when no connections are active
1324
1325         * src/nm-device-interface.c
1326           src/nm-device.c
1327           src/nm-dhcp4-config.c
1328           src/nm-dhcp4-config.h
1329                 - Treat dhcp4-config object as an object path at the D-Bus interface so
1330                         that when it doesn't exist we can proxy it as "/" which dbus-glib
1331                         doesn't let us do when the property type is G_TYPE_OBJECT
1332
1333 2008-08-07  Dan Williams  <dcbw@redhat.com>
1334
1335         * src/NetworkManager.c
1336           src/NetworkManagerSystem.h
1337           src/backends/NetworkManagerArch.c
1338           src/backends/NetworkManagerDebian.c
1339           src/backends/NetworkManagerFrugalware.c
1340           src/backends/NetworkManagerGeneric.c
1341           src/backends/NetworkManagerGeneric.h
1342           src/backends/NetworkManagerGentoo.c
1343           src/backends/NetworkManagerMandriva.c
1344           src/backends/NetworkManagerPaldo.c
1345           src/backends/NetworkManagerRedHat.c
1346           src/backends/NetworkManagerSlackware.c
1347           src/backends/NetworkManagerSuSE.c
1348                 - (nm_system_init, nm_system_kill_all_dhcp_daemons): remove, unused
1349
1350 2008-08-06  Dan Williams  <dcbw@redhat.com>
1351
1352         * libnm-glib/nm-ip4-config.c
1353           libnm-glib/nm-ip4-config.h
1354                 - Add 'routes' property
1355
1356         * libnm-util/nm-setting-vpn.c
1357           libnm-util/nm-setting-vpn.h
1358                 - Remove 'routes' property
1359
1360         * libnm-util/nm-setting-ip4-config.c
1361           libnm-util/nm-setting-ip4-config.h
1362                 - 'ignore-dhcp-dns' renamed to 'ignore-auto-dns'
1363                 - Add 'ignore-auto-routes' property
1364                 - 'routes' exposed over D-Bus is now an array of array of uint (4) to 
1365                         accomodate route metrics
1366                 - 'routes' exposed in C is now a list of NMSettingIP4Route structures
1367
1368         * libnm-util/nm-utils.c
1369           libnm-util/nm-utils.h
1370                 - Add helpers for marshalling IP4 routes
1371
1372         * src/NetworkManagerUtils.c
1373                 - (nm_utils_merge_ip4_config): handle property renames and new route
1374                         structure
1375
1376         * src/NetworkManagerSystem.c
1377                 - (nm_system_device_set_ip4_route, nm_system_device_set_from_ip4_config,
1378                    nm_system_vpn_device_set_from_ip4_config): respect route metrics
1379
1380         * src/dhcp-manager/nm-dhcp-manager.c
1381                 - (nm_dhcp_manager_get_ip4_config): handle new route structure
1382
1383         * system-settings/plugins/ifcfg-fedora/reader.c
1384           system-settings/plugins/ifcfg-fedora/writer.c
1385                 - Handle routes separately from addresses now that routes have a different
1386                         format
1387
1388         * introspection/nm-ip4-config.xml
1389           src/nm-ip4-config.c
1390           src/nm-ip4-config.h
1391                 - Rename internal routing functions
1392                 - 'static-routes' renamed to 'routes'
1393
1394 2008-08-04  Dan Williams  <dcbw@redhat.com>
1395
1396         Patch from Sjoerd Simons <sjoerd.simons@collabora.co.uk>
1397
1398         * src/NetworkManager.c
1399           src/nm-manager.c
1400           src/nm-manager.h
1401                 - More explicitly make the NMManager a singleton
1402
1403 2008-08-04  Dan Williams  <dcbw@redhat.com>
1404
1405         * libnm-util/nm-connection.c
1406           libnm-util/nm-connection.h
1407                 - (nm_connection_verify): return error on missing 'connection' setting
1408                         (found by Sjoerd Simons)
1409
1410 2008-08-04  Dan Williams  <dcbw@redhat.com>
1411
1412         Handle multiple concurrent PPP connections.
1413
1414         * src/ppp-manager/nm-ppp-manager.c
1415           src/ppp-manager/nm-ppp-manager.h
1416                 - (constructor): only PPP Manager request bus name once; each
1417                         NMPPPManager object gets a unique object path
1418                 - (nm_ppp_manager_class_init, get_property, set_property,
1419                    nm_ppp_manager_new, nm_ppp_manager_start): pass parent interface in
1420                         at construct time
1421                 - (impl_ppp_manager_need_secrets, impl_ppp_manager_set_state): don't
1422                         remove timeout until PPP manager gets an IP4 config
1423                 - (create_pppd_cmd_line): pass dbus object path as 'ipparam' so that
1424                         the plugin can call back to this specific PPP manager instance
1425
1426         * src/nm-device-ethernet.c
1427           src/nm-serial-device.c
1428                 - Pass parent device in nm_ppp_manager_new()
1429
1430         * src/nm-gsm-device.c
1431           src/nm-cdma-device.c
1432                 - (device_state_changed): don't close serial device on NEED_AUTH
1433                         state changed, that's not a failure case like the rest are
1434
1435         * src/ppp-manager/nm-pppd-plugin.c
1436                 - (nm_ip_up): always use index 0 into the ipcp options, because NM always
1437                         binds one interface to any pppd process, thus the correct index
1438                         is always 0; send PHASE_DEAD on error to alert NM immediately of
1439                         problems; try harder to get a peer address in spite of pppd
1440                 - (plugin_init): use 'ipparam' as the object path back to our specific
1441                         PPP manager instance
1442
1443 2008-08-04  Dan Williams  <dcbw@redhat.com>
1444
1445         * src/ppp-manager/nm-ppp-manager.c
1446                 - (impl_ppp_manager_need_secrets): rework to handle secrets better;
1447                         since the GSM and CDMA settings now implement need_secrets, we can
1448                         rely on them to do the right thing.  Where secrets are not required,
1449                         just pass empty strings back to the pppd plugin.
1450                 - (nm_ppp_manager_update_secrets): leak fix; don't need to dup the strings
1451                 - (impl_ppp_manager_set_ip4_config): clear the secrets tries counter
1452                         on successful IP4 config receipt
1453
1454 2008-08-04  Dan Williams  <dcbw@redhat.com>
1455
1456         * libnm-util/nm-setting-cdma.c
1457           libnm-util/nm-setting-gsm.c
1458                 - (verify): validate username & password if they exist
1459                 - (need_secrets): if username given, require a password too
1460
1461 2008-08-04  Dan Williams  <dcbw@redhat.com>
1462
1463         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1464                 - (create_dm_cmd_line): really don't listen on lo, despite what the
1465                         manpage says about --listen-address without --interface
1466                         (bgo #546033)
1467
1468 2008-08-01  Dan Williams  <dcbw@redhat.com>
1469
1470         * libnm-glib/nm-device.c
1471                 - (proxy_get_string): util function for querying a HAL property
1472                 - (get_ancestor_device): split out from get_product_and_vendor()
1473                 - (get_product_and_vendor): simplify; get more accurate pid & vid info
1474                         from PCI devices by querying subsys properties
1475                 - (nm_device_update_description): simplify
1476
1477 2008-08-01  Dan Williams  <dcbw@redhat.com>
1478
1479         * libnm-util/nm-setting-ip4-config.c
1480           libnm-util/nm-setting-ip4-config.h
1481                 - Make IPv4 methods reflect their usage; 'dhcp' -> 'auto' and
1482                         'autoip' -> 'link-local'.  VPN & PPP connections can also have IPv4
1483                         settings, and they don't necessarily use DHCP.
1484
1485         * src/NetworkManagerPolicy.c
1486           src/nm-device.c
1487           system-settings/plugins/ifcfg-fedora/reader.c
1488           system-settings/plugins/ifcfg-suse/parser.c
1489                 - Fixup for method changes
1490
1491 2008-07-31  Dan Williams  <dcbw@redhat.com>
1492
1493         * src/nm-activation-request.c
1494           src/vpn-manager/nm-vpn-connection.c
1495                 - Correct GetSecrets D-Bus pending call usage; the GetSecrets call
1496                         itself should be attached to the activation request or the VPN
1497                         connection, not the NMConnection object, since the call is not
1498                         expected to live as long as the NMConnection itself
1499
1500 2008-07-31  Dan Williams  <dcbw@redhat.com>
1501
1502         * src/nm-device-wifi.c
1503                 - (real_act_stage2_config): fix issue where association would continue
1504                         even though secrets were needed; 'goto out' was in wrong scope and
1505                         result of handle_auth_or_fail() should have been dumped directly to
1506                         'ret' to ensure that the association was postponed until secrets
1507                         are available
1508
1509 2008-07-31  Dan Williams  <dcbw@redhat.com>
1510
1511         * system-settings/plugins/ifcfg-fedora/plugin.c
1512           system-settings/plugins/ifcfg-fedora/reader.c
1513                 - Don't ignore unmanaged devices if their ifcfg file doesn't make a
1514                         valid NM connection
1515
1516 2008-07-29  Dan Williams  <dcbw@redhat.com>
1517
1518         * src/nm-gsm-device.c
1519                 - (automatic_registration_response, automatic_registration): recognize
1520                         denied registration and reorder responses
1521
1522 2008-07-29  Dan Williams  <dcbw@redhat.com>
1523
1524         * src/nm-serial-device.c
1525                 - (nm_serial_device_wait_for_reply): fix timeout calculation.  Since
1526                         time(2) is used for current time, which returns seconds, we shouldn't
1527                         be multiplying by 1000.
1528
1529 2008-07-28  Dan Williams  <dcbw@redhat.com>
1530
1531         Patch from Fabrice Bellet <fabrice@bellet.info>
1532
1533         * src/NetworkManagerSystem.c
1534                 - (route_in_same_subnet): mask addresses and compare them so that the
1535                         function actually does what it says it's going to do (rh #456685)
1536
1537 2008-07-27  Dan Williams  <dcbw@redhat.com>
1538
1539         * libnm-util/nm-setting-ip6-config.c
1540                 - (set_property): add missing break that caused routes to be overwritten
1541                         with addresses
1542
1543         * libnm-util/nm-setting-ip6-config.c
1544                 - (verify): validate routes and return GError everywhere on invalid setting
1545                 - (finalize): don't leak routes
1546                 - (set_property): add missing break that caused routes to be overwritten
1547                         with addresses
1548
1549 2008-07-27  Dan Williams  <dcbw@redhat.com>
1550
1551         * libnm-util/*
1552                 - Relicense to LGPLv2+
1553
1554 2008-07-27  Dan Williams  <dcbw@redhat.com>
1555
1556         * system-settings/plugins/ifcfg-fedora/reader.c
1557                 - (make_ip4_setting): fix parsing automatic configs
1558
1559 2008-07-27  Dan Williams  <dcbw@redhat.com>
1560
1561         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1562           src/nm-device.c
1563           src/ppp-manager/nm-ppp-manager.c
1564                 - Ensure child process gets reaped.  The child watch function may be
1565                         removed from the mainloop before the child gets killed, so we have
1566                         to make sure the child is reaped when it's told to die intentionally
1567
1568 2008-07-27  Dan Williams  <dcbw@redhat.com>
1569
1570         Patch from Roy Marples <roy@marples.name>
1571
1572         * src/dhcp-manager/nm-dhcp-dhcpcd.c
1573                 - (nm_dhcp_client_start): fixup for latest dhcpcd 4.0 RC
1574
1575 2008-07-27  Dan Williams  <dcbw@redhat.com>
1576
1577         * src/nm-gsm-device.c
1578                 - (init_modem_full): send "ATZ E0" after CPIN, because apparently some
1579                         Huawei devices turn echo back on after CPIN (rh #456770)
1580
1581 2008-07-24  Tambet Ingo  <tambet@gmail.com>
1582
1583         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_update_secrets): Add
1584         format argument to g_set_error() call.
1585
1586         * src/backends/interface_parser.[ch]: Remove.
1587
1588         * src/backends/Makefile.am: Remove unused files interface_parser.[ch].
1589
1590 2008-07-21  Dan Williams  <dcbw@redhat.com>
1591
1592         * src/ppp-manager/nm-ppp-manager.c
1593                 - (create_pppd_cmd_line): send 'noipdefault' on non-PPPoE connections
1594                         to prevent pppd from picking up some random local address from an
1595                         interface that doesn't have anything to do with the one we're
1596                         interested in (rh #455348)
1597
1598 2008-07-17  Dan Williams  <dcbw@redhat.com>
1599
1600         * libnm-util/nm-utils.c
1601                 - (string_to_utf8): general function for conversion to UTF-8 assisted
1602                         by locale
1603                 - (nm_utils_ssid_to_utf8): use string_to_utf8()
1604                 - (nm_utils_garray_to_string): ensure returned string is UTF-8 safe
1605
1606 2008-07-17  Dan Williams  <dcbw@redhat.com>
1607
1608         * introspection/Makefile.am
1609           introspection/nm-device.xml
1610           introspection/nm-dhcp4-config.xml
1611                 - Add bits for the DHCP4Config property of the device, and the DHCP4Config
1612                         itself
1613         * src/nm-device-interface.c
1614           src/nm-device-interface.h
1615                 - Add the DHCP4Config property
1616
1617         * src/nm-device.c
1618                 - Keep track of DHCP4 options via a new DHCP4Config property and notify
1619                         D-Bus clients when it changes
1620
1621         * src/nm-dhcp4-config.c
1622           src/nm-dhcp4-config.h
1623                 - Simple object to store DHCP4 options, export them over D-Bus, and
1624                         notify when they change
1625
1626         * src/dhcp-manager/nm-dhcp-manager.c
1627           src/dhcp-manager/nm-dhcp-manager.h
1628                 - (nm_dhcp_manager_set_dhcp4_config, copy_dhcp4_config_option): copy and
1629                         filter server-returned DHCP options into an NMDHCP4Config object
1630
1631 2008-07-16  Dan Williams  <dcbw@redhat.com>
1632
1633         * introspection/nm-device.xml
1634                 - Add device state reasons
1635
1636 2008-07-16  Dan Williams  <dcbw@redhat.com>
1637
1638         Patch from Roy Marples <roy@marples.name>
1639
1640         * configure.in
1641                 - Add --with-dhcp-client option
1642
1643         * src/dhcp-manager/Makefile.am
1644                 - pass DHCP_CLIENT_PATH on compile line
1645
1646         * src/dhcp-manager/nm-dhcp-manager.c
1647           src/dhcp-manager/nm-dhcp-manager.h
1648                 - Genericize for both dhcpcd and dhclient
1649
1650         * src/dhcp-manager/nm-dhcp-dhclient.c
1651                 - Move dhclient stuff out to it's own file from nm-dhcp-manager.c
1652
1653         * src/dhcp-manager/nm-dhcp-dhcpcd.c
1654                 - Implement support for dhcpcd too
1655
1656 2008-07-16  Tambet Ingo  <tambet@gmail.com>
1657
1658         * system-settings/src/nm-system-config-interface.c 
1659         (nm_system_config_interface_supports_add): Implement.
1660         (nm_system_config_interface_add_connection): Return a boolean to notify
1661         of errors.
1662
1663         * system-settings/src/nm-polkit-helpers.c: 
1664         * system-settings/src/nm-polkit-helpers.h: Move error declarations to
1665         a separate file.
1666
1667         * system-settings/src/dbus-settings.c (impl_settings_add_connection):
1668         Return an error when none of the plugins support add or if addition
1669         failed for some reason.
1670
1671         * system-settings/src/nm-system-config-error.h: 
1672         * system-settings/src/nm-system-config-error.c: New files, mostly moved
1673         here from nm-polkit-helpers.[ch].
1674
1675         * system-settings/src/Makefile.am: Build new files.
1676
1677         * system-settings/plugins/keyfile/reader.c 
1678         (read_array_of_array_of_uint): Make it more general so that it would
1679         work for routes as well.
1680
1681         * system-settings/plugins/keyfile/writer.c
1682         (write_array_of_array_of_uint): Ditto.
1683         Fix the netmask/prefix writing.
1684
1685         * system-settings/plugins/keyfile/plugin.c (add_connection): Return
1686         boolean to notify errors.
1687
1688         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c (update):
1689         Return more specific error.
1690         (delete): Ditto.
1691
1692 2008-07-11  Dan Williams  <dcbw@redhat.com>
1693
1694         Modify the NMDevice::state-changed signal to include the previous state
1695         and reason. Enables the applet to provide more information why device
1696         activation failed.
1697
1698 2008-07-09  Dan Williams  <dcbw@redhat.com>
1699
1700         * callouts/Makefile.am
1701           callouts/nm-avahi-autoipd-action.c
1702           callouts/nm-avahi-autoipd.conf
1703                 - avahi-autoipd callout to send options back to NM
1704
1705         * src/autoip.c
1706           src/autoip.h
1707                 - remove
1708
1709         * src/nm-device.c
1710           src/nm-device-private.h
1711           src/nm-manager.c
1712                 - Use avahi-autoipd for IPv4LL functionality rather than really crappy
1713                         old custom stuff
1714
1715 2008-07-07  Dan Williams  <dcbw@redhat.com>
1716
1717         * system-settings/plugins/ifcfg-fedora/reader.c
1718                 - (make_ip4_setting): handle DHCP_HOSTNAME; fix up prefix support to
1719                         handle PREFIX too; clean up
1720
1721 2008-07-07  Dan Williams  <dcbw@redhat.com>
1722
1723         Convert to using IPv4 prefixes instead of netmasks.
1724
1725 2008-07-03  Dan Williams  <dcbw@redhat.com>
1726
1727         * libnm-util/nm-setting-ip4-config.c
1728           libnm-util/nm-setting-ip4-config.h
1729                 - Add properties for DHCP Client Identifier and DHCP Hostname
1730
1731         * src/dhcp-manager/nm-dhcp-manager.c
1732           src/dhcp-manager/nm-dhcp-manager.h
1733                 - (nm_dhcp_manager_begin_transaction): take the connection's ip4-config
1734                         setting as an argument to pass on to the dhclient config file
1735                         creation function
1736                 - (nm_dhcp_manager_cancel_transaction_real): remove dhclient config when
1737                         DHCP is torn down
1738                 - (dhclient_run): punt config file handling to create_dhclient_config()
1739                 - (create_dhclient_config): create an interface-specific dhclient
1740                         config file since there may need to be interface-specific options
1741                         passed to dhclient
1742                 - (merge_dhclient_config): merge normal distro dhclient config file and
1743                         add options from the connection
1744                 - (nm_dhcp_device_new): generate the interface specific dhclient
1745                         config file path once
1746                 - (nm_dhcp_device_destroy): handle partially initialized objects; free
1747                         dhclient config file path
1748
1749         * src/nm-device.c
1750                 - (real_act_stage3_ip_config_start): pass ip4-config, if any, to the
1751                         DHCP manager when starting DHCP
1752
1753 2008-07-02  Dan Williams  <dcbw@redhat.com>
1754
1755         * libnm-util/nm-setting-8021x.c
1756                 - (verify): allow forcing the PEAP label to 0
1757
1758 2008-07-02  Dan Williams  <dcbw@redhat.com>
1759
1760         * introspection/nm-active-connection.xml
1761           introspection/nm-vpn-connection.xml
1762           libnm-glib/nm-active-connection.c
1763           src/nm-activation-request.c
1764           src/nm-active-connection.h
1765           src/vpn-manager/nm-vpn-connection.c
1766                 - Remove "SharedServiceName" and "SharedConnection" bits from the D-Bus
1767                         and libnm-glib API since sharing didn't get implemented that way
1768
1769 2008-07-02  Dan Williams  <dcbw@redhat.com>
1770
1771         * src/nm-device-wifi.c
1772                 - (can_scan): don't scan when a shared connection is activated since
1773                         that makes drivers mad (causing disconnects); also NM doesn't need
1774                         to hedge against disconnects by keeping up-to-date network topology
1775                         because the connection originates from the local machine, and thus
1776                         there should be no disconnects
1777
1778 2008-07-01  Dan Williams  <dcbw@redhat.com>
1779
1780         Fix mobile broadband username/password issues.  NM was never requesting
1781         mobile broadband secrets, nor was it passing back the username and password
1782         if it had them.
1783
1784         * marshallers/nm-marshal.list
1785                 - Add some new types for activation request objects
1786
1787         * src/nm-activation-request.c
1788           src/nm-activation-request.h
1789                 - (get_secrets_cb): pass the caller type in the signal
1790                 - (nm_act_request_request_connection_secrets): take a caller type, so
1791                         that GetSecrets() reply handlers know who asked for the secrets in
1792                         the first place; use secret hints too so the settings service can
1793                         figure out exactly what NM wants (ie, PIN or the PPP password)
1794
1795         * src/ppp-manager/nm-ppp-manager.c
1796           src/ppp-manager/nm-ppp-manager.h
1797                 - (impl_ppp_manager_need_secrets): nm_connection_need_secrets() won't
1798                         detect needed secrets when the secret could be blank, like GSM/CDMA
1799                         passwords.  So always ask for secrets, and send a hint as to what
1800                         secret we really want.
1801                 - (nm_ppp_manager_update_secrets): make function more generic by making
1802                         the device specific class figure out the username and password, and
1803                         accept an error argument to return back over D-Bus
1804
1805         * src/nm-device-wifi.c
1806                 - (link_timeout_cb, handle_auth_or_fail): update for changes to
1807                         nm_act_request_request_connection_secrets()
1808                 - (real_connection_secrets_updated): update for 'caller' changes
1809
1810         * src/nm-device.c
1811           src/nm-device.h
1812                 - (connection_secrets_updated_cb, connection_secrets_failed_cb): update
1813                         for 'caller' changes
1814
1815         * src/nm-device-ethernet.c
1816                 - (real_connection_secrets_updated): update for 'caller' changes and
1817                         move logic for getting PPPoE username and password here before
1818                         calling nm_ppp_manager_update_secrets()
1819                 - (link_timeout_cb, handle_auth_or_fail): update for changes to
1820                         nm_act_request_request_connection_secrets()
1821
1822         * src/nm-cdma-device.c
1823                 - (real_connection_secrets_updated): pass username and password back
1824                         to the PPP manager when required
1825
1826         * src/nm-gsm-device.c
1827                 - (enter_pin): send the required secret name to the settings service
1828                 - (real_connection_secrets_updated): pass username and password back
1829                         to the PPP manager when required
1830
1831 2008-06-30  Dan Williams  <dcbw@redhat.com>
1832
1833         * src/nm-device-wifi.c
1834                 - Consistently use NM_DEVICE_WIFI_GET_PRIVATE instead of self->priv
1835
1836 2008-06-30  Dan Williams  <dcbw@redhat.com>
1837
1838         Attempt to fix various issues causing rh #448889.  Mainly, to qualify for
1839         the DISCONNECTED state, the device must not be rfkilled _and_ have a valid
1840         priv->supplicant.iface.  When either condition is false, the device should
1841         transition back to UNAVAILABLE because it cannot be used.
1842
1843         * src/nm-device-wifi.c
1844                 - (constructor): cleanup; connect to supplicant manager here since the
1845                         supplicant manager is always around
1846                 - (supplicant_interface_acquire): rename from init_supplicant_interface,
1847                         ensure the supplicant manager is in the IDLE state
1848                 - (supplicant_interface_release): rename from cleanup_supplicant_interface,
1849                         cancel any pending scans too
1850                 - (real_bring_up): don't set up the supplicnat interface here, because
1851                         we need the supplicant interface at times when the device may not
1852                         be "up"
1853                 - (real_take_down): just remove the periodic source
1854                 - (schedule_scan): ensure a state that would peg the CPU doesn't happen
1855                 - (remove_supplicant_interface_connection_error_handler): cleanup; don't
1856                         do anything if there's no supplicant interface
1857                 - (cleanup_association_attempt): cleanup
1858                 - (supplicant_iface_state_cb_handler): request an immediate scan when
1859                         the interface enters the READY state; transition to UNAVAILABLE
1860                         state when the interface goes down because the device can't be used
1861                         without a supplicant interface
1862                 - (supplicant_mgr_state_cb_handler): if the supplicant goes away, clean
1863                         up and transition to UNAVAILABLE; if the supplicant becomes ready,
1864                         acquire the supplicant interface and transition to DISCONNECTED
1865                         if the radio isn't killed
1866                 - (nm_device_wifi_dispose): move most of device_cleanup() here
1867                 - (state_changed_cb): release any existing supplicant interface; if the
1868                         radio is enabled then try to acquire a new supplicant interface;
1869                         if the radio is enabled and a supplicant interface has been acquired,
1870                         we can transition to DISCONNECTED
1871                 - (nm_device_wifi_set_enabled): if bringing the hardware up failed,
1872                         don't enable the radio, because HAL probably lied to us about the
1873                         killswitch being off.  If bringing the hardware up worked, then
1874                         try to grab a supplicant interface, and if that was successful,
1875                         transition to DISCONNECTED
1876
1877 2008-06-30  Dan Williams  <dcbw@redhat.com>
1878
1879         * src/supplicant-manager/nm-supplicant-interface.c
1880                 - (request_scan_results, nm_supplicant_interface_dispose,
1881                    wpas_iface_query_scan_results): cleanup; scan_results_timeout is now
1882                         the id of the timeout, not a GSource
1883
1884 2008-06-30  Tambet Ingo  <tambet@gmail.com>
1885
1886         * src/backends/NetworkManagerSuSE.c (nm_system_activate_nis): Fix a 
1887         bunch of typoes introduced by "Patch from David Cantrell 
1888         <dcantrell@redhat.com> and me".
1889
1890 2008-06-30  Tambet Ingo  <tambet@gmail.com>
1891
1892         * src/nm-serial-device.c: 
1893         * src/nm-gsm-device.c: 
1894         * src/nm-cdma-device.c: Move the pending call handling to a common location
1895         in serial device. Handle setting device state to failed in one place as well.
1896
1897 2008-06-29  Dan Williams <dcbw@redhat.com>
1898
1899         * src/nm-hal-manager.c
1900                 - Rework killswitch handling to query killswitch status immediately
1901                         when the first killswitch is added, so that rfkill state is
1902                         known as early as possible
1903                 - Also treat failure of GetPower() as rfkill when the dbus method
1904                         call times out (but not when the HAL callout returns an error)
1905
1906 2008-06-26  Dan Williams <dcbw@redhat.com>
1907
1908         Patch from David Cantrell <dcantrell@redhat.com> and me
1909
1910         * include/nm-dbus-glib-types.h
1911                 - Add IP6 address types
1912
1913         * libnm-util/Makefile.am
1914           libnm-util/nm-setting-ip6-config.c
1915           libnm-util/nm-setting-ip6-config.h
1916                 - Add IP6 settings object
1917
1918         * libnm-util/nm-connection.c
1919                 - (register_default_settings): register ip6 settings object
1920
1921         * libnm-util/nm-utils.c
1922           libnm-util/nm-utils.h
1923                 - (nm_utils_ip6_addresses_from_gvalue, nm_utils_ip6_addresses_to_gvalue,
1924                    nm_utils_ip6_dns_from_gvalue, nm_utils_ip6_dns_to_gvalue): add
1925                         ip6 address conversion functions
1926         
1927 2008-06-26  Dan Williams <dcbw@redhat.com>
1928
1929         Patch from David Cantrell <dcantrell@redhat.com>
1930         
1931         * Use inet_ntop() and inet_pton() everwhere and check for errors
1932
1933 2008-06-26  Dan Williams <dcbw@redhat.com>
1934
1935         * Update FSF address in license headers (Michael Biebl <biebl@debian.org>)
1936
1937 2008-06-26  Dan Williams <dcbw@redhat.com>
1938
1939         Patch from Adel Gadllah <adel.gadllah@gmail.com>
1940
1941         * src/nm-device-wifi.c
1942                 - (link_timeout_cb): don't ignore disconnects due to scanning
1943                 - (supplicant_iface_connection_state_cb_handler): instead, schedule
1944                         a longer timeout when scanning; avoids case where supplicant can't
1945                         find the AP and just keeps scanning forever but isn't connected
1946
1947 2008-06-26  Dan Williams <dcbw@redhat.com>
1948
1949         Patch from Michael Biebl <biebl@debian.org>
1950
1951         * Clean up build system stuff
1952
1953 2008-06-23  Christian Persch  <chpe@gnome.org>
1954
1955         * vpn-daemons/openvpn/auth-dialog/gnome-two-password-dialog.c:
1956         * vpn-daemons/openvpn/auth-dialog/gnome-two-password-dialog.h:
1957         * vpn-daemons/pptp/auth-dialog-general/anonymous-auth-module.c:
1958         (impl_get_object):
1959         * vpn-daemons/pptp/auth-dialog-general/chap-auth-module.c:
1960         (impl_get_object):
1961         * vpn-daemons/pptp/auth-dialog-general/gnome-generic-auth-dialog.c:
1962         * vpn-daemons/pptp/auth-dialog-general/gnome-generic-auth-dialog.h:
1963         * vpn-daemons/pptp/auth-dialog-general/mschapv2-auth-module.c:
1964         (impl_get_object):
1965         * vpn-daemons/pptp/auth-dialog/gnome-two-password-dialog.c:
1966         * vpn-daemons/pptp/auth-dialog/gnome-two-password-dialog.h:
1967         * vpn-daemons/pptp/properties/nm-ppp-properties.c: (impl_setup):
1968         * vpn-daemons/pptp/properties/vpnui_impl.c: (impl_get_object):
1969         * vpn-daemons/pptp/properties/vpnui_opt.c:
1970         (vpnui_opt_connect_signals):
1971         * vpn-daemons/pptp/properties/vpnui_opt.h:
1972         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.c:
1973         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.h: Don't use
1974         deprecated gtk type macros. Bug #539325.
1975
1976 2008-06-20  Dan Williams  <dcbw@redhat.com>
1977
1978         * libnm-glib/nm-vpn-plugin-ui-interface.c
1979           libnm-glib/nm-vpn-plugin-ui-interface.h
1980                 - 'validity-changed' -> 'changed' to work better with the connection
1981                         editor.  Plugin UI widgets should emit 'changed' whenever their
1982                         UI values change in a meaningful way.
1983                 - (nm_vpn_plugin_ui_widget_interface_update_connection): the
1984                         update_connection member now returns validity of the UI widget
1985
1986 2008-06-20  Tambet Ingo  <tambet@gmail.com>
1987
1988         * libnm-util/nm-connection.c (nm_connection_duplicate): Implement.
1989
1990 2008-06-17  Dan Williams  <dcbw@redhat.com>
1991
1992         * libnm-glib/nm-vpn-plugin-ui-interface.c
1993           libnm-glib/nm-vpn-plugin-ui-interface.h
1994                 - Add "desc" property for longer descriptions of the VPN plugin
1995
1996 2008-06-16  Dan Williams  <dcbw@redhat.com>
1997
1998         * configure.in
1999           libnm-glib/libnm_glib_vpn.pc.in
2000                 - add a .pc file for libnm_glib_vpn
2001
2002         * libnm-glib/nm-vpn-plugin-ui-interface.c
2003           libnm-glib/nm-vpn-plugin-ui-interface.h
2004                 - Move the glib/GNOME VPN UI plugin interface into libnm-glib and
2005                         rework it substantially
2006
2007 2008-06-12  Dan Williams  <dcbw@redhat.com>
2008
2009         Add a GError argument to nm_connection_verify() and nm_setting_verify(),
2010         and add error enums to each NMSetting subclass.  Each NMSetting subclass now
2011         returns a descriptive GError when verification fails.
2012
2013 2008-06-11  Dan Williams  <dcbw@redhat.com>
2014
2015         Patch from Tambet Ingo <tambet@gmail.com>
2016
2017         * libnm-util/nm-setting-gsm.c
2018                 - (verify): validate APN
2019
2020         * src/nm-gsm-device.c
2021                 - (manual_registration_done): start setting APN if needed
2022                 - (set_apn, set_apn_done): set the APN
2023                 - (do_dial): use the APN when dialing
2024
2025 2008-06-11  Dan Williams  <dcbw@redhat.com>
2026
2027         * src/NetworkManagerSystem.c
2028                 - (nm_system_device_set_ip4_route,
2029                    nm_system_device_replace_default_ip4_route): check for the right
2030                         return value from rtnl_route_add() to know when to add a gateway
2031                         route (from Tambet)
2032
2033 2008-06-11  Dan Williams  <dcbw@redhat.com>
2034
2035         * src/NetworkManagerPolicy.c
2036                 - do_ipt_cmd -> do_cmd
2037                 - (sharing_init): use do_cmd() instead of system()
2038
2039 2008-06-10  Dan Williams  <dcbw@redhat.com>
2040
2041         The grand 802-11-wireless rename.  Get rid of the 802-11/80211/802_11 bits
2042         and use "wifi" everwhere instead.
2043
2044 2008-06-10  Dan Williams  <dcbw@redhat.com>
2045
2046         The grand 802-3-ethernet rename.  Get rid of the 802-3/8023/802_3 bits.
2047
2048 2008-06-10  Dan Williams  <dcbw@redhat.com>
2049
2050         Patch from Tambet Ingo <tambet@gmail.com>
2051
2052         * src/ppp-manager/nm-ppp-manager.c: Add ppp stats monitoring, signal the
2053                 changes.
2054
2055         * src/nm-serial-device.c: Monitor "ppp-stats" signals from NMPPPManager. Add
2056                 a signal to emit these changes over dbus.
2057
2058         * src/Makefile.am: Genereate nm-serial-device-glue.
2059
2060         * libnm-glib/nm-serial-device.[ch]: Implement.
2061
2062         * libnm-glib/nm-cdma-device.[ch]
2063           libnm-glib/nm-gsm-device.[ch]: Inherit from NMSerialDevice.
2064
2065         * libnm-glib/Makefile.am: Add nm-serial-device.[ch].
2066
2067         * introspection/nm-device-serial.xml: Implement.
2068
2069         * introspection/all.xml: Fix a couple of typos, add nm-device-serial.xml.
2070
2071         * introspection/Makefile.am: Add nm-device-serial.xml.
2072
2073         * include/NetworkManager.h: Add a DBus interface for serial device.
2074
2075 2008-06-10  Dan Williams  <dcbw@redhat.com>
2076
2077         * configure.in
2078                 - Add TARGET_* define to config.h to distinguish distros
2079
2080         * src/dhcp-manager/nm-dhcp-manager.c
2081                 - (dhclient_run): use distro-specific path for dhclient config file
2082
2083 2008-06-09  Dan Williams  <dcbw@redhat.com>
2084
2085         * src/dnsmasq-manager/nm-dnsmasq-manager.c
2086           src/dnsmasq-manager/nm-dnsmasq-manager.h
2087                 - (create_dm_cmd_line): use the IP4 address of the ip4-config to
2088                         calculate the addresses passed to dnsmasq instead of hard-coding
2089                         them
2090
2091         * src/nm-device.c
2092                 - (nm_device_new_ip4_shared_config): be somewhat dynamic when choosing
2093                         IP addresses for shared connections to guard against shared
2094                         connection address collisions
2095                 - (real_act_stage4_get_ip4_config): handle possible NULL ip4-configs on
2096                         error conditions
2097                 - (nm_device_activate_stage5_ip_config_commit): pass ip4-config to
2098                         the dnsmasq manager
2099
2100 2008-06-09  Dan Williams  <dcbw@redhat.com>
2101
2102         * src/NetworkManagerPolicy.c
2103                 - (update_routing_and_dns): set the default connection _after_ unsetting
2104                         default on all non-default connections so that two connections can
2105                         never be default at the same time
2106                 - (device_state_changed): start and stop connection sharing when
2107                         needed
2108                 - (active_connection_default_changed): restart or stop sharing when
2109                         the default connection changes to keep shared connections always
2110                         NAT-ed through the default connection
2111                 - (check_sharing): handle activation/deactivation of shared connections
2112                 - (sharing_restart): atom-bomb approach to connection sharing until we
2113                         can use libnl; reinit all sharing when the default connection or
2114                         shared connections change
2115                 - (sharing_init, sharing_stop): evil functions that init and deinit
2116                         iptables
2117
2118 2008-06-09  Dan Williams  <dcbw@redhat.com>
2119
2120         * src/nm-activation-request.c
2121           src/nm-activation-request.h
2122                 - (nm_act_request_set_shared, nm_act_request_get_shared,
2123                    nm_act_request_get_device): new functions to facilitate connection
2124                         sharing
2125
2126 2008-06-09  Dan Williams  <dcbw@redhat.com>
2127
2128         * src/nm-device.c
2129                 - (clear_act_request): unset the 'default' property of the activation
2130                         request when clearing it to ensure the property changed signal gets
2131                         delivered and handled
2132
2133 2008-06-09  Dan Williams  <dcbw@redhat.com>
2134
2135         * libnm-glib/nm-device-802-11-wireless.c
2136                 - (access_point_removed_proxy): actually unref the AP after removing
2137                         it from the device's AP list.  Fixes refcounting bug for APs that
2138                         caused them to get mixed up in the applet's menu.
2139
2140 2008-06-09  Tambet Ingo  <tambet@gmail.com>
2141
2142         * src/dhcp-manager/nm-dhcp-manager.c (finalize): Free private members.
2143         (nm_dhcp_device_destroy): Destroy the device options hash table.
2144
2145 2008-06-06  Dan Williams <dcbw@redhat.com>
2146
2147         * system-settings/src/nm-polkit-helpers.c
2148                 - (create_polkit_context): in PolicyKit 0.6, polkit_context_init() will
2149                         unref the context if the initialization fails; also avoid spew when
2150                         the error isn't set
2151
2152 2008-06-06  Dan Williams <dcbw@redhat.com>
2153
2154         Patch from Tambet Ingo  <tambet@gmail.com>
2155
2156         * src/NetworkManagerSystem.c
2157           src/NetworkManagerSystem.h
2158                 - (nm_system_device_add_ip4_route_via_device_with_iface): remove
2159                 - (nm_system_device_set_from_ip4_config): remove unused route_to_iface
2160                 - (nm_system_device_set_ip4_route): clean up
2161                 - (nm_system_vpn_device_set_from_ip4_config): clean up, add VPN routes
2162
2163         * src/nm-device.c
2164                 - (nm_device_set_ip4_config): remove unused route_to_iface bits
2165
2166         * src/vpn-manager/nm-vpn-connection.c
2167                 - (ip_address_to_string): new function
2168                 - (print_vpn_config): use ip_address_to_string
2169                 - (merge_vpn_routes): add user-defined routes to the ip4 config
2170                 - (nm_vpn_connection_ip4_config_get): add routes the VPN server sent
2171
2172         * include/NetworkManagerVPN.h
2173                 - Add 'routes' key
2174
2175 2008-06-05  Dan Williams <dcbw@redhat.com>
2176
2177         Patch from Markus Becker <mab@comnets.uni-bremen.de>
2178
2179         * test/nm-tool.c
2180                 - Show which device is the default device
2181
2182 2008-06-05  Tambet Ingo  <tambet@gmail.com>
2183
2184         Fix memory leaks.
2185
2186         * system-settings/src/nm-system-config-hal-manager.c (get_type_for_udi):
2187         Free data returned from dbus method call.
2188
2189         * system-settings/src/nm-polkit-helpers.c (check_polkit_privileges):
2190         dbus_g_method_get_sender() returns a duplicated string, free it 
2191         when done.
2192         (check_polkit_privileges): Looks like policykit sometimes returns
2193         error and non-null return value, don't leak errors in that case.
2194
2195         * system-settings/src/main.c (find_plugin): Don't leak existing 
2196         plugin names.
2197         (load_stuff): Don't leak device list and list items.
2198         (have_connection_for_device): Don't leak connection list.
2199
2200         * system-settings/plugins/keyfile/reader.c (read_one_setting_value):
2201         Free the data received from g_keyfile_get_*.
2202
2203         * system-settings/plugins/ifcfg-suse/parser.c (READ_WEP_KEY): Free
2204         the key when the security object is updated.
2205
2206         * src/supplicant-manager/nm-supplicant-interface.c (scan_results_cb):
2207         Free data returned from dbus method call.
2208         (iface_state_cb): Ditto.
2209         (add_network_cb): Ditto.
2210         (nm_supplicant_interface_add_cb): Don't make another copy of already
2211         duplicated object path.
2212         (nm_supplicant_interface_add_to_supplicant): Free the driver GValue
2213         when done.
2214
2215         * src/supplicant-manager/nm-supplicant-config.c 
2216         (ADD_STRING_LIST_VAL): Fix a memory leak.
2217
2218         * src/nm-manager.c (free_get_settings_info): Free the allocated
2219         memory slice.
2220         (list_connections_cb): Free data returned from dbus method call.
2221         (system_settings_get_unmanaged_devices_cb): Ditto.
2222
2223         * src/nm-device-802-11-wireless.c (device_cleanup): Free ssid.
2224
2225         * system-settings/plugins/ifcfg-suse/shvar.c (svCloseFile): 
2226         * system-settings/plugins/ifcfg-fedora/shvar.c (svCloseFile): 
2227         * src/backends/shvar.c (svCloseFile): Free the duplicated content
2228         of the GList.
2229
2230         * libnm-util/nm-setting.c (nm_setting_from_hash): Free the constructor
2231         arguments after the object is created.
2232
2233 2008-06-04  Dan Williams <dcbw@redhat.com>
2234
2235         * libnm-util/Makefile.am
2236                 - Don't distribute nm-param-spec-specialized.h
2237
2238 2008-06-02  Tambet Ingo  <tambet@gmail.com>
2239
2240         * libnm-util/nm-setting-ip4-config.[ch]: Add static routes property.
2241
2242         * src/nm-ip4-config.[ch]: Store the static routes as a list of
2243         NMIP4Address, update the getters and setters.
2244
2245         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get_ip4_config):
2246         Use the updated NMIP4Config routes api.
2247
2248         * src/NetworkManagerUtils.c (nm_utils_merge_ip4_config): Merge
2249         static routes as well.
2250
2251         * src/NetworkManagerSystem.c (netmask_to_prefix): Implement.
2252         (nm_system_device_set_from_ip4_config): Use the updated NMIP4Config
2253         routes api.
2254
2255 2008-05-30  Dan Williams <dcbw@redhat.com>
2256
2257         * src/named-manager/nm-named-manager.c
2258           src/named-manager/nm-named-manager.h
2259                 - Remove stale/obsolete bits for controlling bind over DBus
2260
2261 2008-05-29  Dan Williams <dcbw@redhat.com>
2262
2263         * src/dnsmasq-manager/nm-dnsmasq-manager.c
2264           src/dnsmasq-manager/nm-dnsmasq-manager.h
2265                 - (nm_dnsmasq_manager_new): move iface argument here
2266                 - (constructor): remove, not needed
2267                 - (get_pidfile_for_iface, create_dm_cmd_line, kill_existing_for_iface,
2268                    nm_dnsmasq_manager_start, nm_dnsmasq_manager_stop): use priv->pidfile
2269
2270         * src/nm-device.c
2271                 - (real_act_stage4_get_ip4_config,
2272                    nm_device_activate_stage5_ip_config_commit): fix for dnsmasq manager
2273                         changes
2274
2275 2008-05-29  Dan Williams <dcbw@redhat.com>
2276
2277         * src/nm-device.c
2278                 - (dnsmasq_state_changed_cb): new function; fail the connection if
2279                         something happens to dnsmasq
2280                 - (nm_device_new_ip4_shared_config): new function; create a new
2281                         ip4-config for shared connections.  Shared connections always use a
2282                         fixed static IP address.
2283                 - (real_act_stage4_get_ip4_config): handle shared connections; fix
2284                         autoip connections by actually using the returned ip4-config and
2285                         not leaking it
2286                 - (nm_device_activate_stage5_ip_config_commit): start dnsmasq for shared
2287                         connections
2288                 - (nm_device_deactivate_quickly, nm_device_dispose): terminate dnsmasq
2289                         if its active
2290
2291 2008-05-29  Dan Williams <dcbw@redhat.com>
2292
2293         * src/nm-device-802-11-wireless.c
2294                 - (real_get_best_auto_connection): auto-activate 'shared' method
2295                         connections too
2296
2297 2008-05-29  Dan Williams <dcbw@redhat.com>
2298
2299         * libnm-util/nm-setting-ip4-config.c
2300           libnm-util/nm-setting-ip4-config.h
2301                 - Add a 'shared' method to indicate that this connection should be
2302                         brought up with a DHCP and proxy DNS server to facilitate
2303                         connection sharing.
2304                 - (verify): 'shared' method doesn't allow DNS or searches either
2305
2306 2008-05-29  Dan Williams <dcbw@redhat.com>
2307
2308         * configure.in
2309           src/Makefile.am
2310           src/dnsmasq-manager/Makefile.am
2311           src/dnsmasq-manager/nm-dnsmasq-manager.c
2312           src/dnsmasq-manager/nm-dnsmasq-manager.h
2313                 - Add a dnsmasq daemon manager to facilitate connection sharing
2314
2315 2008-05-29  Dan Williams <dcbw@redhat.com>
2316
2317         * src/nm-device-private.h
2318                 - Remove unused prototypes and clean up
2319
2320         * src/nm-device.c
2321                 - Remove anything related to system_config_data, which is no longer used
2322                 - (nm_device_new_ip4_autoip_config): make static
2323
2324 2008-05-29  Tambet Ingo  <tambet@gmail.com>
2325
2326         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c
2327         (file_changed): Fix a bug where suse system settings plugin didn't
2328         update the connections automatically when the files changed.
2329
2330 2008-05-28  Dan Williams  <dcbw@redhat.com>
2331
2332         Revert r3697 (adhoc-create property patch); it's the wrong way to do this.
2333
2334 2008-05-28  Dan Williams  <dcbw@redhat.com>
2335
2336         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2337
2338         * src/NetworkManagerSystem.c
2339                 - (nm_system_device_flush_ip4_routes_with_iface): implement with libnl
2340                 - (nm_system_vpn_device_set_from_ip4_config): don't flush routes here,
2341                         was causing -EINVAL errors since the libnl code actually does flush
2342                         the routes on VPN interfaces now
2343
2344         * src/backends/NetworkManagerArch.c
2345           src/backends/NetworkManagerDebian.c
2346           src/backends/NetworkManagerFrugalware.c
2347           src/backends/NetworkManagerGeneric.c
2348           src/backends/NetworkManagerGentoo.c
2349           src/backends/NetworkManagerMandriva.c
2350           src/backends/NetworkManagerPaldo.c
2351           src/backends/NetworkManagerRedHat.c
2352           src/backends/NetworkManagerSlackware.c
2353           src/backends/NetworkManagerSuSE.c
2354                 - (nm_system_device_flush_ip4_routes,
2355                    nm_system_device_flush_ip4_routes_with_iface): remove
2356
2357 2008-05-28  Dan Williams  <dcbw@redhat.com>
2358
2359         * libnm-util/nm-setting-wireless.c
2360           libnm-util/nm-setting-wireless.h
2361                 - (set_property, get_property, nm_setting_wireless_class_init): add the
2362                         'adhoc-create' property, which when TRUE indicates that NM should
2363                         create this connection as an adhoc wifi network if it's not found
2364                         as an adhoc network during scanning.  Can be used to auto-create
2365                         adhoc networks when used in combination with autoconnect.
2366
2367 2008-05-28  Tambet Ingo  <tambet@gmail.com>
2368
2369         Patch from Dennis Noordsij <dennis.noordsij@helsinki.fi>.
2370
2371         * src/nm-gsm-device.c: Don't try to reset the modem before PIN is
2372         checked, it doesn't work on some devices.
2373
2374 2008-05-28  Tambet Ingo  <tambet@gmail.com>
2375
2376         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_stop): Make sure 
2377         pppd gets killed, if SIGTERM doesn't do it's job, SIGKILL it.
2378
2379         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get_ip4_config):
2380         Use inet_aton() everywhere to improve error detection.
2381         Don't fall back to 'dhcp_server_identifier' if the gateway is not
2382         provided.
2383
2384 2008-05-26  Tambet Ingo  <tambet@gmail.com>
2385
2386         * system-settings/plugins/ifcfg-suse/plugin.c (get_unamanged_devices_cb):
2387         Fix a typo.
2388
2389 2008-05-26  Tambet Ingo  <tambet@gmail.com>
2390
2391         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_get_service): Fix a
2392         reference counting issue.
2393
2394 2008-05-23  Dan Williams  <dcbw@redhat.com>
2395
2396         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2397
2398         * src/backends/NetworkManagerGeneric.c
2399                 - (nm_generic_enable_loopback): use libnl
2400
2401 2008-05-23  Dan Williams  <dcbw@redhat.com>
2402
2403         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2404
2405         * src/NetworkManagerSystem.h
2406           src/backends/NetworkManagerArch.c
2407           src/backends/NetworkManagerDebian.c
2408           src/backends/NetworkManagerFrugalware.c
2409           src/backends/NetworkManagerGentoo.c
2410           src/backends/NetworkManagerMandriva.c
2411           src/backends/NetworkManagerPaldo.c
2412           src/backends/NetworkManagerRedHat.c
2413           src/backends/NetworkManagerSlackware.c
2414           src/backends/NetworkManagerSuSE.c
2415                 - (nm_system_device_has_active_routes, nm_system_flush_loopback_routes,
2416                    nm_system_flush_arp_cache): remove, unused
2417
2418         * src/backends/NetworkManagerGeneric.c
2419           src/backends/NetworkManagerGeneric.h
2420                 - (nm_generic_device_has_active_routes, nm_generic_flush_loopback_routes,
2421                    nm_generic_flush_arp_cache): remove, unused
2422
2423 2008-05-23  Dan Williams  <dcbw@redhat.com>
2424
2425         * system-settings/plugins/ifcfg-fedora/reader.c
2426                 - (make_ip4_setting): honor PEERDNS setting
2427
2428 2008-05-23  Dan Williams  <dcbw@redhat.com>
2429
2430         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2431
2432         * src/NetworkManagerSystem.c
2433                 - (nm_system_device_flush_ip4_addresses_with_iface): implement with
2434                         libnl
2435
2436         * src/backends/NetworkManagerArch.c
2437           src/backends/NetworkManagerDebian.c
2438           src/backends/NetworkManagerFrugalware.c
2439           src/backends/NetworkManagerGentoo.c
2440           src/backends/NetworkManagerMandriva.c
2441           src/backends/NetworkManagerPaldo.c
2442           src/backends/NetworkManagerRedHat.c
2443           src/backends/NetworkManagerSlackware.c
2444           src/backends/NetworkManagerSuSE.c
2445                 - (nm_system_device_flush_ip4_addresses,
2446                    nm_system_device_flush_ip4_addresses_with_iface): remove
2447
2448         * src/backends/NetworkManagerGeneric.c
2449                 - (nm_generic_device_flush_ip4_addresses,
2450                    nm_generic_device_flush_ip4_addresses_with_iface): remove
2451
2452 2008-05-23  Dan Williams  <dcbw@redhat.com>
2453
2454         * src/supplicant-manager/nm-supplicant-settings-verify.c
2455                 - Switch 'bssid' from bytes to keyword type
2456                 - (validate_type_keyword): allow NULL keyword lists
2457
2458         * src/supplicant-manager/nm-supplicant-config.c
2459                 - (nm_supplicant_config_add_setting_wireless): convert the bssid from
2460                         a byte array to string form, which is what the supplicant expects
2461
2462 2008-05-23  Tambet Ingo  <tambet@gmail.com>
2463
2464         Add a flag to NMSettingIP4Config to make it possible to ignore the DNS
2465         information received from DHCP.
2466
2467         * libnm-util/nm-setting-ip4-config.c: Add a new membet "ignore_dhcp_dns"
2468         to make it possible to ignore the DNS information (both servers and 
2469         searches) returned by DHCP server.
2470
2471         * src/NetworkManagerUtils.c (nm_utils_merge_ip4_config): Reset the
2472         name servers and searches if "ignore_dhcp_dns" is set.
2473
2474         * src/nm-ip4-config.c (nm_ip4_config_reset_nameservers)
2475         (nm_ip4_config_reset_searches): Implement.
2476
2477 2008-05-22  Dan Williams  <dcbw@redhat.com>
2478
2479         Remove anything mDNS related.  This is better done from a distro-specific
2480         dispatcher script.  Plus, any distro using avahi doesn't need to restart
2481         avahi, since avahi can handle interface changes just fine using netlink.
2482
2483         * configure.in
2484                 - Remove --with-mdns-provider
2485
2486         * src/NetworkManagerPolicy.c
2487                 - (global_state_changed): don't restart the mdns provider
2488
2489         * src/NetworkManagerSystem.h
2490           src/backends/NetworkManagerArch.c
2491           src/backends/NetworkManagerDebian.c
2492           src/backends/NetworkManagerFrugalware.c
2493           src/backends/NetworkManagerGentoo.c
2494           src/backends/NetworkManagerMandriva.c
2495           src/backends/NetworkManagerPaldo.c
2496           src/backends/NetworkManagerRedHat.c
2497           src/backends/NetworkManagerSlackware.c
2498           src/backends/NetworkManagerSuSE.c
2499                 - (nm_system_restart_mdns_responder): remove
2500
2501         * src/backends/NetworkManagerGeneric.c
2502           src/backends/NetworkManagerGeneric.h
2503                 - (nm_generic_restart_mdns_responder): remove
2504
2505 2008-05-22  Dan Williams  <dcbw@redhat.com>
2506
2507         * configure.in
2508                 - clean up crypto options; just use --with-crypto=nss or
2509                         --with-crypto=gnutls
2510
2511 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2512
2513         * src/nm-manager.c (impl_manager_sleep): No need to schedule the sync
2514         anymore, do it right away.
2515
2516 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2517
2518         * src/nm-gsm-device.c (device_state_changed): Make sure we don't leave the
2519         serial device open when we're not connecting or connected.
2520
2521         * src/nm-cdma-device.c (device_state_changed): Ditto.
2522
2523 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2524
2525         Don't remove all devices on waking up, sync with HAL.
2526
2527         * src/nm-manager.c (nm_manager_udi_is_managed): Implement.
2528         (sync_devices): Implement, based on hal_manager_hal_reappeared_cb.
2529         (hal_manager_hal_reappeared_cb): Just call sync_devices.
2530
2531 2008-05-21  Tambet Ingo  <tambet@gmail.com>
2532
2533         * src/NetworkManagerSystem.c (nm_system_device_replace_default_ip4_route):
2534         If the default gateway is unreachable, add a route to gateway and try
2535         again.
2536
2537 2008-05-20  Dan Williams  <dcbw@redhat.com>
2538
2539         * system-settings/plugins/ifcfg-fedora/reader.c
2540                 - (add_one_wep_key): handle ASCII WEP keys too (rh #293111)
2541
2542 2008-05-19  Dan Williams  <dcbw@redhat.com>
2543
2544         * system-settings/plugins/ifcfg-fedora/reader.c
2545                 - (make_ip4_setting): get a fallback gateway from /etc/sysconfig/network
2546                         if the ifcfg doesn't specify one (rh #446527)
2547
2548 2008-05-19  Dan Williams  <dcbw@redhat.com>
2549
2550         Make the system settings service exit when the bus goes away.  Since it's
2551         a bus-activated service, it's lifetime is limited to the bus that activated
2552         it (rh #444976).
2553
2554         * system-settings/src/Makefile.am
2555           system-settings/src/nm-system-config-hal-manager-private.h
2556                 - Remove nm-system-config-hal-manager-private.h
2557
2558         * system-settings/src/nm-system-config-hal-manager.c
2559                 - (nm_system_config_hal_manager_reinit_dbus,
2560                    nm_system_config_hal_manager_deinit_dbus): remove
2561
2562         * system-settings/src/main.c
2563                 - (dbus_reconnect): remove
2564                 - (dbus_cleanup): don't tell the HAL manager to deinit dbus
2565                 - (destroy_cb): just quit when the bus goes away
2566                 - (start_dbus_service, dbus_init): simplify
2567                 - (main): destroy the wired devices hash table after destroying
2568                         the HAL manager so we don't have to disconnect signals from the
2569                         HAL manager
2570
2571 2008-05-15  Tambet Ingo  <tambet@gmail.com>
2572
2573         Move crypto functions from nm-applet to libnm-util.
2574
2575         * libnm-util/nm-setting-8021x.c (nm_setting_802_1x_set_ca_cert)
2576         (nm_setting_802_1x_set_client_cert)
2577         (nm_setting_802_1x_set_phase2_ca_cert)
2578         (nm_setting_802_1x_set_phase2_client_cert)
2579         (nm_setting_802_1x_set_private_key)
2580         (nm_setting_802_1x_set_phase2_private_key): Implement. Given a certificate
2581         file (or private key and it's password), read the certificate data.
2582
2583         * libnm-util/crypto_nss.c: 
2584         * libnm-util/crypto_gnutls.c: 
2585         * libnm-util/crypto.[ch]: Move here from nm-applet.
2586
2587         * configure.in: Check for NSS and gnutls here (moved here from nm-applet).
2588
2589         * system-settings/plugins/ifcfg-suse/parser.c (read_wpa_eap_settings):
2590         Imlement WPA-EAP configuration reading from sysconfig.
2591
2592 2008-05-16  Dan Williams  <dcbw@redhat.com>
2593
2594         * src/nm-device-802-11-wireless.c
2595                 - (nm_device_802_11_wireless_set_enabled): request a scan after enabling
2596                         wireless
2597
2598 2008-05-14  Dan Williams  <dcbw@redhat.com>
2599
2600         Fix Linus' bug in rh #134886
2601
2602         * src/nm-device-802-3-ethernet.c
2603                 - (constructor): request initial carrier state
2604
2605         * src/nm-netlink-monitor.c
2606                 - (nm_netlink_monitor_request_status): schedule emission of carrier
2607                         signals after refilling the link cache.  Because the refill is a 
2608                         synchronous operation, the normal message hander won't get called
2609                         since libnl has already consumed the messages.
2610                 - (deferred_emit_carrier_state): emit carrier states from an idle handler
2611
2612 2008-05-14  Dan Williams  <dcbw@redhat.com>
2613
2614         * src/NetworkManagerSystem.c
2615                 - (nm_system_device_is_up_with_iface): clean up
2616
2617 2008-05-13  Dan Williams  <dcbw@redhat.com>
2618
2619         Fix refcounting issues over sleep/wake when a VPN connection was active that
2620         caused NM to try registering an object path for a device upon wake that was
2621         the same as an already registered object path.
2622
2623         * src/nm-device.c
2624                 - (nm_device_take_down): properly handle cases where the device is
2625                         no longer active but was just active, and therefore must be
2626                         deactivated.  When a device moves to unmanaged mode, this function
2627                         previously would not deactivate the device, because the state was
2628                         already unmanaged by the time this function was called.
2629
2630         * src/vpn-manager/nm-vpn-connection.c
2631                 - (device_state_changed): properly handle multiple devices states in
2632                         which the device is now deactivated.  Code previously didn't handle
2633                         transitions to the UNAVAILABLE (like rfkill or carrier off) and
2634                         UNMANAGED states.
2635
2636 2008-05-13  Dan Williams  <dcbw@redhat.com>
2637
2638         * src/nm-device-private.h
2639           src/nm-device.c
2640                 - (nm_device_hw_bring_up, nm_device_hw_take_down): export
2641
2642         * src/nm-device-802-11-wireless.c
2643                 - (nm_device_802_11_wireless_set_enabled): take devices up
2644                         and down as appropriate for the rfkill state
2645
2646 2008-05-13  Dan Williams  <dcbw@redhat.com>
2647
2648         * marshallers/nm-marshal.list
2649                 - Add VOID:POINTER,STRING marshaller for ifcfg-fedora plugin
2650
2651         * system-settings/plugins/ifcfg-fedora/Makefile.am
2652           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.c
2653           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.h
2654                 - Implement a minimal inotify helper for watch paths for IN_CLOSE_WRITE
2655                         events.  Solely for use watching ifcfg files to pick up changes
2656                         to their hardlinks, since GIO doesn't support this yet (bgo #532815)
2657
2658         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
2659                 - (nm_ifcfg_connection_class_init): new 'ifcfg-changed' signal when the
2660                         file contents change
2661                 - (finalize): clean up inotify watches
2662                 - (nm_ifcfg_connection_new): store keyfile; inotify watch the keyfile
2663                         and the connection ifcfg for changes on their hardlinks
2664                 - (files_changed_cb): proxy the changed signal back out to listeners
2665
2666         * system-settings/plugins/ifcfg-fedora/plugin.c
2667                 - (dir_changed): 
2668                 - (connection_ifcfg_changed): re-read the connection when the ifcfg
2669                         changes
2670                 - (read_one_connection): connect to change signals on the new connection
2671                 - (dir_changed, connection_changed_handler,
2672                    handle_connection_remove_or_new): break out connection change
2673                         handling and connection new/remove handling so it can be used from
2674                         both the GFileMonitor callback and the NMIfcfgConnection changed
2675                         signals
2676
2677         * system-settings/plugins/ifcfg-fedora/reader.c
2678           system-settings/plugins/ifcfg-fedora/reader.h
2679                 - (connection_from_file): return the keyfile path the connection would use
2680
2681 2008-05-13  Tambet Ingo  <tambet@gmail.com>
2682
2683         * system-settings/src/nm-polkit-helpers.c (create_polkit_context): Use a 
2684         single PolKitContext which is shared by all. PolKitContext::unref leaks
2685         just about everything, including all open file descriptiors and results
2686         in 99% cpu usage when data arrives to any of the fds that don't belong
2687         to any context anymore.
2688
2689 2008-05-12  Dan Williams  <dcbw@redhat.com>
2690
2691         * gfilemonitor/glocaldirectorymonitor.c
2692           gfilemonitor/glocaldirectorymonitor.h
2693                 - (g_local_directory_monitor_constructor): actually subscribe to the
2694                         watch
2695                 - (_g_local_directory_monitor_new): ensure that inotify is started up
2696
2697         * gfilemonitor/glocalfilemonitor.c
2698           gfilemonitor/glocalfilemonitor.h
2699                 - (g_local_file_monitor_constructor): actually subscribe to the watch
2700                 - (_g_local_file_monitor_new): ensure that inotify is started up
2701
2702 2008-05-11  Dan Williams  <dcbw@redhat.com>
2703
2704         * configure.in
2705                 - record PolicyKit version
2706
2707         * system-settings/src/nm-polkit-helpers.c
2708                 - (check_polkit_privileges): use polkit_context_can_caller_do_action()
2709                         with PolicyKit <= 0.6
2710
2711 2008-05-11  Dan Williams  <dcbw@redhat.com>
2712
2713         Update Fedora system-settings plugin to support latest API and use
2714         GFileMonitor rather than home-rolled inotify code.
2715
2716         * system-settings/plugins/ifcfg-fedora/Makefile.am
2717           system-settings/plugins/ifcfg-fedora/common.h
2718           system-settings/plugins/ifcfg-fedora/plugin.c
2719                 - Update to latest system settings plugin API; use GIO instead of
2720                         custom inotify code; use NMIfcfgConnection objects instead of
2721                         ConnectionData structures tacked onto NMConnection objects
2722
2723         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
2724           system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.h
2725                 - Implement an NMExportedConnection subclass mapping ifcfg files to
2726                         connections
2727
2728         * system-settings/plugins/ifcfg-fedora/reader.c
2729           system-settings/plugins/ifcfg-fedora/reader.h
2730                 - Move ifcfg parsing bits here from parser.c
2731
2732         * system-settings/plugins/ifcfg-fedora/parser.c
2733           system-settings/plugins/ifcfg-fedora/parser.h
2734                 - Remove; most code moved to reader.c
2735
2736 2008-05-11  Dan Williams  <dcbw@redhat.com>
2737
2738         * configure.in
2739           Makefile.am
2740           gfilemonitor/*
2741                 - Add a private copy of the GIO GFileMonitor code, with a custom GFile
2742                         implementation, so that the same change monitoring code can be used
2743                         on systems without glib-2.14 (like Fedora 8)
2744
2745         * system-settings/plugins/keyfile/Makefile.am
2746           system-settings/plugins/keyfile/plugin.c
2747           system-settings/plugins/ifcfg-suse/Makefile.am
2748           system-settings/plugins/ifcfg-suse/plugin.c
2749                 - Use private gfilemonitor code if GIO is not present
2750
2751 2008-05-09  Tambet Ingo  <tambet@gmail.com>
2752
2753         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c: Implement
2754         NMExportedConnection's 'update' and 'delete' and return error with
2755         descriptive message.
2756
2757 2008-05-08  Dan Williams  <dcbw@redhat.com>
2758
2759         Patch from Markus Becker <mab@comnets.uni-bremen.de>
2760
2761         * src/nm-gsm-device.c
2762           src/nm-cdma-device.c
2763                 - (real_get_best_auto_connection): implement; allow autoconnection
2764                         to GSM & CDMA devices
2765
2766 2008-05-08  Tambet Ingo  <tambet@gmail.com>
2767
2768         Use PolicyKit to authorize the system settings' AddConnection method
2769         and the system settings connections' Update and Delete methods.
2770         
2771         * libnm-glib/nm-settings.c (impl_exported_connection_update)
2772         (impl_exported_connection_delete, nm_exported_connection_update)
2773         (nm_exported_connection_delete): Return boolean and fill GError
2774         to notify the callers of the reasons why it might have failed.
2775
2776         * libnm-glib/nm-dbus-settings-system.c
2777         (nm_dbus_settings_system_add_connection): Return the error from dbus
2778         call so that the callers can see why it failed.
2779
2780         * libnm-glib/nm-dbus-connection.c (update, delete): Update the 
2781         signatures.
2782
2783         * system-settings/src/nm-polkit-helpers.[ch]: Implement.
2784
2785         * system-settings/src/nm-sysconfig-connection.[ch]: Implement. New
2786         abstract base class that checks PolicyKit permissions.
2787
2788         * system-settings/src/dbus-settings.c:
2789         (impl_settings_add_connection): Check the policy before carring out
2790         the request.
2791
2792         * system-settings/plugins/keyfile/nm-keyfile-connection.c:
2793         Inherit from NMSysconfigConnection, check the policies before
2794         allowing updating or removing.
2795
2796         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c:
2797         Inherit from NMSysconfigConnection.
2798
2799         * introspection/nm-exported-connection.xml: Annotate "Update" and 
2800         "Delete" methods with async flag so that the implementations can get
2801         access to DBusGMethodInvocation.
2802
2803         * system-settings/src/dbus-settings.c 
2804         (settings_add_connection_check_privileges): Implement.
2805         (impl_settings_add_connection): Check the privileges before adding a new
2806         connection. Improve error reporting.
2807
2808         * introspection/nm-settings-system.xml: Make the 'AddConnection' method
2809         async so that the implementation can access DBusGMethodInvocation.
2810
2811         * configure.in: Check for PolicyKit.
2812
2813         * policy/org.freedesktop.network-manager-settings.system.policy: 
2814         New file.
2815
2816         * policy/Makefile.am: Install the policy file.
2817
2818         * configure.in: Add 'policy' subdir.
2819
2820 2008-05-08  Tambet Ingo  <tambet@gmail.com>
2821
2822         Rewrite the suse system settings plugin.
2823
2824         * system-settings/plugins/ifcfg-suse/plugin.c: Rewrite.
2825
2826         * system-settings/plugins/ifcfg-suse/parser.c: Rewrite.
2827
2828         * system-settings/plugins/ifcfg-suse/nm-suse-connection.[ch]: Implement.
2829
2830         * system-settings/plugins/ifcfg-suse/Makefile.am: Add new files to build.
2831
2832         * system-settings/src/dbus-settings.c: Fix connection reference counting.
2833
2834         * system-settings/src/main.c (load_plugins): Improve error reporting.
2835
2836         * system-settings/src/sha1.[ch] Add.
2837
2838         * system-settings/src/Makefile.am: Add sha1[ch] to build.
2839
2840 2008-05-07  Dan Williams  <dcbw@redhat.com>
2841
2842         * system-settings/plugins/keyfile/reader.c
2843                 - (read_one_setting_value): handle IP address items separately
2844                 - (read_array_of_uint): read IPv4 DNS option as a string array
2845                 - (read_array_of_array_of_uint): read IPv4 address tuples as a string
2846                         array
2847
2848         * system-settings/plugins/keyfile/writer.c
2849                 - (write_setting_value): handle IP address items separately
2850                 - (write_array_of_uint): handle IPv4 DNS option as a string array,
2851                         not an array of uint, so that it's user-editable
2852                 - (write_array_of_array_of_uint): handle IPv4 address tuples as string
2853                         arrays, so they are user-editable
2854
2855 2008-05-07  Dan Williams  <dcbw@redhat.com>
2856
2857         * system-settings/plugins/keyfile/Makefile.am
2858                 - Change location of the keyfile plugin settings to
2859                         /etc/NetworkManager/system-connections
2860
2861 2008-05-05  Tambet Ingo  <tambet@gmail.com>
2862
2863         * system-settings/plugins/keyfile/nm-keyfile-connection.[ch]: Implement.
2864
2865         * system-settings/plugins/keyfile/plugin.c: Work with
2866         NMKeyfileConnections.
2867
2868         * system-settings/src/dbus-settings.c: Remove NMSysconfigExportedConnection.
2869         Plugins are supposed to return NMExportedConnections now and handle the
2870         updated(), removed(), and GetSecrets().
2871         Store the internal list of connections in hash table to make it easier
2872         to find duplicates.
2873
2874 2008-05-07  Tambet Ingo  <tambet@gmail.com>
2875
2876         * src/backends/NetworkManagerSuSE.c (nm_system_set_hostname): Update
2877         for multiple IP addresses.
2878
2879 2008-05-07  Tambet Ingo  <tambet@gmail.com>
2880
2881         Patch from André Lemos.
2882
2883         * libnm-glib/nm-dbus-settings.c (fetch_connections_done): Fix a memory
2884         corruption.
2885
2886 2008-05-06  Dan Williams  <dcbw@redhat.com>
2887
2888         * src/dhcp-manager/nm-dhcp-manager.c
2889                 - (nm_dhcp_manager_get_ip4_config): clean up; update for changes to
2890                         NMIP4Config to support multiple IP addresses
2891
2892         * src/NetworkManagerUtils.c
2893                 - (nm_utils_merge_ip4_config): update for multiple IP addresses
2894
2895         * src/nm-ip4-config.c
2896           src/nm-ip4-config.h
2897                 - Store a list of IPv4 address/netmask/gateway tuples
2898                 - (nm_ip4_config_get_gateway, nm_ip4_config_set_gateway,
2899                    nm_ip4_config_get_netmask, nm_ip4_config_set_netmask,
2900                    nm_ip4_config_get_broadcast, nm_ip4_config_set_broadcast,
2901                    nm_ip4_config_set_address): remove
2902                 - (nm_ip4_config_take_address, nm_ip4_config_add_address,
2903                    nm_ip4_config_replace_address, nm_ip4_config_get_num_addresses):
2904                         new functions; handle multiple IPv4 addresses
2905
2906         * src/nm-device.c
2907           src/ppp-manager/nm-ppp-manager.c
2908           src/vpn-manager/nm-vpn-connection.c
2909           src/NetworkManagerPolicy.c
2910           test/nm-tool.c
2911           libnm-glib/libnm-glib-test.c
2912                 - update for changes to NMIP4Config for multiple IPv4 addresses
2913
2914         * src/NetworkManagerSystem.c
2915                 - (nm_system_device_set_ip4_route): don't add the route if any address
2916                         is on the same subnet as the destination
2917                 - (check_one_address): ignore the exact match, just match family and
2918                         interface index
2919                 - (add_ip4_addresses): add all IPv4 addresses in an NMIP4Config to
2920                         an interface
2921                 - (nm_system_device_set_from_ip4_config): use add_ip4_addresses()
2922                 - (nm_system_vpn_device_set_from_ip4_config): use add_ip4_addresses()
2923
2924         * introspection/nm-ip4-config.xml
2925                 - Remove 'address', 'gateway', 'netmask', and 'broadcast' properties
2926                 - Add 'addresses' property which is an array of (uuu) tuples of
2927                         address/netmask/gateway
2928
2929         * libnm-util/nm-setting-ip4-config.c
2930                 - (set_property): use ip-address <-> GValue converters from nm-utils.c
2931
2932         * libnm-glib/nm-ip4-config.c
2933           libnm-glib/nm-ip4-config.h
2934                 - Handle D-Bus interface changes to support multiple IP addresses
2935
2936 2008-05-06  Dan Williams  <dcbw@redhat.com>
2937
2938         * libnm-util/nm-utils.c
2939           libnm-util/nm-utils.h
2940                 - (nm_utils_ip4_addresses_from_gvalue,
2941                    nm_utils_ip4_addresses_to_gvalue): new functions
2942
2943 2008-05-06  Tambet Ingo  <tambet@gmail.com>
2944
2945         * libnm-glib/nm-dbus-settings.c (fetch_connections_done): Don't leak
2946         the returned connection paths.
2947
2948 2008-05-05  Tambet Ingo  <tambet@gmail.com>
2949
2950         * libnm-glib/nm-dbus-settings.c (constructor): Fix the 
2951         "PropertiesChanged" signal signature.
2952
2953         * libnm-glib/nm-dbus-connection.c (constructor): Use the common GType
2954         defined in nm-dbus-glib-types.h.
2955         Don't register the connection on dbus, we're a proxy class to 
2956         communicate with an already registered connection over dbus.
2957
2958 2008-04-30  Tambet Ingo  <tambet@gmail.com>
2959
2960         Implement new subclasses of NMSettings and NMExportedConnection to make
2961         it easier for the applet to access and modify system settings.
2962
2963         * libnm-glib/nm-dbus-connection.[ch]:
2964         * libnm-glib/nm-dbus-settings.[ch]:
2965         * libnm-glib/nm-dbus-settings-system.[ch]: Implement.
2966
2967         * libnm-glib/Makefile.am: Add the new files to build, generate some more
2968         bindings and glue.
2969
2970         * include/NetworkManager.h: Define the system settings DBus interface.
2971
2972 2008-04-30  Tambet Ingo  <tambet@gmail.com>
2973
2974         Implement additional C API for exported connections to make them identical
2975         with the DBus API. Change the (list_connections) virtual function to be
2976         more usable from C - instead of requiring implementers to return a GPtrArray
2977         of dbus paths, return a list of connections.
2978
2979         * libnm-glib/nm-settings.c (nm_exported_connection_class_init): Fix a typo.
2980         (nm_settings_list_connections):
2981         (nm_exported_connection_new):
2982         (nm_exported_connection_update):
2983         (nm_exported_connection_delete): Implement.
2984
2985         (impl_settings_list_connections):
2986         (impl_exported_connection_update):
2987         (impl_exported_connection_delete): Use the new public functions to make 
2988         sure the C and dbus interfaces stay in sync.
2989
2990         * system-settings/src/dbus-settings.c (list_connections): Return a list of
2991         connections.
2992
2993 2008-05-02  Dan Williams  <dcbw@redhat.com>
2994
2995         * system-settings/plugins/ifcfg-fedora/plugin.c
2996                 - (dispose): use right unref call on the DBusGConnection
2997
2998 2008-05-02  Dan Williams  <dcbw@redhat.com>
2999
3000         * src/nm-serial-device.c
3001                 - (find_terminator): don't compare the whole line, just the size of the
3002                         terminator, since some modems put stuff after the terminator, like
3003                         "CONNECT 9600"
3004
3005 2008-05-01  Dan Williams  <dcbw@redhat.com>
3006
3007         Patch from Michael Biebl <biebl@debian.org>
3008
3009         * callouts/Makefile.am
3010           callouts/org.freedesktop.nm_dispatcher.service.in
3011           system-settings/src/Makefile.am
3012           system-settings/src/org.freedesktop.NetworkManagerSystemSettings.service.in
3013                 - use the right install location for dbus-activated stuff
3014
3015 2008-04-30  Dan Williams  <dcbw@redhat.com>
3016
3017         * src/nm-gsm-device.c
3018                 - (enter_pin): fix setting name passed to applets when asking for a GSM
3019                         PIN or PUK
3020
3021 2008-04-30  Dan Williams  <dcbw@redhat.com>
3022
3023         * src/nm-manager.c
3024                 - (nm_manager_error_get_type): remove erroneous NULL enum from table
3025
3026 2008-04-30  Dan Williams  <dcbw@redhat.com>
3027
3028         * src/nm-device-802-3-ethernet.c
3029           src/nm-device-802-11-wireless.c
3030                 - (real_is_up): return true instead of chaining up to unimplemented
3031                         parent method
3032
3033 2008-04-30  Dan Williams  <dcbw@redhat.com>
3034
3035         * src/NetworkManagerSystem.c
3036           src/NetworkManagerSystem.h
3037                 - (nm_system_device_is_up, nm_system_device_is_up_with_iface): new
3038                         functions to check device flags for IFF_UP
3039
3040         * src/nm-serial-device.c
3041                 - (real_is_up): remove; NMDevice now returns TRUE if the subclass doesn't
3042                         implement is_up
3043
3044         * src/nm-device-802-3-ethernet.c
3045           src/nm-device-802-11-wireless.c
3046                 - (real_hw_is_up): call nm_system_device_is_up()
3047
3048         * src/nm-device.c
3049                 - (real_hw_is_up): move to nm_system_device_is_up_with_iface()
3050                 - (real_is_up): remove; nm_device_is_up() returns TRUE if subclass
3051                         does not implement
3052
3053 2008-04-29  Dan Williams  <dcbw@redhat.com>
3054
3055         Handle HAL dropouts better; allow NM to start up even if HAL isn't up yet.
3056
3057         * marshallers/nm-marshal.list
3058                 - Add marshaller
3059
3060         * src/NetworkManager.c
3061                 - (main): let the NMManager handle the NMHalManager
3062
3063         * src/nm-hal-manager.c
3064           src/nm-hal-manager.h
3065                 - convert to a GObject, and emit singals when stuff changes.  Let the
3066                         NMManager handle the signals, instead of the NMHalManager calling
3067                         into the NMManager.  
3068
3069         * src/nm-manager.c
3070           src/nm-manager.h
3071                 - (remove_one_device): consolidate device removals here
3072                 - (dispose): use remove_one_device()
3073                 - (nm_manager_get_device_by_udi): make static
3074                 - (deferred_hal_manager_query_devices): idle handler to query the HAL
3075                         manager for devices at startup or wakeup time
3076                 - (nm_manager_new): create and monitor the HAL manager
3077                 - (hal_manager_udi_added_cb): new function; do what
3078                         nm_manager_add_device() used to do when signalled by the hal manager
3079                 - (hal_manager_udi_removed_cb): new function; do what
3080                         nm_manager_remove_device() used to do when signalled by the hal
3081                         manager
3082                 - (hal_manager_rfkill_changed_cb): handle rfkill changes from the
3083                         hal manager
3084                 - (hal_manager_hal_reappeared_cb): when HAL comes back, remove devices
3085                         in our device list that aren't known to HAL
3086                 - (impl_manager_sleep): on wakeup, re-add devices from an idle handler;
3087                         see comments on nm-hal-manager.c::nm_manager_state_changed() a few
3088                         commits ago
3089                 - (nm_manager_get_device_by_path, nm_manager_is_udi_managed,
3090                    nm_manager_activation_pending, nm_manager_wireless_enabled,
3091                    nm_manager_wireless_hardware_enabled,
3092                    nm_manager_set_wireless_hardware_enabled): remove, unused
3093
3094 2008-04-28  Dan Williams  <dcbw@redhat.com>
3095
3096         Fix the device up/down ambiguities.  Up/down state used to be a
3097         conglomeration of hardware state (IFF_UP) and any device-specific things
3098         (supplicant, periodic timers, etc) that the device used to indicate
3099         readiness.  Unfortunately, if the hardware was already IFF_UP for some
3100         reason, then the device specific stuff wouldn't get run, and the device
3101         would be stuck.
3102
3103         * src/nm-device.c
3104           src/nm-device.h
3105                 - Create hw_is_up, hw_bring_up, and hw_take_down
3106                 - Rename bring_down -> take_down
3107                 - (real_hw_is_up): check interface flags for IFF_UP
3108                 - (nm_device_hw_is_up): let subclasses figure out their own HW state
3109                 - (nm_device_is_up): make static; only used locally
3110                 - (nm_device_hw_bring_up): update the hardware and IPv4 addresses even
3111                         if the device is already up; if the device isn't up, bring it up
3112                 - (nm_device_hw_take_down): just take down hardware
3113                 - (nm_device_bring_up): bring up HW first, then device specific stuff
3114                 - (nm_device_take_down): always deactivate device when called; always
3115                         try to take hardware down too
3116                 - (nm_device_state_changed): take device down when entering unmanaged
3117                         state from a higher state
3118
3119         * src/nm-device-802-11-wireless.c
3120                 - (real_hw_is_up, real_hw_bring_up, real_hw_take_down): implement; just
3121                         check IFF_UP really
3122                 - (real_take_down, supplicant_iface_state_cb_handler, 
3123                    supplicant_iface_connection_state_cb_handler,
3124                    supplicant_mgr_state_cb_handler): fix some messages
3125
3126         * src/nm-device-802-3-ethernet.c
3127                 - (real_hw_is_up, real_hw_bring_up, real_hw_take_down): implement; just
3128                         check IFF_UP really
3129
3130 2008-04-28  Dan Williams  <dcbw@redhat.com>
3131
3132         * src/nm-manager.c
3133           src/nm-manager.h
3134                 - (nm_manager_error_get_type): add new error
3135                 - (nm_manager_remove_device): don't bother taking down the device here,
3136                         the state change from unmanaging the device will do it
3137                 - (impl_manager_sleep): move nm_manager_sleep() here since nothing else
3138                         uses it; when going to sleep, just unmanage the device instead of
3139                         taking it down, because stuff will cleaned up correctly when the
3140                         device gets unmanaged
3141
3142 2008-04-28  Dan Williams  <dcbw@redhat.com>
3143
3144         * src/nm-hal-manager.c
3145                 - (add_initial_devices): convert to a GSourceFunc prototype
3146                 - (nm_manager_state_changed): when coming out of sleep, punt the
3147                         device re-addition to an idle handler to let D-Bus events go out
3148                         first, fixing a potential dbus-glib assert if the old device was
3149                         not yet disposed (due to references held while emitting the D-Bus
3150                         signals) but the new device was found, because the mainloop didn't
3151                         run between signal emission and add_initial_devices()
3152
3153 2008-04-27  Dan Williams  <dcbw@redhat.com>
3154
3155         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3156
3157         * initscript/paldo/NetworkManager.in
3158           initscript/SUSE/networkmanager.in
3159                 - Remove last bits of dhcdbd
3160
3161 2008-04-27  Dan Williams  <dcbw@redhat.com>
3162
3163         * src/nm-device-802-11-wireless.c
3164                 - (link_timeout_cb): don't ask for secrets when disconnected during
3165                         association/authentication phase, drivers are still just too crappy
3166
3167 2008-04-27  Dan Williams  <dcbw@redhat.com>
3168
3169         * Makefile.am
3170           configure.in
3171           dispatcher-daemon/Makefile.am
3172           dispatcher-daemon/NetworkManagerDispatcher.c
3173           initscript/Arch/Makefile.am
3174           initscript/Arch/networkmanager-dispatcher.in
3175           initscript/Gentoo/Makefile.am
3176           initscript/Gentoo/NetworkManagerDispatcher.in
3177           initscript/Mandriva/Makefile.am
3178           initscript/Mandriva/networkmanagerdispatcher.in
3179           initscript/RedHat/Makefile.am
3180           initscript/RedHat/NetworkManagerDispatcher.in
3181           initscript/SUSE/Makefile.am
3182           initscript/SUSE/networkmanager-dispatcher.in
3183           initscript/Slackware/Makefile.am
3184           initscript/Slackware/rc.networkmanager-dispatcher.in
3185           initscript/paldo/Makefile.am
3186           initscript/paldo/NetworkManagerDispatcher.in
3187           man/Makefile.am
3188           man/NetworkManagerDispatcher.8.in
3189                 - Remove the dispatcher daemon
3190
3191 2008-04-27  Dan Williams  <dcbw@redhat.com>
3192
3193         * callouts/Makefile.am
3194           callouts/nm-dispatcher-action.c
3195           callouts/nm-dispatcher-action.h
3196           callouts/nm-dispatcher.conf
3197           callouts/nm-dispatcher.xml
3198           callouts/org.freedesktop.nm_dispatcher.service
3199                 - Re-implement the dispatcher as a system-bus activated service that
3200                         NM calls on-demand, rather than an always running daemon
3201
3202         * src/Makefile.am
3203                 - Add callouts dir to includes to pick up dispatcher defines
3204
3205         * src/nm-device.c
3206                 - (nm_device_state_changed): call dispatcher on device activated/
3207                         deactivated
3208
3209         * src/vpn-manager/nm-vpn-connection.c
3210                 - (nm_vpn_connection_set_vpn_state): call dispatcher when VPN connections
3211                         go up and down
3212
3213         * src/NetworkManagerUtils.c
3214           src/NetworkManagerUtils.h
3215                 - (nm_utils_call_dispatcher): helper to call dispatcher
3216
3217 2008-04-27  Dan Williams  <dcbw@redhat.com>
3218
3219         * src/NetworkManagerUtils.c
3220           src/NetworkManagerUtils.h
3221                 - remove unneeded includes
3222                 - (nm_null_safe_strcmp, nm_ethernet_addresses_are_equal,
3223                    nm_utils_inet_ip4_address_as_string, nm_timeval_has_passed,
3224                    nm_timeval_cmp, nm_timeval_add): remove, unused
3225                 - clean up formatting
3226                 - (nm_spawn_process): de-uglify
3227
3228         * src/nm-device-802-11-wireless.c
3229                 - (get_active_ap): use memcmp() not nm_ethernet_addresses_are_equal()
3230
3231 2008-04-26  Saleem Abdulrasool  <compnerd@compnerd.org>
3232
3233         * initscript/Gentoo/NetworkManager.in:
3234                 Fix for starting the daemon.
3235
3236 2008-04-25  Dan Williams  <dcbw@redhat.com>
3237
3238         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3239
3240         * src/NetworkManagerSystem.c
3241                 - (nm_system_device_set_ip4_route): reimplement using libnl, not ioctls
3242
3243 2008-04-25  Dan Williams  <dcbw@redhat.com>
3244
3245         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3246
3247         * src/NetworkManagerSystem.c
3248                 - (nm_system_device_replace_default_ip4_route): new function; a libnl
3249                         implementation of nm_system_device_replace_default_route()
3250
3251         * src/NetworkManagerPolicy.c
3252                 - (update_default_route): use nm_system_device_replace_default_ip4_route()
3253
3254         * src/backends/NetworkManagerArch.c
3255           src/backends/NetworkManagerDebian.c
3256           src/backends/NetworkManagerFrugalware.c
3257           src/backends/NetworkManagerGeneric.c
3258           src/backends/NetworkManagerGeneric.h
3259           src/backends/NetworkManagerGentoo.c
3260           src/backends/NetworkManagerMandriva.c
3261           src/backends/NetworkManagerPaldo.c
3262           src/backends/NetworkManagerRedHat.c
3263           src/backends/NetworkManagerSlackware.c
3264           src/backends/NetworkManagerSuSE.c
3265                 - (nm_system_device_replace_default_route): remove
3266
3267 2008-04-25  Dan Williams  <dcbw@redhat.com>
3268
3269         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3270
3271         * src/NetworkManagerSystem.c
3272                 - (validate_ip4_route): remove; use nl_addr_parse() instead
3273                 - (nm_system_device_add_ip4_route_via_device_with_iface): new function,
3274                         replace nm_system_device_add_route_via_device_with_iface() in the
3275                         backends
3276
3277         * src/backends/NetworkManagerArch.c
3278           src/backends/NetworkManagerDebian.c
3279           src/backends/NetworkManagerFrugalware.c
3280           src/backends/NetworkManagerGeneric.c
3281           src/backends/NetworkManagerGeneric.h
3282           src/backends/NetworkManagerGentoo.c
3283           src/backends/NetworkManagerMandriva.c
3284           src/backends/NetworkManagerPaldo.c
3285           src/backends/NetworkManagerRedHat.c
3286           src/backends/NetworkManagerSlackware.c
3287           src/backends/NetworkManagerSuSE.c
3288                 - Remove nm_system_device_add_route_via_device_with_iface()
3289
3290 2008-04-25  Dan Williams  <dcbw@redhat.com>
3291
3292         * system-settings/plugins/ifcfg-fedora/parser.c
3293                 - (GET_ONE_DNS): fix parsing of DNS2 & DNS3
3294
3295 2008-04-24  Dan Williams  <dcbw@redhat.com>
3296
3297         * dispatcher-daemon/NetworkManagerDispatcher.c
3298                 - (nmd_execute_scripts): execute scripts in order as sorted by strcmp()
3299
3300 2008-04-24  Dan Williams  <dcbw@redhat.com>
3301
3302         * initscript/RedHat/NetworkManager.in
3303           initscript/RedHat/NetworkManagerDispatcher.in
3304                 - Be active at runlevel 2
3305                 - Adjust priorities earlier
3306
3307 2008-04-22  Dan Williams  <dcbw@redhat.com>
3308
3309         * src/NetworkManagerPolicy.c
3310                 - (update_routing_and_dns): when checking for a gateway, look at the
3311                         composite IP4 config, not the connection's ip4-config setting, which
3312                         doesn't include DHCP-returned information
3313
3314 2008-04-22  Tambet Ingo  <tambet@gmail.com>
3315
3316         Implement GKeyFile system settings plugin.
3317         Implement writing system settings (currently supported only by GKeyFile plugin).
3318
3319         * system-settings/src/main.c: 
3320         * system-settings/src/dbus-settings.c: Move the communication with plugins
3321         from main.c to dbus-settings.c. Makes it possible to talk to all registered
3322         plugins for adding/updating/removing connections.
3323
3324         * system-settings/src/nm-system-config-interface.c
3325         (nm_system_config_interface_add_connection): Implement
3326         (nm_system_config_interface_update_connection): Implement.
3327         (nm_system_config_interface_remove_connection): Implement.
3328
3329         * system-settings/plugins/keyfile/Makefile.am:
3330         * system-settings/plugins/keyfile/plugin.[ch]:
3331         * system-settings/plugins/keyfile/writer.[ch]:
3332         * system-settings/plugins/keyfile/reader.[ch]: Implement.
3333
3334         * system-settings/plugins/Makefile.am: Add GKeyFile plugin.
3335
3336         * configure.in: Generate GKeyFile Makefile.
3337
3338         * libnm-glib/nm-settings.c (impl_exported_connection_get_id): Fix a memory
3339         corruption, need to duplicate the returned string.
3340         (impl_exported_connection_update): Implement.
3341         (impl_exported_connection_delete): Implement.
3342
3343         * introspection/nm-settings-system.xml: Add "AddConnection" method.
3344
3345         * introspection/nm-exported-connection.xml: Add "Update" and "Delete" methods.
3346
3347 2008-04-22  Dan Williams  <dcbw@redhat.com>
3348
3349         Patch from Charles R. Anderson (cra@wpi.edu)
3350
3351         * src/NetworkManagerPolicy.c
3352                 - (update_routing_and_dns): don't select devices without a gateway
3353                         as having the default route (rh #437338)
3354
3355 2008-04-21  Dan Williams  <dcbw@redhat.com>
3356
3357         * src/nm-activation-request.c
3358           src/nm-activation-request.h
3359                 - (dispose): ensure to disconnect from the device's state-changed signal
3360                         when appropriate so the signal doesn't get handled by an already
3361                         disposed NMActRequest
3362                 - (device_state_changed): update is_default here too just to make sure
3363                         default is only True when the child device is activated
3364                 - (nm_act_request_set_default): new function
3365
3366         * src/NetworkManagerPolicy.c
3367                 - (update_routing_and_dns): set 'default' on the active connection which
3368                         has the default route and DNS
3369
3370 2008-04-21  Dan Williams  <dcbw@redhat.com>
3371
3372         * src/NetworkManagerPolicy.c
3373                 - (device_state_changed): update routing and DNS when a device goes
3374                         into unmanaged or unavailable states too (like rfkill or carrier loss)
3375
3376 2008-04-21  Dan Williams  <dcbw@redhat.com>
3377
3378         * include/NetworkManager.h
3379                 - Add NMActiveConnectionState enum
3380
3381         * introspection/nm-active-connection.xml
3382           introspection/nm-vpn-connection.xml
3383                 - Add 'State' property for overall active connection state
3384                 - Add 'Default' property, when True means this active connection
3385                         has the default route
3386                 - Add PropertyChanged signals so changes actually go out over the bus
3387
3388         * src/nm-active-connection.h
3389                 - Add defines for State & Default properties
3390
3391         * src/nm-activation-request.c
3392                 - Add 'state' and 'default' properties, hook up to device 'state-changed'
3393                         signal to determine active connection state
3394
3395         * src/vpn-manager/nm-vpn-connection.c
3396           src/vpn-manager/nm-vpn-connection.h
3397           src/vpn-manager/nm-vpn-manager.c
3398           src/vpn-manager/nm-vpn-service.c
3399                 - Rename old 'state' to 'vpn-state'
3400                 - Rename nm_vpn_connection_get_state() -> nm_vpn_connection_get_vpn_state()
3401                 - Add 'state' and 'default' properties, hook up to the vpn connection's
3402                         'vpn-state-changed' signal
3403
3404         * libnm-glib/nm-active-connection.c
3405           libnm-glib/nm-active-connection.h
3406                 - Add new 'state' and 'default' properties and accessors
3407
3408         * libnm-glib/nm-vpn-connection.c
3409           libnm-glib/nm-vpn-connection.h
3410                 - Rename old 'state' property to 'vpn-state'
3411                 - Add new 'state' and 'default' properties and accessors
3412
3413 2008-04-21  Dan Williams  <dcbw@redhat.com>
3414
3415         * src/nm-ip4-config.c
3416                 - (nm_ip4_config_to_rtnl_addr): fill in the broadcast address if it's
3417                         not specified (rh #443474)
3418
3419 2008-04-20  Dan Williams  <dcbw@redhat.com>
3420
3421         * src/NetworkManagerUtils.c
3422           src/NetworkManagerUtils.h
3423                 - (nm_utils_merge_ip4_config): new function; merge settings from an
3424                         NMSettingIP4Config to an NMIP4Config object
3425
3426         * src/nm-device.c
3427                 - (merge_ip4_config): move to NetworkManagerUtils.c
3428
3429         * src/vpn-manager/nm-vpn-connection.c
3430                 - (nm_vpn_connection_ip4_config_get): merge in user-specified settings
3431                         too
3432
3433 2008-04-18  Dan Williams  <dcbw@redhat.com>
3434
3435         * libnm-util/nm-setting-ppp.c
3436           libnm-util/nm-setting-ppp.h
3437                 - Add 'no-vj-comp' option for TCP header compression
3438                 - baud, mru, mtu, lcp_echo_failure, and lcp_echo_interval are really
3439                         uint32
3440
3441 2008-04-18  Dan Williams  <dcbw@redhat.com>
3442
3443         * libnm-util/nm-setting-ppp.c
3444           libnm-util/nm-setting-ppp.h
3445           src/ppp-manager/nm-ppp-manager.c
3446                 - Add 'refuse-pap' and 'refuse-mschapv2' options
3447
3448 2008-04-18  Dan Williams  <dcbw@redhat.com>
3449
3450         * libnm-util/nm-setting-ppp.c
3451           libnm-util/nm-setting-ppp.h
3452           src/ppp-manager/nm-ppp-manager.c
3453                 - Remove the 'usepeerdns' option and always request DNS servers from
3454                         the PPP server; the connection chooses to use/override/ignore the
3455                         DNS servers returned from the PPP server
3456
3457 2008-04-18  Dan Williams  <dcbw@redhat.com>
3458
3459         * libnm-util/nm-setting-ppp.c
3460           libnm-util/nm-setting-ppp.h
3461           src/ppp-manager/nm-ppp-manager.c
3462                 - Remove the 'require-mppc' option, because pppd doesn't support it and
3463                         it seems to have been an erroneous addition to the PPTP plugin in
3464                         the first place (from which the ppp-manager is derived)
3465
3466 2008-04-17  Dan Williams  <dcbw@redhat.com>
3467
3468         * libnm-util/nm-setting-pppoe.c
3469                 - (verify): require a PPP setting too
3470
3471         * src/ppp-manager/nm-ppp-manager.c
3472                 - (nm_ppp_manager_start): fail if no PPP setting is present instead of
3473                         segfaulting
3474
3475 2008-04-17  Dan Williams  <dcbw@redhat.com>
3476
3477         * src/nm-device.c
3478                 - (nm_device_state_changed): do deactivation and and promotion to
3479                         unavailable here, so that the device gets cleaned up before the
3480                         manager runs and starts emitting signals; do the
3481                         FAILED->DISCONNECTED transition from an idle handler rather than
3482                         immediately to guard against recursion
3483                 - (nm_device_deactivate_quickly, nm_device_dispose): stop the
3484                         FAILED->DISCONNECTED handler if it's scheduled
3485
3486 2008-04-17  Dan Williams  <dcbw@redhat.com>
3487
3488         * src/nm-device-802-11-wireless.c
3489                 - (state_changed_cb): clear AP list when device transitions to
3490                         unavailable or unmanaged
3491                 - (nm_device_802_11_wireless_dispose): remove redundant set_current_ap()
3492                         since this is already done in device_cleanup()
3493                 - (supplicant_iface_scanned_ap_cb): don't leak new APs when the device
3494                         isn't available or managed
3495                 - (device_cleanup): use remove_all_aps()
3496                 - (remove_all_aps): consolidate code removing all APs
3497
3498 2008-04-17  Dan Williams  <dcbw@redhat.com>
3499
3500         * src/nm-serial-device.c
3501           src/nm-serial-device.h
3502                 - (wait_for_reply_got_data): break input into lines, and search each
3503                         line for responses _and_ terminator strings; also make sure that
3504                         the read loop doesn't continue after the timeout is supposed to fire
3505                 - (nm_serial_device_wait_for_reply): take an array of terminators too
3506
3507         * src/nm-gsm-device.c
3508           src/nm-cdma-device.c
3509                 - Send terminators to nm_serial_device_wait_for_reply()
3510
3511 2008-04-16  Dan Williams  <dcbw@redhat.com>
3512
3513         Patch from 陈鑫 <znscnchen@gmail.com>
3514
3515         * src/ppp-manager/nm-pppd-plugin.c
3516                 - (get_credentials): return correct value for success; handle case where
3517                         pppd just does some checking but doesn't want a password
3518                 - (plugin_init): make CHAP work too
3519
3520 2008-04-16  Dan Williams  <dcbw@redhat.com>
3521
3522         Patch from 陈鑫 <znscnchen@gmail.com>
3523
3524         * src/ppp-manager/nm-ppp-manager.c
3525                 - (create_pppd_cmd_line): fix argument generation when spawning pppd
3526
3527 2008-04-16  Dan Williams  <dcbw@redhat.com>
3528
3529         Patch from 陈鑫 <znscnchen@gmail.com>
3530
3531         * src/nm-device-802-3-ethernet.c
3532                 - (real_deactivate_quickly): clear the IP interface name on
3533                         deactivation, otherwise the wrong interface might get used later
3534                         for routing and IP management
3535
3536 2008-04-15  Dan Williams  <dcbw@redhat.com>
3537
3538         * libnm-glib/nm-device.c
3539                 - (get_product_and_vendor): handle serial devices correctly
3540                 - (nm_device_update_description): pass device to get_product_and_vendor()
3541
3542 2008-04-15  Dan Williams  <dcbw@redhat.com>
3543
3544         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3545
3546         * src/NetworkManagerSystem.h
3547           src/backends/NetworkManagerArch.c
3548           src/backends/NetworkManagerDebian.c
3549           src/backends/NetworkManagerFrugalware.c
3550           src/backends/NetworkManagerGeneric.c
3551           src/backends/NetworkManagerGeneric.h
3552           src/backends/NetworkManagerGentoo.c
3553           src/backends/NetworkManagerMandriva.c
3554           src/backends/NetworkManagerPaldo.c
3555           src/backends/NetworkManagerRedHat.c
3556           src/backends/NetworkManagerSlackware.c
3557           src/backends/NetworkManagerSuSE.c
3558           src/nm-device.c
3559                 - (nm_generic_device_add_ip6_link_address,
3560                    nm_system_device_add_ip6_link_address): remove
3561
3562 2008-04-15  Dan Williams  <dcbw@redhat.com>
3563
3564         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3565
3566         * src/backends/NetworkManagerArch.c
3567           src/backends/NetworkManagerDebian.c
3568           src/backends/NetworkManagerFrugalware.c
3569           src/backends/NetworkManagerGeneric.c
3570           src/backends/NetworkManagerGeneric.h
3571           src/backends/NetworkManagerGentoo.c
3572           src/backends/NetworkManagerMandriva.c
3573           src/backends/NetworkManagerPaldo.c
3574           src/backends/NetworkManagerRedHat.c
3575           src/backends/NetworkManagerSlackware.c
3576           src/backends/NetworkManagerSuSE.c
3577           src/NetworkManagerSystem.h
3578                 - flush_routes -> flush_ip4_routes
3579                 - flush_addresses -> flush_ip4_addresses
3580
3581         * src/NetworkManagerSystem.c
3582           src/nm-device.c
3583           src/vpn-manager/nm-vpn-connection.c
3584                 - flush only IPv4 addresses; don't touch IPv6 routes and addresses
3585
3586 2008-04-15  Dan Williams  <dcbw@redhat.com>
3587
3588         Remove exposure of wireless-tools mode types in the API.
3589
3590         * include/NetworkManager.h
3591                 - Define NM80211Mode enum
3592
3593         * introspection/generic-types.xml
3594                 - Describe NM_802_11_MODE enum
3595                 - Remove IW_MODE_* enum
3596
3597         * introspection/nm-access-point.xml
3598           libnm-glib/nm-access-point.c
3599           libnm-glib/nm-access-point.h
3600                 - 'mode' is now of type NM80211Mode, a DBUS_TYPE_UINT
3601
3602         * introspection/nm-device-802-11-wireless.xml
3603           libnm-glib/nm-device-802-11-wireless.c
3604           libnm-glib/nm-device-802-11-wireless.h
3605                 - 'mode' is now of type NM80211Mode, a DBUS_TYPE_UINT
3606
3607         * libnm-util/nm-setting-wireless.c
3608           src/NetworkManagerAP.c
3609           src/NetworkManagerAP.h
3610           src/nm-device-802-11-wireless.c
3611           src/nm-device-802-11-wireless.h
3612           test/nm-tool.c
3613                 - Use NM80211Mode not IW_MODE_*
3614
3615 2008-04-15  Dan Williams  <dcbw@redhat.com>
3616
3617         Enhance nm-online based on a patch from Bill Nottingham.
3618
3619         * test/nm-online.c
3620                 - Add a '-q' option
3621                 - Add help messages and option summary
3622                 - Add long-format options
3623                 - Add a '-x' option to exit if NM isn't running or isn't connecting
3624
3625 2008-04-15  Tambet Ingo  <tambet@gmail.com>
3626
3627         * libnm-util/nm-setting.c (nm_setting_duplicate): Implement.
3628
3629         * libnm-util/nm-connection.c (nm_connection_remove_setting): Implement.
3630
3631 2008-04-15  Dan Williams  <dcbw@redhat.com>
3632
3633         * nm-setting-ip4-config.c
3634                 - (ip4_addresses_from_gvalue): handle NULL address array
3635
3636         * nm-setting-8021x.c
3637                 - (verify_tls, verify_ttls): warn on failed verification
3638
3639 2008-04-10  Dan Williams  <dcbw@redhat.com>
3640
3641         * src/nm-gsm-device.c
3642                 - (automatic_registration): accept "+CREG: 0,0"
3643                 - (automatic_registration_response): fail on "+CREG: 0,0"
3644
3645 2008-04-10  Tambet Ingo  <tambet@gmail.com>
3646
3647         * libnm-util/nm-setting-wired.c (get_property): Fix a typo.
3648
3649 2008-04-10  Tambet Ingo  <tambet@gmail.com>
3650
3651         * system-settings/plugins/ifcfg-suse/parser.c (make_wireless_security_setting): 
3652         Make it compile again by commenting out broken code that at first didn't work and
3653         now didn't compile either.
3654
3655 2008-04-08  Dan Williams  <dcbw@redhat.com>
3656
3657         * libnm-glib/nm-object-cache.c
3658           libnm-glib/nm-settings.c
3659           src/dhcp-manager/nm-dhcp-manager.c
3660           system-settings/plugins/ifcfg-fedora/plugin.c
3661           system-settings/plugins/ifcfg-suse/plugin.c
3662           system-settings/src/nm-system-config-hal-manager.c
3663           libnm-util/nm-utils.c
3664                 - Remove usage of GStaticMutex since gcc-4.3 hates it and because we're
3665                         not threadsafe anyway
3666
3667 2008-04-08  Dan Williams  <dcbw@redhat.com>
3668
3669         * system-settings/src/main.c
3670                 - (load_stuff, device_added_cb, device_removed_cb): device added/removed
3671                         callbacks take a device type too
3672
3673 2008-04-08  Dan Williams  <dcbw@redhat.com>
3674
3675         The system settings service will now create a new default DHCP connection
3676         for wired devices that have no existing applicable connection.
3677
3678         * system-settings/src/nm-system-config-hal-manager.c
3679           system-settings/src/nm-system-config-hal-manager.h
3680                 - (nm_system_config_hal_manager_get_type_for_udi): new function
3681
3682         * system-settings/src/dbus-settings.c
3683           system-settings/src/dbus-settings.h
3684                 - (nm_sysconfig_settings_get_connections): new function
3685                 - (nm_sysconfig_settings_is_device_managed): new function
3686
3687         * system-settings/src/main.c
3688                 - (load_stuff): check for wired devices that need a default connection
3689                 - (get_details_for_udi): get interface and MAC address from HAL
3690                 - (add_default_dhcp_connection): add a default connection for a wired
3691                         device if needed
3692                 - (device_added_cb, device_removed_cb): do the right thing with
3693                         wired devices and their default connections on HAL device events
3694
3695 2008-04-07  Dan Williams  <dcbw@redhat.com>
3696
3697         * libnm-glib/nm-device.c
3698           libnm-glib/nm-device.h
3699                 - Proxy the 'managed' property
3700
3701 2008-04-07  Dan Williams  <dcbw@redhat.com>
3702
3703         * src/nm-gsm-device.c
3704           src/nm-cdma-device.c
3705                 - (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
3706                         handler to transition to DISCONNECTED
3707
3708 2008-04-07  Dan Williams  <dcbw@redhat.com>
3709
3710         Patch from Bill Nottingham
3711
3712         * dispatcher-daemon/NetworkManagerDispatcher.c
3713                 - ignore backup/packaging crufy (rh #440143)
3714
3715 2008-04-07  Dan Williams  <dcbw@redhat.com>
3716
3717         * include/NetworkManager.h
3718                 - Remove the DOWN and CANCELLED device states
3719                 - Add UNMANAGED and UNAVAILABLE device states
3720                 - Document the device states
3721
3722         * introspection/nm-device.xml
3723           src/nm-device-interface.c
3724           src/nm-device-interface.h
3725                 - Add the 'managed' property
3726
3727         * test/nm-tool.c
3728                 - (detail_device): print out device state
3729
3730         * src/NetworkManagerSystem.h
3731           src/backends/NetworkManagerArch.c
3732           src/backends/NetworkManagerDebian.c
3733           src/backends/NetworkManagerFrugalware.c
3734           src/backends/NetworkManagerGentoo.c
3735           src/backends/NetworkManagerMandriva.c
3736           src/backends/NetworkManagerPaldo.c
3737           src/backends/NetworkManagerRedHat.c
3738           src/backends/NetworkManagerSlackware.c
3739           src/backends/NetworkManagerSuSE.c
3740                 - (nm_system_device_get_system_config, nm_system_device_get_disabled
3741                    nm_system_device_free_system_config): remove; they were unused and
3742                         their functionality should be re-implemented in each distro's
3743                         system settings service plugin 
3744
3745         * src/nm-gsm-device.c
3746           src/nm-gsm-device.h
3747           src/nm-cdma-device.c
3748           src/nm-cdma-device.h
3749                 - (*_new): take the 'managed' argument
3750
3751         * src/nm-device.c
3752                 - (nm_device_set_address): remove, fold into nm_device_bring_up()
3753                 - (nm_device_init): start in unmanaged state, not disconnected
3754                 - (constructor): don't start device until the system settings service
3755                         has had a chance to figure out if the device is managed or not
3756                 - (nm_device_deactivate, nm_device_bring_up, nm_device_bring_down):
3757                         don't set device state here, let callers handle that as appropriate
3758                 - (nm_device_dispose): don't touch the device if it's not managed
3759                 - (set_property, get_property, nm_device_class_init): implement the
3760                         'managed' property
3761                 - (nm_device_state_changed): bring the device up if its now managed,
3762                         and deactivate it if it used to be active
3763                 - (nm_device_get_managed, nm_device_set_managed): do the right thing
3764                         with the managed state
3765
3766         * src/nm-hal-manager.c
3767                 - (wired_device_creator, wireless_device_creator, modem_device_creator):
3768                         take initial managed state and pass it along to device constructors
3769                 - (create_device_and_add_to_list): get managed state and pass to
3770                         type creators
3771
3772         * src/nm-device-802-11-wireless.c
3773                 - (real_can_activate): fold in most of
3774                         nm_device_802_11_wireless_can_activate()
3775                 - (can_scan): can't scan in UNAVAILABLE or UNMANAGED
3776                 - (link_timeout_cb): instead of deactivating, change device state and
3777                         let the device state handler to it
3778                 - (real_update_hw_address): clean up
3779                 - (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
3780                         handler to transition to DISCONNECTED if the device isn't rfkilled
3781
3782         * src/nm-device-802-3-ethernet.c
3783                 - (set_carrier): move above callers and get rid of prototype
3784                 - (device_state_changed): when entering UNAVAILABLE state, schedule an
3785                         idle handler to transition to DISCONNECTED if the device has a
3786                         carrier
3787                 - (real_update_hw_address): clean up
3788                 - (link_timeout_cb, ppp_state_changed): change state instead of calling
3789                         deactivation directly as deactivation doesn't change state anymore
3790
3791         * src/NetworkManagerPolicy.c
3792                 - (schedule_activate_check): yay, remove wireless_enabled hack since
3793                         the NMManager and wireless devices work that out themselves now
3794                 - (device_state_changed): change to a switch and update for new device
3795                         states
3796                 - (device_carrier_changed): remove; device handles this now through
3797                         state changes
3798                 - (device_added): don't care about carrier any more; the initial
3799                         activation check will happen when the device transitions to
3800                         DISCONNECTED
3801
3802         * src/nm-manager.c
3803                 - (dispose): clear unmanaged devices
3804                 - (handle_unmanaged_devices): update unmanaged device list and toggle
3805                         the managed property on each device when needed
3806                 - (system_settings_properties_changed_cb): handle signals from the
3807                         system settings service
3808                 - (system_settings_get_unmanaged_devices_cb): handle callback from
3809                         getting the unmanaged device list method call
3810                 - (query_unmanaged_devices): ask the system settings service for its
3811                         list of unmanaged devices
3812                 - (nm_manager_name_owner_changed, initial_get_connections): get unmanaged
3813                         devices
3814                 - (manager_set_wireless_enabled): push rfkill state down to wireless
3815                         devices directly and let them handle the necessary state transitions
3816                 - (manager_device_state_changed): update for new device states
3817                 - (nm_manager_add_device): set initial rfkill state on wireless devices
3818                 - (nm_manager_remove_device): don't touch the device if it's unmanaged
3819                 - (nm_manager_activate_connection): return error if the device is
3820                         unmanaged
3821                 - (nm_manager_sleep): handle new device states correctly; don't change
3822                         the state of unavailable/unmanaged devices
3823
3824         * libnm-glib/nm-device-802-11-wireless.c
3825                 - (state_changed_cb): update for new device states
3826
3827 2008-04-07  Dan Williams  <dcbw@redhat.com>
3828
3829         * marshallers/nm-marshal.list
3830                 - Add VOID:STRING,UINT marshaller for system settings HAL manager
3831
3832 2008-04-07  Dan Williams  <dcbw@redhat.com>
3833
3834         * system-settings/src/main.c
3835                 - (unmanaged_devices_changed_cb, register_plugin): proxy changes from
3836                         plugins to the dbus settings object
3837                 - (load_stuff): start the dbus service after grabbing unmanaged devices
3838                 - (dbus_reconnect, dbus_cleanup): make HAL manager aware of dbus events
3839                 - (log_handler, logging_setup, logging_shutdown): log output to syslog
3840                 - (main): switch default logging to syslog with a 'debug' option to
3841                         output to console; start up the HAL manager
3842
3843 2008-04-07  Dan Williams  <dcbw@redhat.com>
3844
3845         * introspection/nm-settings-system.xml
3846           introspection/Makefile.am
3847                 - Define the unmanaged devices interface for the system settings service
3848
3849         * system-settings/src/nm-system-config-hal-manager.c
3850           system-settings/src/nm-system-config-hal-manager.h
3851           system-settings/src/nm-system-config-hal-manager-private.h
3852           system-settings/src/Makefile.am
3853                 - Add a lightweight HAL manager object for tracking network devices for
3854                         the purpose of determining unmanaged devices and which devices need
3855                         the default DHCP connections
3856
3857         * system-settings/src/nm-system-config-interface.c
3858           system-settings/src/nm-system-config-interface.h
3859                 - (nm_system_config_interface_init): add the HAL manager as an argument
3860                 - (nm_system_config_interface_get_unmanaged_devices): implement
3861                 - Define 'unmanaged-devices-changed' signal
3862
3863         * system-settings/src/dbus-settings.c
3864           system-settings/src/dbus-settings.h
3865                 - Implement the unmanaged devices interface; some cleanups
3866
3867         * system-settings/plugins/ifcfg-suse/plugin.c
3868                 - Fixup for plugin interface changes
3869
3870         * system-settings/plugins/ifcfg-fedora/plugin.c
3871                 - (get_ether_device_udi): new function; find the device that has
3872                         a specified MAC address and return its UDI
3873                 - (get_udi_for_connection): new function; try to find the specific
3874                         device a connection is locked to, if any
3875                 - (device_added_cb, device_removed_cb): update unmanaged device list in
3876                         response to HAL events
3877                 - (get_unmanaged_devices): new function; return unmanaged device list
3878                 - (build_one_connection): set the connection's locked device, if any
3879                 - (write_auto_wired_connection): remove
3880                 - (kill_old_auto_wired_file): remove the ifcfg-Auto Wired file if found
3881                 - (handle_connection_changed): alert listeners that the unmanaged device
3882                         list has changed
3883                 - (init): fixup for plugin interface changes, implement unmanaged devices
3884
3885         * system-settings/plugins/ifcfg-fedora/parser.c
3886           system-settings/plugins/ifcfg-fedora/parser.h
3887                 - (connection_data_free): clean up connection UDI
3888
3889 2008-04-07  Dan Williams  <dcbw@redhat.com>
3890
3891         * system-settings/plugins/ifcfg-fedora/parser.c
3892                 - (make_ip4_setting): fix parsing of DNS servers
3893
3894 2008-04-05  Dan Williams  <dcbw@redhat.com>
3895
3896         * Makefile.am
3897           configure.in
3898           marshallers/Makefile.am
3899           marshallers/nm-marshal-main.c
3900           marshallers/nm-marshal.list
3901                 - Consolidate marshallers
3902
3903         * libnm-glib/nm-marshal-main.c
3904           libnm-glib/nm-marshal.list
3905           src/marshallers/Makefile.am
3906           src/marshallers/nm-marshal-main.c
3907           src/marshallers/nm-marshal.list
3908                 - Remove
3909
3910         * libnm-glib/Makefile.am
3911           src/Makefile.am
3912           src/dhcp-manager/Makefile.am
3913           src/ppp-manager/Makefile.am
3914           src/supplicant-manager/Makefile.am
3915           src/vpn-manager/Makefile.am
3916                 - Use consolidated marshallers
3917
3918 2008-04-04  Dan Williams  <dcbw@redhat.com>
3919
3920         * src/nm-hal-manager.c
3921           src/nm-hal-manager.h
3922                 - (hal_init): don't look for hardware here
3923                 - (nm_hal_manager_start): new function; look for hardware here instead,
3924                         which can be done at a later time than hal_init()
3925
3926         * src/NetworkManager.c
3927                 - (main): start HAL manager after entering the main loop
3928
3929 2008-04-03  Dan Williams  <dcbw@redhat.com>
3930
3931         * libnm-glib/nm-settings.c
3932           libnm-glib/nm-settings.h
3933             - (nm_exported_connection_get_id): new function
3934                 - (impl_exported_connection_get_id): use nm_exported_connection_get_id()
3935
3936 2008-04-02  Dan Williams  <dcbw@redhat.com>
3937
3938         * src/nm-device-interface.c
3939           src/nm-device-interface.h
3940           src/nm-device.c
3941           src/nm-device.h
3942                 - Rename check_connection_conflicts() to check_connection_compatible()
3943
3944         * src/nm-device-802-11-wireless.c
3945                 - (real_check_connection_conflicts): remove
3946                 - (real_check_connection_compatible): implement; match MAC address
3947
3948         * src/nm-device-802-3-ethernet.c
3949                 - (real_check_connection_conflicts): remove
3950                 - (real_check_connection_compatible): implement; match MAC address
3951                 - (real_get_best_auto_connection): correctly handle PPPoE cases
3952
3953         * src/nm-manager.c
3954                 - (check_connection_allowed): remove; unused until PolicyKit integration
3955                 - (internal_activate_device): check whether the connection is compatible
3956                         with the device before trying to activate it
3957
3958 2008-04-02  Dan Williams  <dcbw@redhat.com>
3959
3960         * system-settings/plugins/ifcfg-fedora/parser.c
3961                 - (read_mac_address): new function; read in MAC address and stuff it
3962                         into the connection
3963                 - (add_one_wep_key): remove debug spew
3964                 - (make_wireless_security_setting): validate the default TX key; don't
3965                         add the wireless-security setting if the connection doesn't need
3966                         security; don't leak the keys shvarFile on error cases
3967                 - (make_wireless_setting, make_wired_setting): populate device's MAC
3968                         address
3969
3970 2008-04-02  Dan Williams  <dcbw@redhat.com>
3971
3972         * libnm-util/nm-setting-connection.c
3973           libnm-util/nm-setting-connection.h
3974                 - (set_property, get_property, nm_setting_connection_class_init): remove
3975                         the 'lockdown' property; it's functionality will be replaced by
3976                         PolicyKit instead
3977
3978 2008-04-01  Dan Williams  <dcbw@redhat.com>
3979
3980         Patch from Per Øyvind Karlsen <peroyvind@mandriva.org>
3981
3982         * configure.in
3983           initscript/Makefile.am
3984           initscript/Mandriva/Makefile.am
3985           initscript/Mandriva/networkmanager.in
3986           initscript/Mandriva/networkmanagerdispatcher.in
3987           src/backends/Makefile.am
3988           src/backends/NetworkManagerMandriva.c
3989           system-settings/plugins/Makefile.am
3990                 - Add Mandriva support
3991
3992 2008-03-31  Dan Williams  <dcbw@redhat.com>
3993
3994         * src/vpn-manager/nm-vpn-service.c
3995                 - (nm_vpn_service_daemon_exec): add an error argument so that spawn
3996                         errors can be passed back to the caller; also no longer scheduled
3997                         as an idle handler, but called directly; and bump up VPN service
3998                         spawn timeout, 2s is really short
3999                 - (nm_vpn_service_activate): don't schedule the VPN service activation,
4000                         but call it directly so that errors are reported on return from
4001                         ActivateConnection() and don't get lost.  If scheduled as an idle
4002                         handler, clients don't have the time to query NM for the new VPN
4003                         connection's properties before the VPN connection is torn down again
4004                         if the service couldn't be launched, and therefore launch errors
4005                         get lost.
4006
4007 2008-03-31  Dan Williams  <dcbw@redhat.com>
4008
4009         * src/vpn-manager/nm-vpn-connection.c
4010                 - (device_state_changed): send correct state on device failure too
4011                 - (plugin_state_changed): failed state means unexpected disconnection,
4012                         thus if the service goes away while the VPN connection is activated
4013                         that's a failure too
4014
4015 2008-03-31  Dan Williams  <dcbw@redhat.com>
4016
4017         * src/vpn-manager/nm-vpn-manager.c
4018           src/vpn-manager/nm-vpn-manager.h
4019                 - Make VPNManager errors more available; add a service-start-failed error
4020
4021 2008-03-31  Dan Williams  <dcbw@redhat.com>
4022
4023         * libnm-glib/nm-client.c
4024           libnm-glib/nm-client.h
4025                 - (activate_cb): pass the new active connection to callback; fix
4026                         message when no callback is specified
4027
4028 2008-03-30  Dan Williams  <dcbw@redhat.com>
4029
4030         * libnm-util/nm-setting-wireless-security.c
4031                 - (need_secrets): only require key0 if the transmit key index is also
4032                         0
4033                 - (verify): reject non-NULL but zero-length WEP keys; these are invalid
4034
4035 2008-03-29  Dan Williams  <dcbw@redhat.com>
4036
4037         * libnm-util/nm-setting-8021x.c
4038           libnm-util/nm-setting-ip4-config.c
4039           libnm-util/nm-setting-vpn-properties.c
4040           libnm-util/nm-setting-vpn.c
4041           libnm-util/nm-setting-wireless-security.c
4042           libnm-util/nm-setting-wireless.c
4043           libnm-util/nm-utils.c
4044           src/dhcp-manager/nm-dhcp-manager.c
4045           src/nm-activation-request.c
4046           src/nm-ip4-config.c
4047           src/nm-manager.c
4048           src/nm-properties-changed-signal.c
4049           src/ppp-manager/nm-pppd-plugin.c
4050           src/supplicant-manager/nm-supplicant-interface.c
4051           src/vpn-manager/nm-vpn-connection.c
4052                 - consistently use nm-dbus-glib-types.h
4053
4054 2008-03-29  Dan Williams  <dcbw@redhat.com>
4055
4056         * src/vpn-manager/nm-vpn-connection.c
4057                 - (nm_vpn_connection_class_init): PROP_SPECIFIC_OBJECT should be boxed,
4058                         not string
4059
4060         * src/nm-activation-request.c
4061                 - (nm_act_request_class_init): PROP_SPECIFIC_OBJECT should be boxed,
4062                         not string
4063
4064 2008-03-29  Dan Williams  <dcbw@redhat.com>
4065
4066         * libnm-glib/nm-device-802-11-wireless.c
4067                 - (access_point_added_proxy): create new APs if not found
4068
4069 2008-03-29  Dan Williams  <dcbw@redhat.com>
4070
4071         * libnm-glib/nm-client.c
4072                 - (proxy_name_owner_changed): tell wireless devices about rfkill state
4073                         before freeing them
4074
4075 2008-03-29  Dan Williams  <dcbw@redhat.com>
4076
4077         * system-settings/plugins/ifcfg-fedora/parser.c
4078                 - Fix parsing of WEP keys; ifcfg files use indexes [1...4] rather than
4079                         [0...3]; also handle KEY correctly in combination with DEFAULTKEY
4080
4081 2008-03-29  Dan Williams  <dcbw@redhat.com>
4082
4083         * system-settings/plugins/ifcfg-fedora/parser.c
4084                 - (get_one_wep_key, make_wireless_security_setting): handle "KEY" too
4085
4086 2008-03-27  Dan Williams  <dcbw@redhat.com>
4087
4088         * nm-object.c
4089                 - (nm_object_queue_notify): don't notify multiple times for the same
4090                         property
4091
4092         * nm-object-private.h
4093                 - (handle_ptr_array_return): return NULL if the given array is NULL or
4094                         if it has zero elements
4095
4096         * nm-ip4-config.c
4097                 - (finalize): use g_ptr_array_foreach() when freeing domains
4098                 - (nm_ip4_config_get_domains): use handle_ptr_array_return()
4099
4100         * nm-active-connection.c
4101                 - (nm_active_connection_get_devices): use handle_ptr_array_return()
4102
4103         * nm-device-802-11-wireless.c
4104           nm-device-802-11-wireless.h
4105                 - (nm_device_802_11_wireless_get_access_points): return const; use
4106                         handle_ptr_array_return()
4107
4108         * nm-types.c
4109                 - (nm_object_array_demarshal): always create an array, even of length
4110                         zero, to distinguish between "NM returned no items" and "haven't
4111                         asked NM yet"
4112
4113         * nm-client.c
4114                 - (dispose): free active connections too
4115                 - (proxy_name_owner_changed): free active connections too when NM goes
4116                         away
4117                 - (nm_client_get_devices): return const; use handle_ptr_array_return()
4118                 - (nm_client_get_active_connections): use handle_ptr_array_return()
4119
4120 2008-03-26  Dan Williams  <dcbw@redhat.com>
4121
4122         Rework VPN connection handling for a more consistent D-Bus API.  The
4123         VPNManager object has been removed, and active VPN connections are now the
4124         same as any other active connection.  The Manager object's ActivateConnection
4125         and DeactivateConnection methods are used to start and stop a VPN connection,
4126         and the VPNConnection objects are subclasses of the ActiveConnection objects.
4127         When activating a VPN connection, pass the path of the active connection
4128         to which the VPN connection is tied in the 'specific_object' argument.
4129
4130         Consequently, the libnm-glib API has been reworked to match this arrangement,
4131         with the VPNManager object removed, and the NMVPNConnection objects now
4132         being subclasses of NMActiveConnection.
4133
4134 2008-03-25  Dan Williams  <dcbw@redhat.com>
4135
4136         Patch from Björn Martensen <bjoern.martensen@gmail.com>
4137
4138         * initscript/Arch/networkmanager.in
4139           initscript/Arch/networkmanager-dispatcher.in
4140                 - Updates for Arch Linux (gnome.org #523701)
4141
4142 2008-03-25  Dan Williams  <dcbw@redhat.com>
4143
4144         * libnm-glib/nm-ip4-config.c
4145           libnm-glib/nm-active-connection.c
4146           libnm-glib/nm-access-point.c
4147                 - Use nm_object_queue_notify() instead of g_object_notify()
4148
4149         * libnm-glib/nm-device.c
4150                 - (demarshal_ip4_config): distinguish between successful but missing
4151                         ip4-config request, and unsuccessful and missing ip4-config request
4152                 - (nm_device_get_ip4_config): don't try to demarshal a NULL ip4-config
4153                         path
4154                 - Use nm_object_queue_notify() instead of g_object_notify()
4155
4156         * libnm-glib/nm-device-802-11-wireless.c
4157                 - (demarshal_active_ap): distinguish between successfull but missing
4158                         active-ap request, and unsuccessful and missing active-ap request
4159                 - (dispose, clean_up_aps): consolidate AP list and active AP clearing
4160                         code
4161                 - (nm_device_802_11_wireless_set_wireless_enabled): add a private hook
4162                         for the NMClient to notify the device that wireless is disabled,
4163                         and therefore to clear the AP list and active AP
4164                 - Use nm_object_queue_notify() instead of g_object_notify()
4165
4166         * libnm-glib/nm-client.c
4167                 - (poke_wireless_devices_with_rf_status): new function
4168                 - (update_wireless_status): notify wireless devices of the rfkill status
4169                         so they can clean up if needed
4170                 - Use nm_object_queue_notify() instead of g_object_notify()
4171
4172 2008-03-25  Dan Williams  <dcbw@redhat.com>
4173
4174         * libnm-glib/nm-object.c
4175           libnm-glib/nm-object-private.h
4176                 - (nm_object_queue_notify): add helper to batch & postpone GObject notify
4177                         signals to an idle handler
4178                 - (nm_object_get_property): add a timeout to the D-Bus method call
4179
4180 2008-03-25  Dan Williams  <dcbw@redhat.com>
4181
4182         * introspection/nm-device-cdma.xml
4183           introspection/nm-device-gsm.xml
4184           introspection/Makefile.am
4185           introspection/all.xml
4186                 - Add introspection for CDMA and GSM devices for PropertiesChanged signal
4187
4188         * src/nm-gsm-device.h
4189           src/nm-gsm-device.c
4190           src/nm-cdma-device.h
4191           src/nm-cdma-device.c
4192           src/Makefile.am
4193                 - Implement PropertiesChanged signals
4194
4195         * libnm-glib/nm-cdma-device.c
4196           libnm-glib/nm-cdma-device.c
4197                 - Attach to PropertiesChanged signals
4198
4199 2008-03-24  Dan Williams  <dcbw@redhat.com>
4200
4201         * libnm-glib/nm-client.c
4202                 - (client_device_added_proxy): add new devices to the internal device
4203                         list so they appear to clients
4204
4205 2008-03-24  Dan Williams  <dcbw@redhat.com>
4206
4207         Massive fixup of libnm-glib to:
4208         a) have all objects (with the exception of VPN) cache their properties and
4209                 update them asynchronously on PropertiesChanged signals from NM
4210         b) return internal const data for most attributes/properties instead of
4211                 allocated values that the caller must free
4212         c) cache wrapped objects such that a given D-Bus path will always map to the
4213                 same GObject returned by libnm-glib
4214         d) remove a few signals and move them to GObject property notifications
4215         e) match recent NM D-Bus API changes for activation/deactivation
4216         f) remove some private functions from libnm-glib headers
4217
4218 2008-03-20  Dan Williams  <dcbw@redhat.com>
4219
4220         * src/nm-manager.c
4221                 - (nm_manager_update_state, manager_device_state_changed,
4222                    nm_manager_activate_device, connection_added_default_handler,
4223                    impl_manager_activate_connection, impl_manager_deactivate_connection):
4224                         queue PropertyChanged singals when the active connections change
4225
4226 2008-03-20  Dan Williams  <dcbw@redhat.com>
4227
4228         * introspection/nm-manager.xml
4229           introspection/nm-manager-client.xml
4230                 - (ActivateConnection): return the object path of the active connection
4231                         on success
4232                 - (GetActiveConnections): remove
4233                 - (DeactivateConnection): new function; deactivate a currently active
4234                         connection
4235                 - Add an ActiveConnections property which returns an array of
4236                         active connection object paths
4237
4238         * introspection/nm-device.xml
4239                 - (Deactivate): remove
4240
4241         * introspection/all.xml
4242                 - Add ActiveConnection introspection
4243
4244         * introspection/nm-active-connection.xml
4245                 - Add the ActiveConnection object
4246
4247         * include/NetworkManager.h
4248                 - Add the Connection.Active D-Bus interface
4249
4250         * src/nm-device-interface.c
4251                 - (impl_device_deactivate): remove
4252
4253         * src/nm-activation-request.c
4254           src/nm-activation-request.c
4255           src/Makefile.am
4256                 - Implement the Connection.Active D-Bus interface
4257
4258         * src/nm-manager.c
4259                 - (get_property, nm_manager_class_init): add ACTIVE_CONNECTIONS property
4260                 - (nm_manager_activate_device): return the active connection path
4261                 - (connection_added_default_handler, impl_manager_activate_connection):
4262                         return the active connection to the caller
4263                 - (add_one_connection_element, impl_manager_get_active_connections):
4264                         remove
4265                 - (impl_manager_deactivate_connection): new function; deactivate an
4266                         active connection
4267
4268         * libnm-glib/nm-device.c
4269           libnm-glib/nm-device.h
4270                 - Remove Deactivate() function
4271
4272 2008-03-19  Dan Williams  <dcbw@redhat.com>
4273
4274         * introspection/nm-manager.xml
4275           introspection/nm-manager-client.xml
4276                 - Rename the ActivateDevice method to ActivateConnection to better
4277                         reflect it's usage; it's arguments get reordered a bit too
4278                 - Convert GetActiveConnections method return from a struct to a dict
4279
4280         * include/NetworkManager.h
4281                 - Define the dict keys for return value of GetActiveConnections
4282
4283         * src/nm-manager.c
4284                 - impl_manager_activate_device -> impl_manager_activate_connection
4285                 - (add_one_connection_element): return a populated hash table, not
4286                         a structure
4287
4288         * libnm-glib/nm-client.c
4289           libnm-glib/nm-client.h
4290                 - nm_client_activate_device -> nm_client_activate_connection
4291                 - nm_client_free_active_connection_element -> nm_client_free_active_connections_element
4292                 - (nm_client_get_active_connections): return a GSList of GHashTables,
4293                         instead of the custom structures.  Each element of the returned list
4294                         must be freed with nm_client_free_active_connections_element()
4295
4296 2008-03-18  Dan Williams  <dcbw@redhat.com>
4297
4298         * system-settings/plugins/ifcfg-fedora/parser.c
4299           system-settings/plugins/ifcfg-fedora/parser.h
4300           system-settings/plugins/ifcfg-fedora/plugin.c
4301                 - Read settings from /etc/sysconfig/network-scripts/ instead of using
4302                         profiles.  DNS servers and searches must now be stored in the ifcfg
4303                         files themselves
4304
4305 2008-03-18  Tambet Ingo  <tambet@gmail.com>
4306
4307         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_update_secrets): Don't
4308         print out username and password, it's supposed to be a secret.
4309
4310         * src/nm-device-802-3-ethernet.c (ppp_state_changed): Handle authentication 
4311         request and set the device state accordingly.
4312
4313 2008-03-18  Tambet Ingo  <tambet@gmail.com>
4314
4315         * src/nm-device-802-3-ethernet.c: Implement wired 802.1x authentication.
4316
4317         * libnm-util/nm-setting-wireless-security.h: Fix a typo.
4318
4319 2008-03-18  Dan Williams  <dcbw@redhat.com>
4320
4321         * src/vpn-manager/nm-vpn-connection.c
4322                 - (get_secrets_cb): handle new GetSecrets return format
4323
4324 2008-03-18  Dan Williams  <dcbw@redhat.com>
4325
4326         Adapt system settings service for split 802.1x.
4327
4328         * system-settings/src/nm-system-config-interface.h
4329                 - clarify return value of get_secrets()
4330
4331         * system-settings/src/dbus-settings.c
4332                 - (string_to_gvalue, destroy_gvalue, add_one_secret_to_hash): remove
4333                 - (check_for_secrets): check if there actually secrets returned by a
4334                         plugin
4335                 - (exported_connection_get_secrets): just return the plugin-returned
4336                         hash of settings' secrets if it looks valid
4337
4338         * system-settings/plugins/ifcfg-fedora/plugin.c
4339                 - (get_secrets): add split secrets with correct format to reply hash
4340
4341         * system-settings/plugins/ifcfg-fedora/parser.c
4342           system-settings/plugins/ifcfg-fedora/parser.h
4343                 - (copy_one_cdata_secret, connection_data_copy_secrets,
4344                    connection_data_free, connection_data_add): keep secrets for
4345                         different settings in different hashes
4346
4347 2008-03-17  Tambet Ingo  <tambet@gmail.com>
4348
4349         Clean up activating device deactivation.
4350
4351         * src/nm-device.c (real_activation_cancel_handler): Remove. The same thing
4352         should be done whether the device activation gets cancelled or the device
4353         is just getting deactivated.
4354         (nm_device_activation_cancel): Remove.
4355         (nm_device_deactivate_quickly): Handle the case where device is activating.
4356
4357         * src/nm-device-802-11-wireless.c (real_activation_cancel_handler): Remove.
4358         It does the exact same thing as real_deactivate_quickly().
4359
4360 2008-03-17  Dan Williams  <dcbw@redhat.com>
4361
4362         Split the 802.1x bits out of the wireless-security setting so they are
4363         generalized enough for wired 802.1x to use too.
4364
4365         * introspection/nm-exported-connection.xml
4366                 - GetSecrets now returns 'a{sa{sv}}' (a hash of settings hashes) instead
4367                         of just a hash of the secrets for one setting
4368
4369         * libnm-util/nm-setting-wireless-security.c
4370           libnm-util/nm-setting-wireless-security.h
4371                 - Remove 802.1x-specific stuff
4372                 - Added leap-username and leap-password properties for old-school LEAP
4373
4374         * src/nm-device.c
4375           src/nm-device.h
4376                 - (connection_secrets_updated_cb): take a list of updated settings names,
4377                         not just one
4378
4379         * src/supplicant-manager/nm-supplicant-config.c
4380           src/supplicant-manager/nm-supplicant-config.h
4381                 - (nm_supplicant_config_add_setting_wireless_security): remove 802.1x
4382                         specific stuff; fix for updated LEAP bits; punt 802.1x stuff
4383                         to nm_supplicant_config_add_setting_8021x()
4384                 - (nm_supplicant_config_add_setting_8021x): add an 802-1x setting to
4385                         the supplicant config
4386
4387         * src/nm-device-802-11-wireless.c
4388                 - (build_supplicant_config): pass in the 802.1x setting too, if any
4389                 - (real_connection_secrets_updated): take a list of updated settings
4390                         names, not just one
4391
4392         * src/nm-device-802-3-ethernet.c
4393           src/nm-cdma-device.c
4394           src/nm-gsm-device.c
4395                 - (real_connection_secrets_updated_cb): take a list of updated settings
4396                         names, not just one
4397
4398         * src/nm-activation-request.c
4399           src/nm-activation-request.h
4400                 - (nm_act_request_class_init): the 'connection-secrets-updated' signal
4401                         now passes a list of updated settings names, not just one
4402                 - (update_one_setting): new function; handle one updated setting
4403                 - (get_secrets_cb): handle multiple settings returned from the
4404                         settings service; have to be careful of ordering here as there are
4405                         some dependencies between settings (ex. wireless-security and 802.1x
4406                         in some cases)
4407
4408         * src/marshallers/nm-marshal.list
4409                 - new marshaller for connection-secrets-updated signal
4410
4411         * libnm-util/nm-setting-8021x.c
4412                 - Add back the 'pin' and 'psk' settings, for EAP-SIM and EAP-PSK auth
4413                         methods
4414                 - (verify): a valid 'eap' property is now required
4415
4416         * libnm-util/nm-connection.c
4417                 - (register_default_settings): add priorities to settings; there are
4418                         some dependencies between settings, and during the need_secrets
4419                         calls this priority needs to be respected.  For example, only the
4420                         wireless-security setting knows whether or not the connection is
4421                         going to use 802.1x or now, so it must be asked for secrets before
4422                         any existing 802.1x setting is
4423                 - (nm_connection_lookup_setting_type): expose
4424
4425         * libnm-util/nm-setting-wireless.c
4426                 - (verify): should verify even if all_settings is NULL; otherwise won't
4427                         catch the case where there is missing security
4428
4429         * libnm-util/nm-setting-wireless-security.c
4430                 - Remove everything to do with 802.1x
4431                 - Add old-school LEAP specific properties for username and password
4432                 - (need_secrets): rework LEAP secrets checking
4433                 - (verify): rework for LEAP and 802.1x verification
4434
4435 2008-03-17  Dan Williams  <dcbw@redhat.com>
4436
4437         * src/NetworkManagerPolicy.c
4438                 - (auto_activate_device): always remove the current activation check
4439                         from the pending activation list, otherwise when the policy gets
4440                         destroyed on NM exit it will attempt to free the already freed
4441                         activation check
4442
4443 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4444
4445         * src/backends/NetworkManagerSlackware.c 
4446         (nm_system_device_setup_static_ip4_config): Remove, it's unused.
4447
4448         * src/backends/NetworkManagerSuSE.c: Add missing includes.
4449
4450 2008-03-14  Dan Williams  <dcbw@redhat.com>
4451
4452         * src/nm-manager.c
4453                 - (nm_device_interface_get_iface): g_object_get() will return an
4454                         allocated value, so this function must not return const
4455                 - (nm_device_interface_activate): free returned iface
4456
4457 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4458
4459         * libnm-util/Makefile.am: Add new files to build.
4460
4461         * libnm-util/nm-connection.c: Register NMSetting8021x.
4462
4463         * libnm-util/nm-setting-8021x.c
4464         * libnm-util/nm-setting-8021x.h: Implement.
4465
4466 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4467
4468         * libnm-util/Makefile.am: Add new files to build.
4469
4470         * libnm-util/nm-connection.c: Register NMSetting8021x.
4471
4472         * libnm-util/nm-setting-8021x.c
4473         * libnm-util/nm-setting-8021x.h: Implement.
4474
4475 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4476
4477         * src/NetworkManagerPolicy.c (auto_activate_device): Don't leak device and
4478         data.
4479
4480 2008-03-14  Dan Williams  <dcbw@redhat.com>
4481
4482         * include/wireless-helper.h
4483           include/Makefile.am
4484                 - One place for all the junk needed for #including wireless.h
4485
4486         * test/nm-tool.c
4487           src/NetworkManagerAP.c
4488           src/wpa.c
4489           src/Makefile.am
4490           libnm-util/nm-utils.c
4491           libnm-util/nm-setting-wireless.c
4492           libnm-glib/nm-device-802-11-wireless.c
4493           libnm-glib/nm-access-point.c
4494           libnm-glib/libnm-glib-test.c
4495                 - include wireless-helper.h, not iwlib.h
4496
4497         * configure.in
4498                 - Don't need libiw really, just need to check for wireless.h
4499
4500         * src/kernel-types.h
4501                 - Remove; used types moved into wpa.c
4502
4503         * src/nm-device-802-11-wireless.c
4504                 - (nm_device_802_11_wireless_update_signal_strength,
4505                    real_get_generic_capabilities, nm_device_802_11_wireless_get_mode,
4506                    nm_device_802_11_wireless_set_mode,
4507                    nm_device_802_11_wireless_get_frequency,
4508                    nm_device_802_11_wireless_get_ssid,
4509                    nm_device_802_11_wireless_set_ssid,
4510                    nm_device_802_11_wireless_get_bitrate,
4511                    nm_device_802_11_wireless_get_bssid,
4512                    nm_device_802_11_wireless_disable_encryption): use ioctl() directly
4513                         instead of iwlib functions
4514
4515 2008-03-14  Dan Williams  <dcbw@redhat.com>
4516
4517         * src/ppp-manager/nm-ppp-manager.c
4518                 - (impl_ppp_manager_need_secrets): since it's asynchronous now, it
4519                         should only take the DBusGMethodInvocation argument, not user/pass
4520                         too.  With dbus-glib, async functions only take 2 C arguments since
4521                         the real dbus method arguments get passed back with
4522                         dbus_g_method_return()
4523
4524 2008-03-13  Tambet Ingo  <tambet@gmail.com>
4525
4526         * system-settings/plugins/ifcfg-suse/plugin.c (update_default_routes): 
4527         Adapt the changes of NMSettingIP4Config.
4528
4529 2008-03-13  Dan Williams  <dcbw@redhat.com>
4530
4531         * src/NetworkManagerUtils.c
4532           src/NetworkManagerUtils.h
4533                 - (nm_ether_ntop): replacement for iw_ether_ntop()
4534
4535         * src/NetworkManagerAP.c
4536           src/nm-device-802-11-wireless.c
4537           src/nm-device-802-3-ethernet.c
4538                 - s/iw_ether_ntop/nm_ether_ntop/g
4539
4540 2008-03-13  Dan Williams  <dcbw@redhat.com>
4541
4542         * src/NetworkManagerPolicy.c
4543                 - (update_routing_and_dns): never set the default route through an
4544                         IPv4LL addressed device
4545
4546 2008-03-13  Dan Williams  <dcbw@redhat.com>
4547
4548         * NetworkManagerUtils.c
4549           NetworkManagerUtils.h
4550                 - Remove NMSock stuff
4551                 - Remove the completion stuff
4552
4553         * nm-device.c
4554           nm-device.h
4555           NetworkManager.c
4556           NetworkManagerSystem.c
4557           autoip.c
4558           nm-device-802-11-wireless.c
4559           nm-device-802-3-ethernet.c
4560                 - Remove NMSock and completion stuff
4561                 - Remove nm_ioctl_info()
4562
4563 2008-03-12  Dan Williams  <dcbw@redhat.com>
4564
4565         * src/nm-device.c
4566                 - (merge_ip4_config): avoid duplicates
4567
4568 2008-03-12  Dan Williams  <dcbw@redhat.com>
4569
4570         * libnm-util/nm-setting-ip4-config.c
4571           libnm-util/nm-setting-ip4-config.h
4572                 - Remove 'manual' and 'autoip' properties
4573                 - Add 'method' property
4574                 - (verify): fix verification with 'method'
4575                 - (finalize): free 'method'
4576                 - (set_property, get_property, nm_setting_ip4_config_class_init): fix
4577                         up for 'method'
4578
4579         * src/nm-device.c
4580                 - (real_act_stage3_ip_config_start): check IP4Config method
4581                 - (nm_device_new_ip4_autoip_config): add a note about not sucking in
4582                         the future
4583                 - (merge_ip4_config): IP settings are valid with DHCP too
4584                 - (real_act_stage4_get_ip4_config): handle all IP4Config methods
4585                 - (real_act_stage4_ip_config_timeout): don't do autoip on DHCP timeout
4586
4587         * src/nm-device-802-11-wireless.c
4588                 - (real_act_stage3_ip_config_start): remove; autoip only on demand
4589                 - (real_act_stage4_get_ip4_config): just chain up to parent; autoip
4590                         only on demand
4591
4592         * system-settings/plugins/ifcfg-fedora/parser.c
4593           system-settings/plugins/ifcfg-suse/parser.c
4594                 - (make_ip4_setting): fix up for 'method'
4595
4596 2008-03-12  Dan Williams  <dcbw@redhat.com>
4597
4598         * system-settings/plugins/ifcfg-fedora/parser.c
4599           system-settings/plugins/ifcfg-fedora/parser.h
4600                 - (get_ifcfg_name): ignore more file suffixes
4601                 - (is_wireless_device): fix check for ifcfgs that have no TYPE
4602
4603 2008-03-12  Dan Williams  <dcbw@redhat.com>
4604
4605         * configure.in
4606                 - Bring in the bits of gnome-common we actually use (all 15 lines)
4607
4608 2008-03-12  Dan Williams  <dcbw@redhat.com>
4609
4610         * system-settings/plugins/ifcfg-fedora/plugin.c
4611                 - (write_auto_wired_connection): new function; write out an auto
4612                         wired connection file since the applet isn't doing it any more
4613                 - (reload_all_connections): write out the auto wired connection file
4614                         if there aren't any wired connections already
4615                 - (init): don't leak a GError
4616
4617 2008-03-12  Dan Williams  <dcbw@redhat.com>
4618
4619         * src/nm-device-interface.c
4620                 - (nm_device_interface_activate): print the ID of the connection
4621                         that's about to be activated
4622
4623 2008-03-12  Dan Williams  <dcbw@redhat.com>
4624
4625         Harmonize the 802.11 bitrate API
4626
4627         * introspection/nm-access-point.xml
4628                 - 'Rate' -> 'MaxBitrate'; clarify units
4629
4630         * introspection/nm-device-802-11-wireless.xml
4631                 - Clarify units of 'Bitrate'
4632
4633         * src/NetworkManagerAP.c
4634           src/NetworkManagerAP.h
4635                 - (set_property, get_property, nm_ap_class_init): rename 'rate'
4636                         property to 'max-bitrate'
4637                 - (foreach_property_cb): convert rate to Kb/s
4638
4639         * src/nm-device-802-11-wireless.c
4640                 - (nm_device_802_11_wireless_get_bitrate): return rate in Kb/s
4641
4642         * libnm-glib/nm-access-point.c
4643           libnm-glib/nm-access-point.h
4644                 - 'rate' -> 'max-bitrate'
4645
4646         * test/nm-tool.c
4647           libnm-glib/libnm-glib-test.c
4648                 - Fix up for these changes
4649
4650 2008-03-12  Dan Williams  <dcbw@redhat.com>
4651
4652         * src/nm-device.c
4653                 - (nm_device_set_ip4_config): don't send property notifications when
4654                         the ip4 config is set to NULL; it causes a PropertyChanged signal
4655                         which dbus-glib can't parse because the value is NULL, which isn't
4656                         a legal object path.  Setting the IP4 config to NULL is only
4657                         valid when deactivating a device anyway, so the device state change
4658                         will alert listeners that the ip4 config is invalid.
4659
4660 2008-03-12  Dan Williams  <dcbw@redhat.com>
4661
4662         * src/nm-properties-changed-signal.c
4663                 - (add_to_string): better handling of NULL objects
4664
4665 2008-03-12  Dan Williams  <dcbw@redhat.com>
4666
4667         Move the 'carrier' property from NMDevice to NMDevice8023Ethernet;
4668         convert the libnm-glib NMDevice8023Ethernet to cached properties
4669
4670         * introspection/nm-device-802-3-ethernet.xml
4671                 - New 'Carrier' property
4672                 - New 'PropertiesChanged' signal
4673
4674         * introspection/nm-device.xml
4675                 - Remove 'Carrier' property
4676                 - Remove 'CarrierChanged' signal
4677
4678         * src/nm-device-interface.c
4679           src/nm-device-interface.h
4680                 - (nm_device_interface_init): remove 'carrier' property and
4681                         'carrier-changed' signal
4682
4683         * src/nm-device.c
4684           src/nm-device.h
4685                 - (nm_device_get_carrier, nm_device_set_carrier): remove
4686                 - (nm_device_activate_stage5_ip_config_commit): don't bother updating
4687                         the link here; wired device will handle that
4688                 - (handle_dhcp_lease_change): don't bother updating link here
4689                 - (get_property, nm_device_class_init): remove carrier property
4690
4691         * src/nm-device-802-11-wireless.c
4692                 - (real_update_link, nm_device_802_11_wireless_class_init): remove
4693                         real_update_link(); wireless devices don't use carrier at all
4694                 - (link_timeout_cb, supplicant_iface_state_cb_handler,
4695                    supplicant_iface_connection_state_cb_handler,
4696                    supplicant_mgr_state_cb_handler): remove anything to do with carrier
4697
4698         * src/nm-device-802-3-ethernet.c
4699           src/nm-device-802-3-ethernet.h
4700                 - (nm_device_802_3_ethernet_carrier_on,
4701                    nm_device_802_3_ethernet_carrier_off, constructor): use set_carrier()
4702                         instead of nm_device_set_carrier()
4703                 - (device_state_changed): update link from sysfs on activation;
4704                         replaces real_update_link()
4705                 - (real_update_link): remove, replaced by device_state_changed()
4706                 - (nm_device_802_3_ethernet_get_carrier, set_carrier): new functions
4707                 - (nm_device_802_3_ethernet_get_speed): move up with other getters/setters
4708                 - (real_get_generic_capabilities, real_can_interrupt_activation): use
4709                         new get_carrier function
4710                 - (get_property): add 'carrier' property
4711                 - (nm_device_802_3_ethernet_class_init): add 'carrier' property and
4712                         hook into property-changed signal helper
4713
4714         * src/NetworkManagerPolicy.c
4715                 - (device_carrier_changed): will only ever be called with a wired device
4716                 - (device_added): only hook up to carrier-changed for wired devices
4717
4718         * libnm-glib/nm-device.c
4719           libnm-glib/nm-device.h
4720                 - (constructor, nm_device_class_init): remove carrier-changed signal
4721                 - (device_carrier_changed_proxy): remove; unused
4722                 - (nm_device_get_carrier): remove; carrier a property of wired devices
4723
4724         * libnm-glib/nm-device-802-3-ethernet.c
4725           libnm-glib/nm-device-802-3-ethernet.h
4726                 - Convert to cached properties like AP and Wireless objects
4727                 - (nm_device_802_3_ethernet_get_hw_address): now returns a 'const char *'
4728                         instead of a 'char *', return value should not be freed
4729                 - (nm_device_802_3_ethernet_get_carrier): return current carrier status
4730                 - (constructor): hook into properties-changed helper
4731                 - (set_property, get_property): new functions
4732                 - (nm_device_802_3_ethernet_class_init): export GObject properties
4733
4734         * test/nm-tool.c
4735                 - (detail_device): strdup the wired hardware address too since it's
4736                         cached now
4737
4738         * libnm-glib/libnm-glib-test.c
4739                 - (dump_wired): strdup the wired hardware address too since it's
4740                         cached now
4741
4742 2008-03-12  Dan Williams  <dcbw@redhat.com>
4743
4744         * libnm-util/nm-setting-ip4-config.c
4745           libnm-util/nm-setting-ip4-config.h
4746                 - (set_property, get_property, nm_setting_ip4_config_class_init): add
4747                         the 'autoip' property from the spec
4748
4749 2008-03-11  Dan Williams  <dcbw@redhat.com>
4750
4751         * src/backends/NetworkManagerGeneric.c
4752           src/backends/NetworkManagerGeneric.h
4753                 - (nm_generic_device_get_use_dhcp): remove
4754
4755 2008-03-11  Dan Williams  <dcbw@redhat.com>
4756
4757         * src/nm-device.c
4758                 - (nm_device_deactivate): don't need to munge DNS here; that gets done
4759                         already in nm_device_set_ip4_config()
4760                 - (handle_dhcp_lease_change): fail the device if setting the IP4Config
4761                         due to a DHCP rebind fails
4762                 - (nm_device_set_ip4_config): send property notifications when the
4763                         ip4 config changes
4764                 - (get_property): only report IP4Config property during valid states
4765
4766         * src/NetworkManagerPolicy.c
4767                 - (update_routing_and_dns): ignore devices that don't have an ip4
4768                         config; add parameter 'force_update' to allow callers to specify
4769                         that changes should be made even if the default device doesn't change
4770                 - (device_ip4_config_changed): update DNS and routing when the device's
4771                         IP4Config changes, like for DHCP updates
4772                 - (device_added): listen for ip4-config property changes
4773
4774 2008-03-11  Dan Williams  <dcbw@redhat.com>
4775
4776         Fix address handling as a result of DHCP rebind/renew/reboot.
4777
4778         * src/NetworkManagerSystem.c
4779                 - (check_one_address): delete an address if it doesn't match a given
4780                         one for the same interface
4781                 - (nm_system_device_set_from_ip4_config): don't flush the default route,
4782                         be smarter about flushing addresses (only flush ones that don't
4783                         match the one we're about to apply)
4784
4785         * src/backends/NetworkManagerDebian.c
4786           src/backends/NetworkManagerSuSE.c
4787           src/backends/NetworkManagerArch.c
4788           src/backends/NetworkManagerSlackware.c
4789           src/backends/NetworkManagerRedHat.c
4790           src/backends/NetworkManagerPaldo.c
4791           src/backends/NetworkManagerFrugalware.c
4792           src/backends/NetworkManagerGentoo.c
4793                 - (nm_system_delete_default_route): remove
4794
4795         * src/backends/NetworkManagerGeneric.c
4796           src/backends/NetworkManagerGeneric.h
4797                 - (nm_generic_enable_loopback): fix the loopback device label
4798                 - (nm_generic_delete_default_route): remove; no longer used
4799
4800 2008-03-11  Dan Williams  <dcbw@redhat.com>
4801
4802         * src/nm-device-interface.h
4803                 - Delimit property name words with '-', otherwise g_object_notify()
4804                         doesn't work the way we expect
4805
4806 2008-03-11  Tambet Ingo  <tambet@gmail.com>
4807
4808         * src/nm-hal-manager.c (create_device_and_add_to_list): Don't ignore USB devices.
4809
4810 2008-03-11  Dan Williams  <dcbw@redhat.com>
4811
4812         * src/NetworkManagerPolicy.c
4813                 - (update_routing_and_dns): don't change anything if the default device
4814                         hasn't changed; print something out when switching the default route
4815                         and DNS
4816
4817 2008-03-10  Tambet Ingo  <tambet@gmail.com>
4818
4819         Implement PPPoE.
4820
4821         * src/ppp-manager/nm-ppp-manager.c (create_pppd_cmd_line): Use PPPoE service
4822         setting. Use "nic-$eth".
4823
4824         * src/NetworkManagerPolicy.c (auto_activate_device): Move the check of whether
4825         the device is activating here to fix a race condition.
4826
4827         * src/ppp-manager/nm-pppd-plugin.c (get_credentials): Implement.
4828
4829         * src/ppp-manager/nm-ppp-manager.c (impl_ppp_manager_need_secrets): Implement.
4830         (ppp_watch_cb): Emit a signal to notify pppd is not running anymore.
4831         (nm_ppp_manager_start): Take activation request instead of connection, we might
4832         need it for asking secrets.
4833         (nm_ppp_manager_update_secrets): Implement.
4834
4835         * src/nm-serial-device.c (real_act_stage2_config): Send activation request to
4836         ppp manager start. It might be needed for asking secrets.
4837
4838         * src/nm-device-802-3-ethernet.c (real_connection_secrets_updated): Implement.
4839         (ppp_state_changed): Handle pppd daemon disappearing.
4840         (pppoe_stage2_config): Send activation request to ppp manager start.
4841
4842         * libnm-util/nm-setting-pppoe.c (nm_setting_pppoe_class_init): Fix a typo.
4843
4844         * introspection/nm-ppp-manager.xml: Make NeedSecrets method async, return only
4845         username and password.
4846         
4847 2008-03-10  Dan Williams  <dcbw@redhat.com>
4848
4849         * src/nm-device.c
4850                 - (handle_dhcp_lease_change): apply an IP4 config to a device in
4851                         response to a DHCP lease change
4852                 - (dhcp_state_changed): handle DHCP lease changes while activated
4853                 - (nm_device_set_ip4_config): remove a previously set named config
4854                         when setting an ip4 config
4855
4856 2008-03-10  Dan Williams  <dcbw@redhat.com>
4857
4858         * src/nm-serial-device.c
4859                 - (nm_serial_device_send_command): report errno on error
4860                 - (get_reply_got_data): limit the size of the overall buffer
4861                 - (wait_for_reply_info_destroy): destroy result string
4862                 - (wait_for_reply_got_data): append received data to an overall buffer
4863                         until timeout, filled buffer, or error instead of keeping a per-call
4864                         buffer.  Some devices send data slowly enough that this function
4865                         gets called multiple times for the same command stream.
4866                 - (nm_serial_device_wait_for_reply): initialize overall buffer for
4867                         wait_for_reply_got_data() here
4868
4869 2008-03-10  Dan Williams  <dcbw@redhat.com>
4870
4871         * src/nm-cdma-device.c
4872                 - (do_dial, init_modem): handle errors from
4873                         nm_serial_device_send_command_string()
4874
4875         * src/nm-gsm-device.c
4876                 - (do_dial, manual_registration, automatic_registration_get_network,
4877                    automatic_registration, enter_pin, check_pin, init_modem): handle
4878                         errors from nm_serial_device_send_command_string()
4879
4880 2008-03-10  Dan Williams  <dcbw@redhat.com>
4881
4882         Patch based on ideas suggested by Bas Zoetekouw <bas@debian.org>
4883
4884         * src/named-manager/nm-named-manager.c
4885                 - (compute_searches): prefer searches before domains
4886                 - (compute_domain): new function
4887                 - (rewrite_resolv_conf): write out the 'domain' and 'searches' options
4888                 - (merge_one_ip4_config): if there are no searches in the source config,
4889                         merge domains of the source config into the target config
4890                 - (compute_nameservers): make formatting of resolv.conf a bit nicer
4891
4892 2008-03-10  Dan Williams  <dcbw@redhat.com>
4893
4894         * src/nm-serial-device.c
4895                 - (get_reply_got_data): clean up indentation, shrink serial buffer
4896                 - (wait_for_reply_got_data): try to handle slower serial devices where
4897                         the reply is broken up into multiple reads by concatenating replies
4898                         together until either an error is received or the search string is
4899                         found
4900
4901 2008-03-10  Dan Williams  <dcbw@redhat.com>
4902
4903         * src/nm-device.c
4904                 - (nm_device_bring_down): deactivate the device if it's activating too,
4905                         not just if it's already activated.  This makes sure that everything
4906                         from an association attempt is cleaned up (like DHCP for example)
4907
4908 2008-03-10  Dan Williams  <dcbw@redhat.com>
4909
4910         * src/nm-serial-device.c
4911                 - (config_fd): report error from TCSETA
4912                 - (nm_serial_device_open): fail when config_fd() fails
4913
4914 2008-03-10  Dan Williams  <dcbw@redhat.com>
4915
4916         * src/nm-ip4-config.c
4917                 - (nm_ip4_config_init): allocate searches list
4918                 - (finalize): free searches list
4919
4920 2008-03-09  Dan Williams  <dcbw@redhat.com>
4921
4922         Patch from Bas Zoetekouw <bas@debian.org>
4923
4924         * src/dhcp-manager/nm-dhcp-manager.c
4925                 - (nm_dhcp_manager_get_ip4_config): handle domain-search option too
4926
4927 2008-03-09  Dan Williams  <dcbw@redhat.com>
4928
4929         Patch from Bas Zoetekouw <bas@debian.org>
4930
4931         * src/nm-ip4-config.c
4932           src/nm-ip4-config.h
4933                 - (nm_ip4_config_add_search, nm_ip4_config_get_search,
4934                    nm_ip4_config_get_num_searches): add 'searches' as distinct from
4935                         domains.  'searches' is the correct way to store multiple search
4936                         domains, whereas 'domains' is really just supposed to store one
4937                         domain.  Some sites abuse the DHCP 'domain-name' option to push
4938                         search domains to the client.
4939                 - (nm_ip4_config_add_domain): group with related functions (my patch)
4940
4941 2008-03-09  Dan Williams  <dcbw@redhat.com>
4942
4943         * src/dhcp-manager/nm-dhcp-manager.c
4944                 - (dhclient_run): send interface-specific config files to dhclient
4945
4946 2008-03-07  Dan Williams  <dcbw@redhat.com>
4947
4948         * system-settings/plugins/ifcfg-fedora/parser.c
4949                 - (is_wireless_device): new function; test a device for wireless
4950                         extensions
4951                 - (parser_parse_file): if the ifcfg file doesn't have a TYPE tag,
4952                         test the device for wireless extensions to determine the type
4953
4954 2008-03-07  Dan Williams  <dcbw@redhat.com>
4955
4956         Change manager's StateChange signal to StateChanged for consistency.
4957
4958         * introspection/nm-manager.xml
4959                 - Add 'StateChanged' signal
4960                 - Move 'StateChange' down to the deprecated section
4961
4962         * src/nm-hal-manager.c
4963                 - (nm_hal_manager_new): connect to 'state-changed' instead
4964
4965         * src/NetworkManagerPolicy.c
4966                 - (nm_policy_new): connect to 'state-changed' instead
4967
4968         * src/nm-manager.c
4969           src/nm-manager.h
4970                 - (nm_manager_update_state): emit both 'state-changed' and 'state-change'
4971                 - (nm_manager_class_init): add 'state-changed' and not the deprecation
4972                         of 'state-change'
4973
4974         * libnm-glib/nm-client.c
4975           libnm-glib/nm-client.h
4976                 - (constructor, nm_client_class_init, client_state_changed_proxy):
4977                         track and proxy 'state-changed' instead of 'state-change'
4978
4979 2008-03-07  Dan Williams  <dcbw@redhat.com>
4980
4981         First pass of multiple active device support.  Expect bugs.
4982
4983         * src/nm-ip4-config.c
4984           src/nm-ip4-config.h
4985                 - (nm_ip4_config_get_secondary, nm_ip4_config_set_secondary): remove;
4986                         there are better ways to do this in the named manager
4987
4988         * src/nm-device.c
4989           src/nm-device.h
4990                 - (nm_device_can_activate): return whether the device can activate a
4991                         connection right now; taking into account things like carrier state
4992                         and rfkill state
4993                 - (nm_device_get_best_auto_connection): renamed from
4994                         nm_device_get_best_connection
4995                 - (real_act_stage4_get_ip4_config): MTU stuff is now handled in the
4996                         device subclasses themselves, so that each device can override the
4997                         MTU from it's NMSetting subclass if needed
4998                 - (nm_device_set_ip4_config): set MTU when setting up routes and stuff
4999                         in NetworkManagerSystem.c, not here
5000
5001         * src/named-manager/nm-named-manager.c
5002           src/named-manager/nm-named-manager.h
5003                 - (nm_named_manager_name_owner_changed,
5004                    nm_named_manager_dbus_connection_changed): fix for changes to
5005                         rewrite_resolv_conf()
5006                 - (compute_nameservers): don't need the NMNamedManager at all, remove
5007                         from parameter list
5008                 - (merge_one_ip4_config): new function; merge ip4 configs together
5009                 - (rewrite_resolv_conf): write out resolv.conf from all the stored
5010                         ip4 configs; the VPN config takes precedence, then the best
5011                         device config, then the rest of the configs
5012                 - (get_domain_for_config): take the NMNamedManager as an argument
5013                         to check whether the config is the VPN config
5014                 - (add_ip4_config_to_named): fixups for removal of the 'secondary'
5015                         attribute from ip4 configs
5016                 - (add_all_ip4_configs_to_named): add all the configs in priority order
5017                 - (remove_ip4_config_from_named): fix for changes to
5018                         get_domain_for_config()
5019                 - (nm_named_manager_add_ip4_config): assign the config to the right slot
5020                         based on its type; callers must pass in the type now
5021                 - (get_last_default_domain): remove, unused
5022                 - (nm_named_manager_remove_ip4_config): handle config slots correctly
5023
5024         * src/nm-device-802-11-wireless.c
5025                 - (real_can_activate): new function
5026                 - (real_get_best_auto_connection): renamed from real_get_best_connection
5027                 - (real_act_stage4_get_ip4_config): handle MTU override
5028
5029         * src/nm-device-802-3-ethernet.c
5030                 - (real_can_activate): new function
5031                 - (real_get_best_auto_connection): renamed from real_get_best_connection
5032                 - (real_act_stage4_get_ip4_config): new function; handle MTU override
5033
5034         * src/vpn-manager/nm-vpn-connection.c
5035                 - (nm_vpn_connection_ip4_config_get): don't need to set the 'secondary'
5036                         attribute on the ip4 config
5037
5038         * src/NetworkManagerPolicy.c
5039                 - (nm_policy_auto_get_best_device): remove
5040                 - (nm_policy_device_change_check): remove
5041                 - (update_default_route): new function; set the default route via
5042                         the specified device
5043                 - (get_device_priority): new function; return the priority number of
5044                         a device type WRT which one should have the default route.  Order is
5045                         (highest to lowest)  wired, wireless, GSM, CDMA.
5046                 - (update_routing_and_dns): new function; determine which device should
5047                         have the default route, then update the routing table and DNS
5048                 - (maybe_auto_activate_device): new function; if a device is now
5049                         available for activation, find out what connection it would like to
5050                         activate and do it
5051                 - (schedule_activate_check): new function; if a device can be activated
5052                         now, schedule the activation.  Each device may have only one
5053                         pending activation at a given time.
5054                 - (device_state_changed): if activation was canceled, try again,
5055                         possibly with another connection; if the device was activated,
5056                         update routing and DNS; if the device was deactivated, try again
5057                         with another connection
5058                 - (device_carrier_changed): if there is no carrier, deactivate the
5059                         device; otherwise schedule an activation check for the device
5060                 - (wireless_networks_changed): schedule an activation check for the
5061                         device
5062                 - (device_added): keep track of the signal handler IDs so they can
5063                         be removed when the device goes away
5064                 - (device_removed): remove any signal handlers that might be attached
5065                         to the device; update routing and DNS
5066                 - (schedule_activate_all): new function
5067                 - (connections_added, connection_added, connection_updated): when
5068                         connections change, schedule all devices for an activation check
5069                 - (connection_removed): when a device is deactivated because its
5070                         connection was removed, schedule another activation check for it
5071                 - (nm_policy_destroy): destroy pending activations and disconnect
5072                         all device signal handlers
5073
5074         * src/nm-manager.c
5075                 - (nm_manager_activate_device): if the device was already actived,
5076                         deactivate it
5077                 - (deactivate_old_device): remove
5078                 - (connection_added_default_handler, impl_manager_activate_device):
5079                         don't deactivate other devices when activating this one
5080
5081         * src/backends/NetworkManagerGentoo.c
5082           src/backends/NetworkManagerFrugalware.c
5083           src/backends/NetworkManagerPaldo.c
5084           src/backends/NetworkManagerRedHat.c
5085           src/backends/NetworkManagerSlackware.c
5086           src/backends/NetworkManagerArch.c
5087           src/backends/NetworkManagerSuSE.c
5088           src/backends/NetworkManagerDebian.c
5089                 - (nm_system_get_mtu): remove; MTU should be provided through the
5090                         distro's system settings service plugin instead
5091                 - (nm_system_device_add_default_route_via_device): remove
5092                 - (nm_system_device_add_default_route_via_device_with_iface): remove
5093                 - (nm_system_device_replace_default_route): new function; call
5094                         generic implementation
5095
5096         * src/backends/NetworkManagerGeneric.c
5097           src/backends/NetworkManagerGeneric.h
5098                 - (nm_generic_device_add_default_route_via_device,
5099                    nm_generic_device_add_default_route_via_device_with_iface): remove
5100                 - (nm_generic_device_replace_default_route): replace the default route
5101                         with the given route via some gateway
5102
5103         * src/NetworkManagerSystem.c
5104           src/NetworkManagerSystem.h
5105                 - (nm_system_device_set_from_ip4_config): let the policy handle updates
5106                         to routing and DNS; but set the MTU here
5107                 - (nm_system_vpn_device_set_from_ip4_config): set the route with the
5108                         ip_iface of the active device; use the standard MTU setting function
5109                 - (nm_system_set_mtu): remove
5110                 - (nm_system_device_set_mtu): consolidate MTU setting code in one place
5111
5112 2008-03-07  Tambet Ingo  <tambet@gmail.com>
5113
5114         Rework the interaction between ppp manager and pppd plugin. Register a well
5115         known DBUS service in manager and let the plugin call it's methods instead
5116         of listening plugin's signals.
5117
5118         * src/ppp-manager/nm-pppd-plugin.c: Call ppp-manager dbus methods instead
5119         of emitting signals.
5120
5121         * src/ppp-manager/nm-ppp-manager.c: Implement dbus service here.
5122
5123         * src/ppp-manager/Makefile.am: Build nm-ppp-manager-glue.h.
5124
5125         * src/nm-serial-device.c (real_act_stage2_config): Pass NMConnection to
5126         nm_ppp_manager_start().
5127
5128         * introspection/nm-ppp-manager.xml: New file.
5129
5130         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_get_speed): Handle
5131         the case correctly where driver is trying to send -1 for the speed, which gets
5132         casted to u16 and thus is always > 0.
5133
5134 2008-03-07  Dan Williams  <dcbw@redhat.com>
5135
5136         * src/nm-hal-manager.c
5137                 - (nm_get_device_driver_name): use net.originating_device first, fall
5138                         back to physical device.  HAL has deprecated physical_device.
5139
5140         * libnm-glib/nm-device.c
5141                 - (get_product_and_vendor): use net.originating_device first, fall
5142                         back to physical device.  HAL has deprecated physical_device.
5143                 - (nm_device_update_description): s/physical_device_udi/orig_dev_udi
5144
5145 2008-03-07  Dan Williams  <dcbw@redhat.com>
5146
5147         * src/nm-netlink.c
5148                 - (nm_netlink_get_default_handle): mistakenly removed too much code in
5149                         last commit; fix that
5150                 - (get_link_cache): print error string
5151
5152 2008-03-07  Dan Williams  <dcbw@redhat.com>
5153
5154         * src/nm-netlink.c
5155                 - (nm_netlink_get_default_handle): NMNetlinkMonitor now uses libnl,
5156                         don't need this hack any more (Benoit Boissinot)
5157
5158 2008-03-06  Dan Williams  <dcbw@redhat.com>
5159
5160         * autogen.sh
5161                 - Die gnome-common, die
5162
5163 2008-03-04  Dan Williams  <dcbw@redhat.com>
5164
5165         Patch from Michael Biebl <biebl@debian.org>
5166
5167         * NetworkManager.pc.in
5168                 - doesn't actually depend on dbus-1
5169
5170         * libnm-util/nm-utils.h
5171                 - remove unused #include <dbus/dbus.h>
5172
5173         * libnm-glib/libnm_glib.pc.in
5174                 - depends on glib and dbus-glib
5175
5176 2008-03-02  Dan Williams  <dcbw@redhat.com>
5177
5178         * src/NetworkManagerPolicy.c
5179                 - s/device_state_changed_idle_id/update_state_id/
5180
5181 2008-03-02  Dan Williams  <dcbw@redhat.com>
5182
5183         * src/nm-device.c
5184           src/nm-device.h
5185           src/nm-device-802-11-wireless.c
5186           src/nm-device-802-3-ethernet.c
5187           src/NetworkManagerPolicy.c
5188                 - s/link_active/carrier
5189                 - nm_device_set_active_link() -> nm_device_set_carrier()
5190                 - nm_device_has_active_link() -> nm_device_get_carrier()
5191
5192 2008-03-02  Dan Williams  <dcbw@redhat.com>
5193
5194         * system-settings/plugins/ifcfg-fedora/parser.c
5195                 - (make_wireless_setting): fail connection creation on missing SSID
5196
5197 2008-02-29  Dan Williams  <dcbw@redhat.com>
5198
5199         * src/NetworkManagerPolicy.c
5200                 - (nm_policy_device_change_check): ensure that a previously active
5201                         device with a system connection has a link before denying a switch
5202                         to a user connection
5203
5204 2008-02-29  Dan Williams  <dcbw@redhat.com>
5205
5206         * src/nm-device-802-11-wireless.c
5207                 - (link_timeout_cb): try again if scanning; deactivate the device when
5208                         activated if the link dies
5209                 - (supplicant_iface_connection_state_cb_handler): bump link timeout to
5210                         15 seconds
5211
5212 2008-02-29  Dan Williams  <dcbw@redhat.com>
5213
5214         * src/nm-device-802-11-wireless.c
5215           src/nm-device-802-11-wireless.h
5216                 - (nm_device_802_11_wireless_reset_scan_interval): remove, unused
5217                         elsewhere; fold into the sole user in nm-device-802-11-wireless.c
5218                 - (device_cleanup): reset the scan interval lower when the device
5219                         deactivates
5220                 - (can_scan): base decision mostly off device state, not supplicant
5221                         interface state since the supplicant interface state isn't a
5222                         great indicator of whether the device is active or not
5223                 - (request_wireless_scan): clean up; schedule the next scan here
5224                 - (schedule_scan): only back the scan interval off if a new scan
5225                         actually gets scheduled; and make scan intervals tighter when the
5226                         device is disconnected
5227                 - (supplicant_iface_state_cb_handler): fold in the bits of
5228                         nm_device_802_11_wireless_reset_scan_interval() by resetting scan
5229                         interval to minimum
5230                 - (activation_success_handler): reset scan interval to something
5231                         reasonable 
5232
5233 2008-02-28  Saleem Abdulrasool  <compnerd@compnerd.org>
5234
5235         reviewed by: Steev <steev@steev.net>
5236
5237         * configure.in:
5238         * src/backends/NetworkManagerGentoo.c:
5239         (nm_system_restart_mdns_responder):
5240                 Howl is no longer a supported mDNS provider
5241
5242 2008-02-28  Tambet Ingo  <tambet@gmail.com>
5243
5244         Get rid of a bunch of unused distro specific functions.
5245
5246 2008-02-28  Tambet Ingo  <tambet@gmail.com>
5247
5248         Implement suse plugin for system settings daemon.
5249
5250         * system-settings/plugins/ifcfg-suse/*: Implement.
5251
5252         * system-settings/plugins/Makefile.am: Add ifcfg-suse to subdirs when targeting
5253         suse.
5254
5255         * configure.in: Check (without failing) for gio.
5256         Create ifcfg-suse plugin's Makefile.
5257
5258 2008-02-20  Dan Williams  <dcbw@redhat.com>
5259
5260         * libnm-util/nm-connection.c
5261           libnm-util/nm-connection.h
5262                 - (nm_connection_compare): accept compare flags and pass them to the
5263                         setting compare function
5264
5265         * libnm-util/nm-setting.c
5266           libnm-util/nm-setting.h
5267                 - (nm_setting_compare): accept compare flags; ignore properties that are
5268                         marked fuzzy
5269
5270         * libnm-util/nm-setting-connection.c
5271           libnm-util/nm-setting-wireless.c
5272           libnm-util/nm-setting-ppp.c
5273           libnm-util/nm-setting-wired.c
5274                 - Mark some setting properties as ignorable when doing a fuzzy compare
5275
5276         * src/nm-device.c
5277                 - (device_activation_precheck): use exact compare
5278
5279 2008-02-20  Dan Williams  <dcbw@redhat.com>
5280
5281         * src/NetworkManagerPolicy.c
5282                 - (nm_policy_device_change_check): get scope off the connection, not
5283                         using the manager helper
5284
5285         * src/nm-manager.c
5286           src/nm-manager.h
5287                 - (get_scope_for_proxy): rename from get_type_for_proxy()
5288                 - (connection_get_settings_cb): set scope and path on connection, not
5289                         using GObject data items
5290                 - (get_connection_for_proxy): don't need to return path, since that
5291                         can be gotten from the connection
5292                 - (get_connection_for_proxy): get path off the connection, not from
5293                         parameters
5294                 - (connection_removed_cb, connection_updated_cb): don't need to get
5295                         path from get_connection_for_proxy(); get scope off the connection
5296                         instead of using GObject data items
5297                 - (connection_added_default_handler, add_one_connection_element): use
5298                         nm_connection_get_path() not nm_manager_get_connection_dbus_path()
5299                 - (nm_manager_get_connection_dbus_path): remove
5300                 - (nm_manager_get_connection_scope): remove
5301
5302 2008-02-20  Dan Williams  <dcbw@redhat.com>
5303
5304         * Global rename of NMConnectionSettings -> NMExportedConnection to cut down
5305                 on confusing names
5306
5307         * Add 'path' and 'scope' properties to NMConnection since both NM and the
5308                 applet were having to hack this in anyway.  Remove the 'path' stuff from
5309                 NMExportedConnection
5310
5311         * Internally rename NMConnectionType -> NMConnectionScope
5312
5313         * Provide default implementations of the 'get_id' and 'get_settings' methods
5314                 of NMExportedConnection
5315
5316 2008-02-15  Dan Williams  <dcbw@redhat.com>
5317
5318         * src/nm-device-802-11-wireless.c
5319                 - (device_cleanup): release the AP list here too so that the AP list
5320                         doesn't survive across suspend/resume and up/down.  There is some
5321                         room for optimization, for example blow the list away when the card
5322                         brought back up, but only if the device has only been down for a
5323                         minute or more.
5324
5325 2008-02-15  Dan Williams  <dcbw@redhat.com>
5326
5327         * src/nm-hal-manager.c
5328                 - (modem_device_creator): recognize new HAL modem capabilities
5329
5330 2008-02-12  Dan Williams  <dcbw@redhat.com>
5331
5332         * system-settings/plugins/ifcfg-fedora/plugin.c
5333                 - (watch_path): handle IN_DELETE_SELF too
5334                 - (handle_connection_changed): notify when removing a connection
5335                 - (stuff_changed): don't warn on unknown inotify watches; handle the
5336                         case of a file moving out of the profile directory
5337
5338 2008-02-12  Dan Williams  <dcbw@redhat.com>
5339
5340         * system-settings/plugins/ifcfg-fedora/parser.c
5341                 - (make_ip4_setting): bring IPv4 setting handling more up to spec
5342
5343 2008-02-12  Dan Williams  <dcbw@redhat.com>
5344
5345         * libnm-util/nm-utils.c
5346                 - (nm_utils_convert_uint_array_to_string): don't die on NULL array, it's
5347                         just any empty array
5348
5349 2008-02-12  Dan Williams  <dcbw@redhat.com>
5350
5351         * system-settings/src/nm-system-config-interface.c
5352           system-settings/src/nm-system-config-interface.h
5353                 - (load_connections): get_connections() should now return an allocated
5354                         GSList that the system settings service will free
5355
5356         * system-settings/plugins/ifcfg-fedora/plugin.c
5357           system-settings/plugins/ifcfg-fedora/parser.h
5358           system-settings/plugins/ifcfg-fedora/parser.c
5359                 - Fix up inotify issues; handle keys-* files, handle new files appearing
5360                         in the profile directory, handle resolv.conf file changes
5361
5362 2008-02-10  Dan Williams  <dcbw@redhat.com>
5363
5364         * src/nm-device-802-3-ethernet.c
5365                 - (real_bring_up): save the supplicant interface state signal id
5366                 - (real_bring_down): disconnect from the supplicant interface state
5367                         signal
5368
5369 2008-02-07  Dan Williams  <dcbw@redhat.com>
5370
5371         * initscript/RedHat/NetworkManager.in
5372           initscript/RedHat/NetworkManagerDispatcher.in
5373                 - Add new-style LSB init headers
5374
5375 2008-02-07  Dan Williams  <dcbw@redhat.com>
5376
5377         * system-settings/src/dbus-settings.c
5378           system-settings/src/dbus-settings.h
5379                 - (add_one_secret_to_hash): copy secrets out of the plugin-returned hash
5380                         table of secrets
5381                 - (connection_settings_get_secrets): consolidate error returns into
5382                         one place; use the new get_secrets() plugin interface function to
5383                         get secrets from the plugin itself rather than using GObject data
5384                         magic
5385
5386         * system-settings/src/main.c
5387                 - (connection_added_cb, connection_removed_cb, free_plugin_connections,
5388                    load_connections): keep a private list of the plugin-returned
5389                         connections, don't use the plugin's GSList
5390
5391         * system-settings/plugins/ifcfg-fedora/plugin.c
5392                 - (watch_path): watch the path, not the filename (duh)
5393                 - (reload_all_connections): use the direct hash/equal functions; the
5394                         ones for int aren't appropriate here
5395                 - (get_secrets, system_config_interface_init): implement the
5396                         get_secrets() function
5397                 - (build_one_connection, find_connection_by_path): ifcfg file path is
5398                         now in the connection's ConnectionData instead of being a GObject
5399                         data property
5400                 - (handle_profile_item_changed): ifcfg file path is now in the
5401                         connection's ConnectionData instead of being a GObject data property;
5402                         be sure to copy secrets over from the new connection to the existing
5403                         connection when updating the connection's settings
5404                 - (init): sc_plugin_inotify_init() returns success/fail, not the inotify
5405                         file descriptor
5406
5407         * system-settings/plugins/ifcfg-fedora/parser.c
5408           system-settings/plugins/ifcfg-fedora/parser.h
5409                 - (connection_data_get, copy_one_cdata_secret, clear_one_cdata_secret,
5410                    connection_data_copy_secrets, connection_data_free,
5411                    connection_data_add): new functions; connection data manipulation
5412                 - (make_wireless_security_setting): stuff secrets into the
5413                         connection data, not as GObject data items; make sure to close
5414                         the keys ifcfg file
5415                 - (wireless_connection_from_ifcfg, wired_connection_from_ifcfg): add
5416                         connection data to the connection
5417
5418 2008-02-07  Dan Williams  <dcbw@redhat.com>
5419
5420         * system-settings/src/nm-system-config-interface.c
5421           system-settings/src/nm-system-config-interface.h
5422                 - Add a get_secrets() interface function to retrieve secrets for a
5423                         specific setting of a specific connection.  Document the interface
5424                         a bit more too.
5425
5426 2008-02-07  Dan Williams  <dcbw@redhat.com>
5427
5428         * src/nm-device-802-11-wireless.c
5429                 - (handle_auth_or_fail): new function; consolidate device activation
5430                         failure check after a certain number of failures getting secrets
5431                 - (supplicant_connection_timeout_cb, real_act_stage2_config,
5432                    real_act_stage4_ip_config_timeout): use handle_auth_or_fail() to fail
5433                         the connection if secrets were requested more than a few times
5434                 - (real_act_stage3_ip_config_start): don't clear the wireless secrets
5435                         tries here; otherwise they are cleared before the IP configure
5436                         timeout, which happens with open system WEP when key is wrong
5437                 - (activation_success_handler): clear wireless secrets tries here too
5438
5439 2008-02-07  Dan Williams  <dcbw@redhat.com>
5440
5441         * src/NetworkManagerPolicy.c
5442                 - (connection_updated): clear invalid tag when connection gets updated
5443                         to allow that connection to be tried again
5444                 - (nm_policy_new): save signal ids so they can be disconnected when
5445                         the policy is destroyed
5446                 - (nm_policy_destroy): stop any in-progress state change idle handler,
5447                         and disconnect all signals from the manager object so that none
5448                         of the policy functions gets called after the policy is destroyed
5449
5450 2008-02-06  Dan Williams  <dcbw@redhat.com>
5451
5452         * src/nm-manager.c
5453                 - (finalize): remove devices a bit earlier; clean up system settings
5454                         poke
5455                 - (nm_manager_name_owner_changed): clean up system settings poke when
5456                         the service appears, and try to restart it if it fails
5457                 - (poke_system_settings_daemon_cb): try to get the system settings
5458                         service started through D-Bus service activation
5459                 - (initial_get_connections): start the system settings daemon if it's
5460                         not already running
5461
5462 2008-02-05  Dan Williams  <dcbw@redhat.com>
5463
5464         * src/supplicant-manager/nm-supplicant-config.c
5465                 - (nm_supplicant_config_add_setting_wireless): send scan_ssid=1 for
5466                         broadcast networks too
5467
5468 2008-02-04  Dan Williams  <dcbw@redhat.com>
5469
5470         * system-settings/plugins/ifcfg-fedora/parser.c
5471                 - (make_wireless_security_setting): fix spelling; unencrypted networks
5472                         need key_mgmt set too
5473                 - (parser_parse_file): validate ifcfg file name and don't try to parse
5474                         .bak files; ensure that an error is set whenever NULL gets returned
5475
5476 2008-02-04  Dan Williams  <dcbw@redhat.com>
5477
5478         * system-settings/src/Makefile.am
5479                 - Install D-Bus service activation file for the system settings
5480                         service
5481
5482         * system-settings/src/org.freedesktop.NetworkManagerSystemSettings.service
5483                 - D-Bus service activation file for system settings service
5484
5485 2008-02-04  Dan Williams  <dcbw@redhat.com>
5486
5487         * system-settings/src/main.c
5488                 - (parse_config_file): parse a config file
5489                 - (main): accept --config option and read plugins from config file
5490
5491 2008-02-04  Dan Williams  <dcbw@redhat.com>
5492
5493         * system-settings/plugins/ifcfg-fedora/plugin.c
5494                 - Change reported name to 'ifcfg-fedora'
5495                 - Use IFCFG_PLUGIN_NAME
5496
5497         * system-settings/plugins/ifcfg-fedora/plugin.c
5498                 - Remove PLUGIN_NAME, use IFCFG_PLUGIN_NAME instead
5499
5500 2008-02-04  Dan Williams  <dcbw@redhat.com>
5501
5502         * system-settings/plugins/ifcfg-fedora/parser.c
5503                 - (get_ifcfg_name): new function; factor out ifcfg name finding code
5504                 - (make_connection_setting): use get_ifcfg_name()
5505                 - (make_wireless_security_setting): handle shadow key files
5506                 - (get_one_wep_key): treat empty string as NULL
5507
5508 2008-02-04  Dan Williams  <dcbw@redhat.com>
5509
5510         * src/supplicant-manager/nm-supplicant-manager.c
5511                 - (poke_supplicant_cb): reschedule the poke as a timeout, don't let
5512                         glib automatically reschedule
5513                 - (nm_supplicant_manager_init): immediately try to start the supplicant
5514                 - (nm_supplicant_manager_name_owner_changed): immediately try to restart
5515                         the supplicant
5516
5517 2008-02-01  Dan Williams  <dcbw@redhat.com>
5518
5519         * src/NetworkManagerPolicy.c
5520                 - (device_state_changed): schedule a change check when a device gets
5521                         deactivated so something happens if you disconnect GSM/CDMA
5522
5523 2008-01-31  Dan Williams  <dcbw@redhat.com>
5524
5525         * src/nm-device-802-11-wireless.h
5526           src/nm-device-802-11-wireless.c
5527                 - (ap_list_get_ap_by_ssid, is_associated,
5528                    nm_device_802_11_wireless_ap_list_get_ap_by_ssid,
5529                    nm_device_802_11_wireless_ap_list_get_ap_by_obj_path): remove
5530                 - (nm_device_802_11_wireless_get_activation_ap): collapse
5531                         nm_device_802_11_wireless_ap_list_get_ap_by_obj_path() into this
5532                         function
5533
5534 2008-01-30  Dan Williams  <dcbw@redhat.com>
5535
5536         * system-settings/plugins/ifcfg
5537         * system-settings/plugins/ifcfg-fedora
5538                 - Move the ifcfg plugin to ifcfg-fedora
5539
5540 2008-01-24  Dan Williams  <dcbw@redhat.com>
5541
5542         * libnm-glib/nm-device-802-11-wireless.c
5543                 - (get_access_point): move the "/" check here; check for invalid path
5544                         too
5545                 - (nm_device_802_11_wireless_set_active_ap): leave the "/" check up
5546                         to get_access_point()
5547                 - (access_point_added_proxy, access_point_removed_proxy): don't try
5548                         to send signals for non-existent access points
5549
5550 2008-01-24  Dan Williams  <dcbw@redhat.com>
5551
5552         * libnm-glib/nm-device-802-11-wireless.c
5553                 - (nm_device_802_11_wireless_set_active_ap): path of "/" means no AP
5554
5555 2008-01-23  Dan Williams  <dcbw@redhat.com>
5556
5557         * libnm-glib/libnm_glib.c
5558                 - (libnm_glib_init): make thread joinable
5559                 - (libnm_glib_ctx_free): join thread on exit to clean up memory
5560
5561 2008-01-23  Dan Williams  <dcbw@redhat.com>
5562
5563         * test/libnm_glib_test.c
5564                 - (signal_handler, setup_signals): trap SIGINT and SIGTERM
5565                 - (main): set up signal handlers; call libnm_glib_shutdown
5566
5567 2008-01-21  Dan Williams  <dcbw@redhat.com>
5568
5569         * include/NetworkManager.h
5570                 - Add CDMA mobile broadband card device type
5571
5572         * src/nm-hal-manager.c
5573                 - (modem_device_creator): handle both CDMA and GSM modems; the device
5574                         must now be tagged with 'cdma' or 'gsm' capability
5575
5576         * src/nm-cdma-device.c
5577           src/nm-cdma-device.h
5578           src/Makefile.am
5579                 - Add the CDMA mobile broadband card device class
5580
5581         * libnm-util/nm-connection.c
5582                 - (register_default_settings): add NMSettingCdma
5583
5584         * libnm-util/nm-setting-cdma.c
5585           libnm-util/nm-setting-cdma.h
5586           libnm-util/Makefile.am
5587                 - Add the CDMA mobile broadband card setting class
5588
5589         * libnm-glib/nm-cdma-device.c
5590           libnm-glib/nm-cdma-device.h
5591           libnm-glib/Makefile.am
5592                 - Add the CDMA mobile broadband card GLib proxy class
5593
5594         * libnm-glib/nm-client.c
5595                 - (get_device): handle CDMA devices too
5596
5597 2008-01-21  Dan Williams  <dcbw@redhat.com>
5598
5599         * src/ppp-manager/nm-ppp-manager.c
5600                 - (ip4_config_get): set peer address too
5601
5602         * src/ppp-manager/nm-pppd-plugin.c
5603                 - (nm_ip_up): try harder to get the peer's address
5604
5605         * src/NetworkManagerSystem.c
5606                 - (nm_system_device_set_from_ip4_config): if the IP4Config has a peer
5607                         address, use that too.  Otherwise, some PPP connections won't work.
5608
5609 2008-01-19  Dan Williams  <dcbw@redhat.com>
5610
5611         * src/NetworkManagerPolicy.c
5612                 - (nm_policy_device_change_check): system connections override user
5613                         connections; don't activate a user connection if there's a currently
5614                         active system connection, and new, better system connections always
5615                         interrupt user connections
5616
5617 2008-01-19  Dan Williams  <dcbw@redhat.com>
5618
5619         * src/nm-manager.h
5620                 - (nm_manager_get_connection_type): new function
5621
5622 2008-01-19  Dan Williams  <dcbw@redhat.com>
5623
5624         * src/nm-device-802-11-wireless.c
5625                 - (real_get_best_connection): collapse find_best_connection() into this
5626                         function
5627
5628 2008-01-19  Dan Williams  <dcbw@redhat.com>
5629
5630         * src/nm-device-802-3-ethernet.c
5631                 - (real_get_best_connection): collapse find_best_connection() into this
5632                         function
5633
5634 2008-01-18  Dan Williams  <dcbw@redhat.com>
5635
5636         * src/nm-device-802-3-ethernet.c
5637                 - (find_best_connection): check MAC address too
5638                 - (real_get_best_connection): let autoconnect=True connections activate
5639                         for devices that don't have carrier detection
5640
5641         * src/nm-device-802-11-wireless.c
5642                 - (find_best_connection): check MAC address too
5643
5644 2008-01-18  Dan Williams  <dcbw@redhat.com>
5645
5646         * system-settings/plugins/ifcfg/parser.c
5647                 - (make_connection_setting): interpret ON_BOOT=y as 'autoconnect=True'
5648
5649 2008-01-17  Dan Williams  <dcbw@redhat.com>
5650
5651         * src/nm-device-802-3-ethernet.c
5652                 - (nm_device_802_3_ethernet_carrier_on,
5653                    nm_device_802_3_ethernet_carrier_off): ignore any spurious netlink
5654                         carrier events that might come in for devices that don't support
5655                         carrier detect
5656
5657 2008-01-17  Dan Williams  <dcbw@redhat.com>
5658
5659         * src/nm-device-interface.c
5660                 - (nm_device_interface_check_connection_conflicts): need to actually
5661                         get the interface, not cast to the object
5662
5663         * src/nm-device.c
5664                 - (nm_device_check_connection_conflicts): need to get the device class,
5665                         not cast the device to the device class
5666
5667 2008-01-17  Dan Williams  <dcbw@redhat.com>
5668
5669         * src/nm-device-802-11-wireless.c
5670                 - (real_check_connection_conflicts): ignore connections that aren't
5671                         wireless connections
5672
5673 2008-01-17  Dan Williams  <dcbw@redhat.com>
5674
5675         * src/NetworkManagerPolicy.c
5676                 - (nm_policy_device_change_check): clear change check idle here
5677                 - (device_change_check_done): remove
5678                 - (schedule_change_check): simplify
5679
5680 2008-01-17  Dan Williams  <dcbw@redhat.com>
5681
5682         * src/nm-manager.c
5683                 - (check_connection_allowed): take an NMDeviceInterface instead of
5684                         an NMDevice object as an argument
5685                 - (nm_manager_activate_device): pass an NMDeviceInterface to
5686                         check_connection_allowed()
5687
5688 2008-01-13  Dan Williams  <dcbw@redhat.com>
5689
5690         * libnm-glib/nm-device-802-11-wireless.c
5691                 - (nm_device_802_11_wireless_get_access_points): fix memory leak
5692
5693 2008-01-12  Dan Williams  <dcbw@redhat.com>
5694
5695         * src/nm-device-802-11-wireless.c
5696                 - (activation_success_handler): if a match was found in the scan list
5697                         and that match is a hidden AP, update that AP's SSID
5698
5699 2008-01-11  Dan Williams  <dcbw@redhat.com>
5700
5701         * src/NetworkManagerAP.c
5702                 - (nm_ap_new_fake_from_connection): mark fake APs as fake
5703
5704         * src/nm-device-802-11-wireless.c
5705                 - (get_active_ap): do two passes over the scan list if the caller
5706                         requests that hidden APs get matched too; during the second pass
5707                         when matching hidden APs, ignore the SSID since hidden APs in the
5708                         scan list don't have an SSID yet
5709                 - (periodic_update): move some checks to
5710                         nm_device_802_11_periodic_update() because not all callers need them
5711                 - (nm_device_802_11_periodic_update): move some checks here from
5712                         perodic_update()
5713                 - (merge_scanned_ap): if the current AP is fake, then don't do strict
5714                         matching on incoming scan results, because the fake AP's flags
5715                         might be slightly different (yet still compatible) with the incoming
5716                         scan result's flags and they might actually be the same AP; update
5717                         the rate on merged APs too
5718                 - (activation_success_handler): update the frequency of the fake AP
5719                         on successful connection; match hidden APs too since if the
5720                         current AP is fake, there might already be a scan result in the
5721                         scan list for the desired AP, just without it's SSID filled in yet
5722
5723 2008-01-10  Dan Williams  <dcbw@redhat.com>
5724
5725         * src/NetworkManagerAP.c
5726                 - (foreach_property_cb): catch more hidden SSID formats
5727
5728 2008-01-10  Dan Williams  <dcbw@redhat.com>
5729
5730         Fix gnome.org #464215.  Requires the kernel patch titled
5731         "Introduce WEXT scan capabilities" but will handle the patch not being
5732         present, you'll just continue to have problems with hidden SSIDs when
5733         using mac80211-based drivers.
5734
5735         * src/supplicant-manager/nm-supplicant-config.h
5736           src/supplicant-manager/nm-supplicant-config.c
5737                 - (nm_supplicant_config_add_setting_wireless): new parameter to indicate
5738                         whether the driver supports SSID scans or not.  If it does, and if
5739                         the AP is hidden, use ap_scan=1 instead of ap_scan=2
5740
5741         * src/nm-device-802-11-wireless.c
5742                 - (constructor): check whether or not the driver supports SSID scans
5743                 - (build_supplicant_config): pass driver SSID scan capability when
5744                         building the wireless bits of the supplicant config
5745
5746 2008-01-09  Dan Williams  <dcbw@redhat.com>
5747
5748         * src/nm-device.c
5749           src/nm-device.h
5750                 - (device_activation_precheck, check_connection_complete): remove this
5751                         virtual function; incomplete connections should be invalid by
5752                         definition, complete-ness should be checked in the setting's
5753                         verify function
5754
5755         * src/nm-serial-device.c
5756           src/nm-gsm-device.c
5757                 - (real_check_connection_complete): remove
5758
5759         * libnm-util/nm-setting-serial.c
5760                 - (verify): new function; ensure there is a PPP setting too
5761
5762         * libnm-util/nm-setting-gsm.c
5763                 - (verify): ensure there is a serial setting too
5764
5765 2008-01-06  Dan Williams  <dcbw@redhat.com>
5766
5767         * src/dhcp-manager/nm-dhcp-manager.c
5768                 - (nm_dhcp_manager_get_ip4_config): handle DHCP-provided MTU
5769                         (gnome.org #332953)
5770
5771 2008-01-04  Dan Williams  <dcbw@redhat.com>
5772
5773         * src/named-manager/nm-named-manager.c
5774                 - (rewrite_resolv_conf, add_ip4_config_to_named): use primary IP4Config's
5775                         nameservers if the secondary config doesn't have any
5776                         (gnome.org #346833)
5777
5778 2008-01-02  Tambet Ingo  <tambet@gmail.com>
5779
5780         * libnm-util/nm-setting-serial.c (nm_setting_serial_class_init): Mark the properties
5781         with G_PARAM_CONSTRUCT so that they get the default values.
5782
5783         * src/nm-gsm-device.c: Add preliminary support for monitoring device. It only monitors
5784         the monitoring device and prints out the output for now. Or more precicely, doesn't
5785         do absolutely anything right now since the montoring device argument is never set.
5786
5787         * src/nm-serial-device.c (serial_debug): Implement. It's very verbose and thus
5788         requires it's own knob to turn it on.
5789         (config_fd): Add NMSettingSerial to the arguments list.
5790         (nm_serial_device_open): Ditto.
5791         (get_reply_got_data): Ignore the terminators at the beginning of the output.
5792         (nm_serial_device_get_io_channel): Implement.
5793
5794         * src/nm-manager.c: Add NMDBusManager to the private data of the NMManager. Asking
5795         a new reference every time (and forgetting to release it sometimes) is a pain and
5796         it's not like NMManager could work without dbus.
5797         (nm_manager_add_device): Register the added device on dbus here.
5798
5799         * src/nm-hal-manager.c (modem_device_creator): Pass NULL for now for the monitoring
5800         device.
5801
5802         * src/nm-device.c (constructor): Don't export the device here, instead export
5803         it when it's added to the NMManager's device list.
5804
5805 2007-12-31  Dan Williams  <dcbw@redhat.com>
5806
5807         * src/nm-device-interface.c
5808           src/nm-device-interface.h
5809                 - (nm_device_interface_check_connection_conflicts): new function
5810
5811         * src/nm-device.c
5812           src/nm-device.h
5813                 - (nm_device_check_connection_conflicts): new function
5814                 - (device_activation_precheck): don't require subclasses to implement
5815                         check_connection_complete()
5816                 - check_connection() -> check_connection_complete()
5817
5818         * src/nm-device-802-11-wireless.c
5819                 - (real_check_connection): remove; unused
5820                 - (real_check_connection_conflicts): implement, handle lockdown for
5821                         system connections
5822
5823         * src/nm-device-802-3-ethernet.c
5824                 - (real_check_connection): remove; unused
5825
5826         * src/nm-manager.c
5827                 - (check_connection_allowed): new function
5828                 - (nm_manager_activate_device): ensure the connection being requested
5829                         is allowed to be activated
5830
5831         * src/nm-serial-device.c
5832           src/nm-gsm-device.c
5833                 - real_check_connection() -> real_check_connection_complete()
5834
5835 2007-12-27  Dan Williams  <dcbw@redhat.com>
5836
5837         * src/nm-device-interface.c
5838           src/nm-device-interface.h
5839                 - (nm_device_interface_error_quark, nm_device_interface_error_get_type):
5840                         normalize and expand errors
5841                 - (nm_device_interface_init): register errors so they can be marshalled
5842                         through dbus-glib
5843                 - (nm_device_interface_activate): ensure that failure of activation
5844                         returns an error
5845
5846         * src/nm-device.c
5847           src/nm-device.h
5848                 - (device_activation_precheck): implementations of check_connection()
5849                         now take a GError and must fill it in if the check fails.  Return
5850                         more descriptive error if the requested connection is already
5851                         activating
5852                 - (nm_device_activate): actually try to return descriptive errors on
5853                         failures
5854
5855         * src/nm-device-802-11-wireless.c
5856           src/nm-device-802-3-ethernet.c
5857           src/nm-serial-device.c
5858           src/nm-gsm-device.c
5859                 - (real_check_connection): return more descriptive errors on failure
5860
5861         * src/NetworkManagerPolicy.c
5862                 - (nm_policy_device_change_check): print activation errors in the logs
5863
5864         * src/nm-manager.c
5865                 - (nm_manager_error_quark, nm_manager_error_get_type,
5866                    nm_manager_class_init): new errors
5867                 - (nm_manager_activate_device): handle errors
5868                 - (nm_manager_error_new): removed
5869                 - (wait_for_connection_expired, connection_added_default_handler,
5870                    impl_manager_activate_device): better error handling
5871
5872 2007-12-27  Dan Williams  <dcbw@redhat.com>
5873
5874         Fixes gnome.org #466954
5875
5876         * src/supplicant-manager/nm-supplicant-settings-verify.c
5877                 - Allow 'frequency' network property
5878
5879         * src/supplicant-manager/nm-supplicant-config.c
5880           src/supplicant-manager/nm-supplicant-config.h
5881                 - (nm_supplicant_config_add_setting_wireless): add 'adhoc_freq' argument
5882                         for callers to specify the frequency an Ad-Hoc network should operate
5883                         on.  Some drivers require this to successfully create an Ad-Hoc
5884                         network.
5885
5886         * src/nm-device-802-11-wireless.c
5887                 - (iw_freq_to_uint32): new function; convert a struct iw_freq into a
5888                         guint32 value in MHz
5889                 - (constructor, nm_device_802_11_wireless_get_frequency): use
5890                         iw_freq_to_uint32()
5891                 - (find_supported_frequency): new function; find a free supported
5892                         frequency for a user-created Ad-Hoc network
5893                 - (build_supplicant_config): if no frequency was specified for a user-
5894                         created Ad-Hoc network, find a free one to use
5895                 - (real_act_stage1_prepare): mark Ad-Hoc connections that don't have
5896                         a specific object as user-created
5897
5898 2007-12-27  Dan Williams  <dcbw@redhat.com>
5899
5900         * libnm-util/nm-utils.c
5901           libnm-util/nm-utils.h
5902                 - (nm_utils_security_valid): add 'adhoc' argument and handle security
5903                         for adhoc networks
5904
5905 2007-12-24  Dan Williams  <dcbw@redhat.com>
5906
5907         * libnm-util/nm-setting-wireless.c
5908                 - (verify): add 802.11a channels 7, 8, 9, 11, 12, 16, 34, 165, 183, 184,
5909                         185, 187, 188, 192, and 196
5910
5911 2007-12-24  Dan Williams  <dcbw@redhat.com>
5912
5913         * src/nm-device-802-11-wireless.c
5914                 - (nm_device_802_11_wireless_get_frequency): handle drivers that return
5915                         a channel # instead of a frequency
5916
5917 2007-12-24  Dan Williams  <dcbw@redhat.com>
5918
5919         * src/NetworkManagerAP.c
5920           src/NetworkManagerAP.h
5921                 - (nm_ap_new_fake_from_connection): pass band to channel_to_freq()
5922                 - (freq_to_channel): handle split band tables
5923                 - (channel_to_freq): handle split band tables, take a band argument
5924
5925 2007-12-24  Dan Williams  <dcbw@redhat.com>
5926
5927         * libnm-util/nm-setting-connection.h
5928           libnm-util/nm-setting-connection.c
5929                 - Add 'lockdown' member
5930
5931 2007-12-22  Dan Williams  <dcbw@redhat.com>
5932
5933         * libnm-util/nm-setting-wireless.c
5934                 - (nm_setting_wireless_class_init): add missing 'rate' property
5935                         specification
5936
5937 2007-12-18  Dan Williams  <dcbw@redhat.com>
5938
5939         Base the NMNetlinkMonitor class on libnl instead of hand-rolled netlink.
5940
5941         * src/nm-netlink-monitor.c
5942           src/nm-netlink-monitor.h
5943                 - Remove handrolled netlink, use libnl instead
5944
5945         * src/nm-device-802-3-ethernet.c
5946                 - (constructor, nm_device_802_3_ethernet_carrier_off,
5947                    nm_device_802_3_ethernet_carrier_on): use new names
5948
5949 2007-12-17  Dan Williams  <dcbw@redhat.com>
5950
5951         * configure.in
5952                 - Bump requirement for libnl to 1.0-pre8 (which works with newer kernels
5953                         and fixes memory leaks)
5954
5955         * src/nm-netlink.c
5956                 - (nm_netlink_get_default_handle): handle new versions of libnl that
5957                         automatically handle the netlink PID
5958
5959 2007-12-17  Dan Williams  <dcbw@redhat.com>
5960
5961         Patch from Michael Biebl <biebl@debian.org>
5962
5963         * configure.in
5964           src/ppp-manager/Makefile.am
5965                 - fix up install dir of pppd plugin
5966                 - clean up configure.in a bit
5967
5968 2007-12-12  Dan Williams  <dcbw@redhat.com>
5969
5970         * system-settings/src/nm-system-settings.conf
5971                 - Allow non-root clients (like the applet) to read settings
5972
5973 2007-12-10  Tambet Ingo  <tambet@gmail.com>
5974
5975         * Replace all occurences of 'UMTS' with 'GSM'.
5976
5977 2007-12-07  Dan Williams  <dcbw@redhat.com>
5978
5979         * src/nm-serial-device.c
5980                 - (real_is_up): serial devices are always "up"
5981
5982 2007-12-07  Dan Williams  <dcbw@redhat.com>
5983
5984         * src/nm-netlink.c
5985           src/NetworkManagerSystem.c
5986                 - (new_nl_handle): ensure that the same netlink pid is never chosen
5987                         twice (gnome.org #491047)
5988                 - Make more robust against allocation-related failures should they occur
5989
5990 2007-12-07  Dan Williams  <dcbw@redhat.com>
5991
5992         Noticed by Christian Persch <chpe@gnome.org>
5993
5994         Always chain up to parent object in dispose and finalize handlers.
5995                 (gnome.org #433112)
5996
5997 2007-12-07  Dan Williams  <dcbw@redhat.com>
5998
5999         * src/nm-device-802-11-wireless.c
6000                 - Wrap #include of linux/mii.h to fix redefined structures due to
6001                         incorrect kernel headers (gnome.org #350061)
6002
6003 2007-12-06  Tambet Ingo  <tambet@gmail.com>
6004
6005         * src/nm-umts-device.c (real_act_stage1_prepare): Flash the modem (drop DTR)
6006         before doing anything else.
6007         (init_modem): Move modem initialization here.
6008
6009         * src/nm-serial-device.c (ppp_state_changed): React on pppd state changes.
6010         (nm_serial_device_flash): Implement.
6011
6012         * src/ppp-manager/nm-ppp-manager.c (name_owner_changed): Fix the typoes: the state
6013         changes signal is "StateChanged" and not "Status".
6014         (ppp_exit_code, ppp_status_changed): Remove the debug output, it's working fine now.
6015
6016 2007-12-06  Dan Williams  <dcbw@redhat.com>
6017
6018         * src/supplicant-manager/nm-supplicant-config.c
6019                 - (nm_supplicant_config_add_setting_wireless_security): reorganize a bit
6020                         to only send some options when they make sense; also send phase2
6021                         option to the supplicant (possible fix for rh #399631)
6022
6023 2007-12-06  Tambet Ingo  <tambet@gmail.com>
6024
6025         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): Change the
6026         arguments: This whole file shouldn't really know anything about NMDevices, it
6027         should deal only with device interfaces. Devices might have different ifaces for
6028         different stuff and this place shouldn't know anything about it.
6029
6030         * src/NetworkManagerPolicy.c: Get rid of leftover global variable global_policy.
6031         (global_state_changed): Implement. In the current NM it's not really important,
6032         but will be required in the case of multiple active devices. (Or even better,
6033         if stuff like that gets moved out from NM).
6034
6035         * src/vpn-manager/nm-vpn-connection.c (connection_state_changed): Don't call
6036         nm_system_device_set_from_ip4_config() directly, use nm_device_set_ip4_config() 
6037         instead.
6038
6039         * src/nm-device.c: Add a ip_face protected member. It's used for 'multi-interface'
6040         devices like serial devices (ttyS0 and ppp0 for example).
6041         (nm_device_get_ip_iface): Implement. Default to the device iface if ip_iface is not
6042         set.
6043         (nm_device_set_ip_iface): Implement.
6044         (nm_device_activate_stage5_ip_config_commit): Move all the extra actions that happen
6045         after setting ip4_config from here ...
6046         (nm_device_set_ip4_config): ... to here. The reason behind it is that no other code
6047         than this function should call nm_system_device_set_from_ip4_config() because no
6048         other code has enough information on which arguments to use. So instead, other code
6049         could just set the new ip4 config using this function and everyone is happy.
6050
6051         * src/nm-umts-device.c: Store the pending ids so that we can remove pending actions
6052         if we happen to get deactivated while something is pending.
6053         (automatic_registration): Handle the response that indicates pending network
6054         registration and wait until the pending registration is done.
6055         (real_deactivate_quickly): If there's a pending operation, cancel it.
6056
6057         * src/nm-serial-device.c (ppp_ip4_config): Set the ip_iface when the iface is up ...
6058         (real_deactivate_quickly): ... and remove it when it's down.
6059         (nm_serial_device_get_reply): Return the timeout id so that the callers can remove
6060         it if needed.
6061         (nm_serial_device_wait_for_reply): Ditto.
6062
6063 2007-12-05  Tambet Ingo  <tambet@gmail.com>
6064
6065         * src/nm-umts-device.c (dial_done): Fix the typoes in warnings.
6066         (get_network_done): Remove newline, nm_info() does it already.
6067         (real_act_stage1_prepare): Turn the modem echo off.
6068
6069         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): In case of serial
6070         device, set the route to the device interface. This is a hack.
6071
6072         * src/nm-serial-device.c (nm_serial_device_send_command_string): Only append carriage 
6073         return, no need for a new-line.
6074         (ppp_ip4_config): Store the ip4 config to be set in the next stage.
6075         Change the device iface here (ugh).
6076         (real_act_stage4_get_ip4_config): Implement.
6077         (real_deactivate_quickly): Free the pending ip4 config if it's still pending.
6078         Restore the device iface.
6079
6080         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Do nothing if the active
6081         device is not wired or wireless (eg, automatically upped) device.
6082
6083         * src/ppp-manager/nm-ppp-manager.c (ip4_config_get): Don't make the config secondary,
6084         it isn't.
6085         (nm_ppp_manager_start): Don't let pppd to set the default route, we want to do it.
6086
6087         * src/nm-hal-manager.c (get_creator): Make sure the device has required capability
6088         before calling it's is_device_fn().
6089
6090 2007-12-05  Dan Williams  <dcbw@redhat.com>
6091
6092         * libnm-util/nm-utils.c
6093                 - (nm_utils_register_value_transformations,
6094                    nm_utils_convert_gvalue_hash_to_string): better debug output of
6095                         GHashTables of GValues too
6096
6097 2007-12-04  Dan Williams  <dcbw@redhat.com>
6098
6099         * initscript/RedHat/NetworkManager.in
6100                 - No longer start named; it's D-Bus interface is going away
6101
6102 2007-12-04  Dan Williams  <dcbw@redhat.com>
6103
6104         Patch from Michael Biebl <biebl@debian.org>
6105
6106         * system-settings/plugins/ifcfg/Makefile.am
6107           system-settings/src/main.c
6108           system-settings/src/Makefile.am
6109                 - Put system settings plugins in NM plugins dir
6110
6111         * src/ppp-manager/Makefile.am
6112           src/ppp-manager/nm-ppp-manager.c
6113                 - Move pppd plugin to NM plugins dir
6114
6115 2007-12-04  Dan Williams  <dcbw@redhat.com>
6116
6117         * libnm-util/nm-setting-vpn-properties.h
6118                 - Clarify usage of the 'data' member of the setting
6119
6120         * libnm-util/nm-setting-vpn-properties.c
6121                 - (nm_setting_vpn_properties_init): initialize the 'data' hash table
6122                 - (set_property): just remove all the settings; don't recreate the has
6123                 - (update_one_secret): don't need to create the hash table here since
6124                         it should always be present
6125
6126 2007-12-03  Tambet Ingo  <tambet@gmail.com>
6127
6128         Implement PIN and PUK requesting.
6129
6130         * src/nm-umts-device.c (enter_pin_done): Request the secret again if it failed.
6131         (enter_pin): Handle PIN and PUK requests.
6132         (real_act_stage1_prepare): Clear the secret type.
6133         (real_connection_secrets_updated): Implement this class method to get
6134         notified when new secrets arrive.
6135         (nm_umts_device_class_init): Add private data back to the umts device class
6136         to store the required secret type.
6137
6138 2007-12-01  Dan Williams  <dcbw@redhat.com>
6139
6140         * system-settings/plugins/ifcfg/parser.c
6141                 - (parser_parse_file): don't try to verify NULL connections
6142
6143 2007-12-01  Dan Williams  <dcbw@redhat.com>
6144
6145         * system-settings/src/main.c
6146                 - (load_connections, add_connection_to_settings): actually export
6147                         plugin-provided connections over D-Bus so NM can get them
6148
6149 2007-12-01  Dan Williams  <dcbw@redhat.com>
6150
6151         * system-settings/plugins/ifcfg/parser.c
6152           system-settings/plugins/ifcfg/parser.h
6153           system-settings/plugins/ifcfg/plugin.c
6154                 - Hook up more inotify bits (untested)
6155
6156 2007-11-29  Dan Williams  <dcbw@redhat.com>
6157
6158         * system-settings/src/nm-system-config-interface.h
6159           system-settings/src/nm-system-config-interface.c
6160                 - (nm_system_config_interface_init,
6161                    nm_system_config_interface_get_connections): add
6162
6163         * system-settings/src/main.c
6164                 - (load_plugins, load_connections, main): use a GSList for plugins
6165                         to ensure priority ordering
6166
6167         * system-settings/plugins/ifcfg/parser.c
6168                 - (ifcfg_error_quark): move to plugin.c, and rename
6169
6170         * system-settings/plugins/ifcfg/plugin.h
6171           system-settings/plugins/ifcfg/plugin.c
6172                 - (ifcfg_plugin_error_quark): move here from parser.c
6173                 - rework connection loading and initialization
6174                 - Add preliminary inotify support for network profile config file
6175
6176 2007-11-28  Tambet Ingo  <tambet@gmail.com>
6177
6178         Merge the beginnings of the new GSM card support.
6179
6180         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_stop): Remove the
6181         ppp watch source before killing pppd - If this happens from g_object_unref()
6182         then the ppp manager is already destroyed by the time the watch callback runs.
6183
6184         * src/nm-hal-manager.c: Add a device_type_name string to the device
6185         creators, so that we can print a nice human readable string when a
6186         device is added.
6187
6188         * src/nm-umts-device.c (automatic_registration_get_network): Query
6189         for the activated network, not much is done with the result thought.
6190
6191         * src/nm-serial-device.c (nm_serial_device_get_reply): Implement.
6192         (ppp_ip4_config): Change the device state to activated here for now.
6193         (real_check_connection): Make sure the connection includes ppp setting.
6194
6195         * libnm-glib/nm-client.c (get_device): Handle umts devices.
6196
6197         * libnm-glib/Makefile.am: Add the new files to build.
6198
6199         * libnm-glib/nm-umts-device.c: 
6200         * libnm-glib/nm-umts-device.h: Implement.
6201
6202 2007-11-26  Tambet Ingo  <tambet@gmail.com>
6203
6204         * src/nm-umts-device.c (automatic_registration_get_network): For now, dial
6205         immediately, nm_serial_device_get_reply() isn't implemented correctly yet.
6206
6207         * src/nm-serial-device.c (wait_for_reply_info_destroy): Don't try to remove
6208         the timeout source - this function is only called when the timeout source has
6209         been removed.
6210         (nm_serial_device_wait_for_reply): Allocate the duplicate responses array
6211         to be big enough to contain the terminating zero element as well.
6212         The timeout argument is meant to be in seconds now.
6213         (real_deactivate_quickly): Implement.
6214
6215         * src/NetworkManager.conf: Allow root to own 
6216         "org.freedesktop.NetworkManager.PPP", deny it for everybody else.
6217
6218         * libnm-util/nm-setting-umts.c: Network type and band properties are ints,
6219         (not unsigned ints).
6220
6221         * libnm-util/nm-setting-serial.c (nm_setting_serial_class_init): Fix a 
6222         small issue with parity bounds - capital letters have lower ascii codes
6223         than lower case letters.
6224
6225         * libnm-util/nm-connection.c (register_default_settings): Register serial
6226         and umts settings.
6227
6228 2007-11-22  Tambet Ingo  <tambet@gmail.com>
6229
6230         Remove the "index" property from devices as not all device types have this.
6231
6232         * include/NetworkManager.h (NM_DBUS_PATH_DEVICE): Remove.
6233
6234         * src/nm-hal-manager.c (nm_get_device_index_from_hal): Remove.
6235         (wired_device_creator): Get the device interface from hal to create the device.
6236         (wireless_device_creator): Ditto.
6237
6238         * src/nm-device.c (nm_device_init): Remove the index member.
6239         (constructor): Remove the checks for index property, make interface property
6240         a require constructor property.
6241         Use the HAL udi for DBus path for devices.
6242         (nm_device_get_index): Remove.
6243         (set_property): Remove index handling.
6244         (get_property): Ditto.
6245         (nm_device_get_dbus_path): Remove.
6246
6247         * src/nm-device-interface.c (nm_device_interface_init): Remove the index
6248         property.
6249
6250         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_link_activated):
6251         Access the device index through it's interface.
6252         (nm_device_802_3_ethernet_link_deactivated): Ditto.
6253         (nm_device_802_3_ethernet_new): Remove the useless argument test_dev. Remove
6254         index argument. Add interface argument.
6255
6256         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_new): Remove
6257         the useless test_dev argument. Remove index argument. Add interface arugment.
6258
6259         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): Get the
6260         device index through interface.
6261         (nm_system_set_mtu): Ditto.
6262
6263         * introspection/nm-device.xml: Remove the "Index" property.
6264
6265 2007-11-21  Tambet Ingo  <tambet@gmail.com>
6266
6267         * src/nm-serial-device.c: 
6268         * src/nm-serial-device.c: 
6269         * src/nm-umts-device.c:
6270         * src/nm-umts-device.h: Implement.
6271
6272         * src/nm-hal-manager.c (nm_get_device_driver_name): libhal_free_string the string 
6273         allocated by libhal.
6274         (modem_device_creator): Implement.
6275         (register_built_in_creators): Register the modem creator.
6276
6277         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_new): 
6278         Remove the unused test_dev argument.
6279
6280         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_new): Ditto.
6281
6282         * src/Makefile.am: Add new files to build.
6283         Link in ppp-manager.
6284
6285         * libnm-util/nm-setting-umts.c: 
6286         * libnm-util/nm-setting-umts.h: 
6287         * libnm-util/nm-setting-serial.c: 
6288         * libnm-util/nm-setting-serial.h: Implement.
6289
6290         * libnm-util/Makefile.am: Add new files to build.
6291
6292 2007-11-28  Dan Williams  <dcbw@redhat.com>
6293
6294         Patch from Zdeněk Jurka <zdenek.jurka@jware.cz>
6295
6296         Support DHCP-provided static routes.
6297
6298         * src/nm-ip4-config.h
6299           src/nm-ip4-config.c
6300                 - Add get/set functions for static routes
6301
6302         * src/dhcp-manager/nm-dhcp-manager.c
6303                 - (nm_dhcp_manager_get_ip4_config): extract static routes from the
6304                         DHCP response
6305
6306         * src/NetworkManagerSystem.c
6307                 - (nm_system_device_set_from_ip4_config): set any static routes on the
6308                         interface when applying the IP4Config
6309
6310 2007-11-28  Dan Williams  <dcbw@redhat.com>
6311
6312         * src/nm-device-802-11-wireless.c
6313                 - (real_act_stage1_prepare): mark APs created for hidden networks
6314                         as non-broadcasting
6315
6316 2007-11-27  Dan Williams  <dcbw@redhat.com>
6317
6318         * system-settings/src/nm-system-config-interface.h
6319                 - Note how to store secrets on NMSetting objects
6320
6321         * system-settings/src/dbus-settings.c
6322                 - (connection_settings_get_secrets): implement
6323
6324 2007-11-27  Dan Williams  <dcbw@redhat.com>
6325
6326         * system-settings/plugins/ifcfg/Makefile.am
6327           system-settings/plugins/ifcfg/parser.c
6328           system-settings/plugins/ifcfg/parser.h
6329           system-settings/plugins/ifcfg/plugin.c
6330                 - Parse wireless connections too
6331
6332         * system-settings/src/dbus-settings.c
6333           system-settings/src/dbus-settings.h
6334           system-settings/src/main.c
6335                 - Handle connection update/removal if the plugin supports it
6336
6337 2007-11-27  Dan Williams  <dcbw@redhat.com>
6338
6339         * src/nm-dbus-manager.h
6340           src/nm-hal-manager.c
6341                 - Include the correct headers now that NetworkManagerDbusUtils.h doesn't
6342                         do it for them
6343
6344         * src/Makefile.am
6345           src/NetworkManagerDbusUtils.c
6346           src/NetworkManagerDbusUtils.h
6347                 - Remove these two source files; they are unused
6348
6349 2007-11-27  Dan Williams  <dcbw@redhat.com>
6350
6351         * src/vpn-manager/nm-vpn-manager.c
6352                 - (impl_vpn_manager_connect): fix system settings check (found by
6353                         James M. Leddy)
6354
6355 2007-11-26  Dan Williams  <dcbw@redhat.com>
6356
6357         * Fix warnings so everything compiles with --enable-more-warnings
6358
6359 2007-11-25  Dan Williams  <dcbw@redhat.com>
6360
6361         * system-settings/*
6362                 - Rework structure and code to use GModule-loaded plugins and a plugin
6363                         interface that plugins export to the system settings service
6364
6365 2007-11-21  Dan Williams  <dcbw@redhat.com>
6366
6367         * system-settings/*
6368                 - Add Soren's system settings service.  Needs work for distros other
6369                         than Fedora; the backends from NM should mostly migrate to here
6370                         and be converted to GObjects
6371
6372 2007-11-21  Dan Williams  <dcbw@redhat.com>
6373
6374         * libnm-util/nm-setting-vpn-properties.c
6375                 - (set_property): must deep-copy the given settings hash, otherwise
6376                         double-free errors occur when the setting is disposed of
6377
6378 2007-11-21  Dan Williams  <dcbw@redhat.com>
6379
6380         * src/vpn-manager/nm-vpn-act-request.h
6381           src/vpn-manager/nm-vpn-act-request.c
6382                 - Remove; unused
6383
6384 2007-11-20  Dan Williams  <dcbw@redhat.com>
6385
6386         * libnm-util/nm-utils.c
6387                 - (nm_utils_convert_strv_to_string, nm_utils_convert_uint_array_to_string,
6388                    nm_utils_convert_ip4_addr_struct_array_to_string,
6389                    nm_utils_register_value_transformations): print out the readable
6390                         values of more types of properties of NMSettings subclasses
6391
6392 2007-11-20  Dan Williams  <dcbw@redhat.com>
6393
6394         * libnm-util/nm-setting-ip4-config.c
6395                 - (ip4_addresses_from_gvalue, ip4_addresses_to_gvalue,
6396                    nm_setting_ip4_config_class_init): apparently dbus-glib can't
6397                         marshal GValueArrays inside collections, so switch to types that it
6398                         can actually marshal/demarshal
6399
6400 2007-11-16  Dan Williams  <dcbw@redhat.com>
6401
6402         * libnm-util/nm-setting-wireless-security.c
6403                 - (verify_tls, verify_ttls, verify_identity, verify_nai): do some
6404                         minimal verification of EAP methods too
6405                 - (verify): verify phase1 eap methods too
6406
6407 2007-11-15  Dan Williams  <dcbw@redhat.com>
6408
6409         * libnm-glib/nm-device.h
6410           libnm-glib/nm-device.c
6411                 - (nm_device_get_product, nm_device_get_vendor): should be returning
6412                         const char *
6413
6414 2007-11-15  Dan Williams  <dcbw@redhat.com>
6415
6416         * libnm-glib/nm-device.c
6417                 - (get_product_and_vendor): don't try to free things that should be
6418                         freed
6419
6420 2007-11-15  Dan Williams  <dcbw@redhat.com>
6421
6422         * src/NetworkManagerUtils.c
6423                 - (nm_ethernet_address_is_valid): unbreak previous fix
6424
6425 2007-11-15  Dan Williams  <dcbw@redhat.com>
6426
6427         * src/supplicant-manager/nm-supplicant-config.c
6428                 - (nm_supplicant_config_add_setting_wireless_security): handle PEAP
6429                         options
6430
6431 2007-11-15  Dan Williams  <dcbw@redhat.com>
6432
6433         * src/NetworkManagerUtils.c
6434                 - (nm_ethernet_address_is_valid): fix style, clarify
6435                 - (nm_ethernet_addresses_are_equal): don't try to memcmp NULLs
6436
6437         * src/nm-device-802-11-wireless.c
6438                 - (get_active_ap): handle failure from nm_device_802_11_wireless_get_bssid()
6439                 - (nm_device_802_11_wireless_get_ssid,
6440                    nm_device_802_11_wireless_get_bssid,
6441                    nm_device_802_11_wireless_get_bitrate): zero the wreq structure
6442                         before calling the ioctl; fixes valgrind-reported jump depends on
6443                         uninitialized value errors
6444
6445 2007-11-15  Dan Williams  <dcbw@redhat.com>
6446
6447         * libnm-util/nm-setting.c
6448                 - (nm_setting_to_hash, one_property_cb): revert previous commit, it's
6449                         unecessary to serialize 'name'
6450
6451         * src/nm-activation-request.c
6452                 - (get_secrets_cb): fix cases where a full NMSetting is returned from
6453                         the GetSecrets call
6454
6455 2007-11-15  Dan Williams  <dcbw@redhat.com>
6456
6457         * libnm-util/nm-setting-connection.h
6458           libnm-util/nm-setting-connection.c
6459                 - Rename the 'name' property to 'id', because it conflicted with the
6460                         NMSetting superclass' 'name' property.
6461
6462         * libnm-util/nm-setting.c
6463                 - (nm_setting_to_hash): serialize the 'name' property
6464                 - (one_property_cb): ignore 'name' on deserialization of a connection
6465
6466         * src/nm-device-802-11-wireless.c
6467           src/vpn-manager/nm-vpn-connection.c
6468           src/NetworkManagerPolicy.c
6469                 - Fix up for NMSettingConnection 'name'->'id' changes
6470
6471 2007-11-13  Dan Williams  <dcbw@redhat.com>
6472
6473         * libnm-glib/nm-device-802-11-wireless.h
6474           libnm-glib/nm-device-802-11-wireless.c
6475                 - (nm_device_802_11_wireless_get_hw_address): return should be const
6476
6477         * test/nm-tool.c
6478           libnm-glib/libnm-glib-test.c
6479                 - Fixes for above change
6480
6481 2007-11-12  Dan Williams  <dcbw@redhat.com>
6482
6483         * src/supplicant-manager/nm-supplicant-settings-verify.c
6484                 - Allow fragment_size option
6485
6486         * src/supplicant-manager/nm-supplicant-settings-verify.c
6487                 - (nm_supplicant_config_add_setting_wireless_security): use a lower
6488                         EAP fragment size than the default to help some TLS connections
6489
6490 2007-11-12  Dan Williams  <dcbw@redhat.com>
6491
6492         Make certs actually work.  The private key is now a secret, and should be
6493         decrypted when requested by NM.  The private key and phase2 private key
6494         passwords are no longer interesting to NM because they should be used by
6495         the settings service to decrypt the private key itself before passing it
6496         to NM, and hence have been removed as fields.
6497
6498         * libnm-util/nm-setting-wireless-security.h
6499           libnm-util/nm-setting-wireless-security.c
6500                 - Remove private-key-passwd and phase2-private-key-passwd from
6501                         properties
6502                 - (need_secrets_password, need_secrets_eappsk, need_secrets_sim,
6503                    need_secrets): use property #defines instead strings to keep things
6504                         consistent
6505                 - (need_secrets_tls): if a client certificate is present but no
6506                         private key, request the private key
6507                 - (set_property, get_property, nm_setting_wireless_security_class_init):
6508                         remove private key password stuff, mark private keys as secret
6509
6510         * src/supplicant-manager/nm-supplicant-settings-verify.c
6511                 - Remove private_key_passwd and private_key2_passwd from opt_table
6512
6513 2007-11-09  Dan Williams  <dcbw@redhat.com>
6514
6515         Fix vpn-properties setting update_secrets call for new NMSetting stuff.
6516         Since the vpn-properties are managed and known by the VPN daemons themselves,
6517         libnm-util doesn't know what's secret and what's in the setting's 'data'
6518         member.
6519
6520         * libnm-util/nm-setting.h
6521           libnm-util/nm-setting.c
6522                 - Add the ability for subclasses to override update_one_secret
6523
6524         * libnm-util/nm-setting-vpn-properties.c
6525                 - Override update_one_secret and just copy the values into the
6526                         internal table
6527
6528 2007-11-09  Dan Williams  <dcbw@redhat.com>
6529
6530         * libnm-glib/nm-settings.h
6531           libnm-glib/nm-settings.c
6532                 - (nm_settings_new_error): remove
6533                 - (nm_settings_error_quark): add; instead of nm_settings_new_error,
6534                         clients should use g_set_error() with NM_SETTINGS_ERROR
6535
6536 2007-11-09  Dan Williams  <dcbw@redhat.com>
6537
6538         * src/supplicant-manager/nm-supplicant-config.c
6539                 - (nm_supplicant_config_add_setting_wireless_security): private key
6540                         passwords are never sent to wpa_supplicant, because the supplicant
6541                         should never be reading random files from the disk.  Clients like
6542                         the applet are required to decrypt the private keys and send NM
6543                         the decrypted blobs.
6544
6545 2007-11-08  Dan Williams  <dcbw@redhat.com>
6546
6547         * libnm-util/nm-setting-wireless-security.h
6548           libnm-util/nm-setting-wireless-security.c
6549                 - Add 'private-key-decrypted' and 'phase2-private-key-decrypted'
6550                         members to 802-11-wireless-security structure.  This should be used
6551                         to indicate that the values in private-key and phase2-private-key
6552                         are already decrypted by the user agent, and that no
6553                         private-key-passwd or phase2-private-key-passwd should be expected.
6554                         It is not meant to be a stored configuration value, but meant to
6555                         be set when the conneciton is sent to NM over dbus.
6556
6557 2007-11-08  Dan Williams  <dcbw@redhat.com>
6558
6559         * libnm-util/nm-connection.h
6560           libnm-util/nm-connection.c
6561                 - (nm_connection_need_secrets): add argument to return hints
6562
6563         * src/nm-device-802-11-wireless.c
6564                 - (link_timeout_cb, supplicant_connection_timeout_cb,
6565                    real_act_stage2_config, real_act_stage4_ip_config_timeout): handle
6566                         nm_connection_need_secrets() change
6567
6568 2007-11-07  Tambet Ingo  <tambet@gmail.com>
6569
6570         Rework NMSetting structures: Move each setting to it's own file.
6571         Convert to GObject. Remove home grown setting types and use GTypes.
6572         Use GObject property introspection for hash conversion, enumerating
6573         properties, etc.
6574
6575         * libnm-util/nm-setting-connection.[ch]
6576         * libnm-util/nm-setting-ip4-config.[ch]
6577         * libnm-util/nm-setting-ppp.[ch]
6578         * libnm-util/nm-setting-vpn.[ch]
6579         * libnm-util/nm-setting-vpn-properties.[ch]
6580         * libnm-util/nm-setting-wired.[ch]
6581         * libnm-util/nm-setting-wireless.[ch]
6582         * libnm-util/nm-setting-wireless-security.[ch]
6583
6584         New files, each containing a setting.
6585
6586         * libnm-util/nm-setting-template.[ch]: A template for creating new
6587         settings. To use it, just replace 'template' with the new setting
6588         name, and you're half-way done.
6589
6590         * libnm-util/nm-setting.c: Convert to GObject and use GObject
6591         introspection instead of internal types and tables.
6592
6593         * libnm-util/nm-connection.c: Adapt the new NMSetting work.
6594
6595         * libnm-util/nm-param-spec-specialized.[ch]: Implement. Handles
6596         GValue types defined by dbus-glib for composed types like collections,
6597         structures and maps.
6598
6599         * src/*: The API of NMSetting and NMConnection changed a bit: Getting
6600         a setting from connection takes the setting type now. Also, since
6601         the settings are in multiple files, include relevant settings.
6602
6603 2007-10-31  Saleem Abdulrasool <compnerd@compnerd.org>
6604
6605         * configure.in:
6606         * src/backends/NetworkManagerGentoo.c:
6607         (nm_system_restart_mdns_responder): Implement restarts for other mdns
6608         providers in Gentoo.
6609
6610 2007-10-31  Dan Williams  <dcbw@redhat.com>
6611
6612         * libnm-util/nm-connection.c
6613                 - (gvalue_to_string): handle UINT32 arrays
6614
6615 2007-10-31  Dan Williams  <dcbw@redhat.com>
6616
6617         * libnm-glib/nm-device.h
6618           libnm-glib/nm-device.c
6619                 - (nm_device_get_description): remove
6620                 - (nm_device_get_product, nm_device_get_vendor): add
6621                 - (nm_device_update_description): new function (private); walk HAL
6622                         devices to get product and vendor IDs for a specific device
6623
6624 2007-10-31  Dan Williams  <dcbw@redhat.com>
6625
6626         * src/nm-device-802-11-wireless.c
6627                 - (nm_device_802_11_wireless_get_mode): ignore ENODEV errors
6628
6629 2007-10-29  Dan Williams  <dcbw@redhat.com>
6630
6631         * src/nm-hal-manager.c
6632                 - (device_added, device_new_capability): ignore device additions while
6633                         asleep.  Fixes crash caused when NM goes to sleep, a network device
6634                         kernel module is unloaded and reloaded and recognized by NM again.
6635
6636 2007-10-26  Dan Williams  <dcbw@redhat.com>
6637
6638         Patch from Helmut Schaa <hschaa@suse.de> (and more bits from me)
6639
6640         * src/NetworkManagerAP.c
6641           src/NetworkManagerAP.h
6642           libnm-glib/nm-access-point.c
6643           libnm-glib/nm-access-point.h
6644                 - Make 'rate' property a guint32 to better match with WEXT and
6645                         wpa_supplicant and to allow representation of higher bitrates
6646
6647         * src/nm-device-802-11-wireless.c
6648           introspection/nm-device-802-11-wireless.xml
6649           libnm-glib/nm-device-802-11-wireless.c
6650           libnm-glib/nm-device-802-11-wireless.h
6651                 - Make 'bitrate' property a guint32 to match AP 'rate' property type
6652
6653         * src/nm-device-802-3-ethernet.c
6654           src/nm-device-802-3-ethernet.h
6655           introspection/nm-device-802-3-ethernet.xml
6656           libnm-glib/nm-device-802-3-ethernet.c
6657           libnm-glib/nm-device-802-3-ethernet.h
6658                 - Make 'speed' property a guint32 to match other speed/rate types
6659                 - Make nm_device_802_3_ethernet_get_speed() static
6660
6661         * test/nm-tool.c
6662                 - Update for the changes above
6663
6664 2007-10-26  Dan Williams  <dcbw@redhat.com>
6665
6666         * src/named-manager/nm-named-manager.c
6667                 - (rewrite_resolv_conf): clean up error handling to avoid double-free by
6668                     not calling fclose() twice on some error conditions
6669
6670 2007-10-26  Dan Williams  <dcbw@redhat.com>
6671
6672         * src/nm-activation-request.c
6673                 - (dispose): clean up indentation; get the right DBusGProxy object to
6674                         cancel the GetSecrets pending call on.  Need to use the Secrets
6675                         proxy, not the regular connection proxy.  Otherwise the GetSecrets
6676                         pending call doesn't get canceled, and pressing Cancel in the
6677                         applet's password dialog could cause get_secrets_cb() to be called
6678                         after the activation request has already been destroyed
6679
6680 2007-10-24  Dan Williams  <dcbw@redhat.com>
6681
6682         * src/supplicant-manager/nm-supplicant-config.c
6683                 - (nm_supplicant_config_add_blob): pass blob data and length for
6684                         verification
6685                 - (get_hash_cb): use GByteArrays rather than GArrays; easier to follow
6686
6687 2007-10-24  Dan Williams  <dcbw@redhat.com>
6688
6689         * src/supplicant-manager/nm-supplicant-settings-verify.c
6690                 - (opt_table): max length for certificates should be 65536
6691
6692 2007-10-24  Dan Williams  <dcbw@redhat.com>
6693
6694         * src/supplicant-manager/nm-supplicant-interface.c
6695                 - (blob_free): correctly free blob data after use
6696                 - (call_set_blobs): use the right D-Bus interfaace for setBlobs
6697
6698 2007-10-24  Dan Williams  <dcbw@redhat.com>
6699
6700         * libnm-util/nm-setting.c
6701                 - (setting_wireless_security_need_secrets): Fix lookup table logic for
6702                         EAP method need secrets
6703
6704 2007-10-24  Dan Williams  <dcbw@redhat.com>
6705
6706         * src/backends/NetworkManagerRedHat.c
6707                 - (nm_system_update_dns): be a lot smarter about telling nscd to restart
6708
6709 2007-10-23  Dan Williams  <dcbw@redhat.com>
6710
6711         * libnm-util/nm-setting.c
6712           libnm-util/nm-setting.c
6713                 - (nm_setting_compare): implement
6714                 - (default_setting_compare_fn, do_one_compare, compare_gvalue_hash,
6715                    compare_one_hash_gvalue): compare the contents of a setting
6716
6717         * libnm-util/nm-connection.c
6718                 - (nm_connection_compare): implement
6719
6720 2007-10-23  Dan Williams  <dcbw@redhat.com>
6721
6722         * src/nm-activation-request.c
6723                 - (get_secrets_cb): handle getting a setting back that is more than
6724                         just secrets (ie, user changed auth or EAP method or something)
6725
6726 2007-10-23  Dan Williams  <dcbw@redhat.com>
6727
6728         * libnm-util/nm-setting.c
6729           libnm-util/nm-setting.h
6730                 - (nm_setting_verify): new function; verify one setting
6731                 - (nm_settings_verify_all): rename from nm_settings_verify()
6732                 - (setting_connection_verify, setting_wireless_verify): allow NULL
6733                         all_settings
6734
6735         * libnm-util/nm-connection.c
6736                 - (nm_connection_replace_settings, nm_connection_verify,
6737                    nm_connection_new_from_hash): handle nm_settings_verify() rename
6738
6739 2007-10-23  Dan Williams  <dcbw@redhat.com>
6740
6741         * src/nm-device-802-11-wireless.c
6742                 - (real_act_stage2_config): use pre-increment on 'tries' to get the
6743                         desired behavior
6744
6745 2007-10-23  Dan Williams  <dcbw@redhat.com>
6746
6747         * src/supplicant-manager/nm-supplicant-settings-verify.c
6748                 - eap_allowed, phase2_allowed: harmonize with allowed values from
6749                         nm-settings.c
6750
6751 2007-10-23  Dan Williams  <dcbw@redhat.com>
6752
6753         * src/nm-device-802-11-wireless.c
6754                 - (real_act_stage2_config): after the first association failure,
6755                         if the connection still needs secrets ask the user for them
6756                         explicitly.  After the fourth association failure due to bad
6757                         secrets, fail the connection entirely.  Handles the GetSecrets
6758                         loop that NM gets into when the provided secrets don't match up
6759                         with the connection details.
6760
6761 2007-10-23  Dan Williams  <dcbw@redhat.com>
6762
6763         * src/supplicant-manager/nm-supplicant-config.c
6764                 - (nm_supplicant_config_add_setting_wireless_security): only add
6765                         WPA-specific options when WPA is in use
6766
6767 2007-10-23  Dan Williams  <dcbw@redhat.com>
6768
6769         * src/supplicant-manager/nm-supplicant-config.c
6770                 - (nm_supplicant_config_add_setting_wireless_security): 'password'
6771                         secret doesn't need to be unhexified
6772
6773 2007-10-23  Dan Williams  <dcbw@redhat.com>
6774
6775         * libnm-util/nm-setting.c
6776                 - (setting_wireless_security_need_secrets): ensure auth_alg is !NULL
6777                         before trying to do something with it
6778
6779 2007-10-23  Dan Williams  <dcbw@redhat.com>
6780
6781         * src/nm-device-802-11-wireless.c
6782                 - (merge_scanned_ap): handle NULL ssids returned from nm_ap_get_ssid()
6783
6784 2007-10-23  Dan Williams  <dcbw@redhat.com>
6785
6786         * src/nm-device-802-11-wireless.c
6787                 - (merge_scanned_ap): use libnm-util empty SSID check to catch more
6788                         non-SSID-broadcasting APs
6789
6790 2007-10-23  Dan Williams  <dcbw@redhat.com>
6791
6792         * src/NetworkManagerAP.c
6793                 - (match_cipher, security_compatible): remove
6794                 - (nm_ap_check_compatible): use nm_utils_ap_security_compatible() from
6795                         libnm-util instead
6796
6797 2007-10-23  Dan Williams  <dcbw@redhat.com>
6798
6799         * libnm-util/nm-utils.c
6800           libnm-util/nm-utils.h
6801                 - (nm_utils_ap_security_compatible): common function for checking
6802                         whether a specific AP is compatible with an NMConnection
6803
6804 2007-10-23  Dan Williams  <dcbw@redhat.com>
6805
6806         * libnm-util/nm-setting.c
6807                 - (setting_wireless_security_need_secrets, need_secrets_phase2,
6808                    need_secrets_tls, need_secrets_sim, need_secrets_eappsk,
6809                    need_secrets_password, setting_wireless_security_verify): fix
6810                         need_secrets for IEEE 802.1x and WPA-EAP by implementing need
6811                         secrets logic for each supported EAP method
6812
6813 2007-10-23  Dan Williams  <dcbw@redhat.com>
6814
6815         * src/supplicant-manager/nm-supplicant-config.c
6816                 - (nm_supplicant_config_add_setting_wireless_security): fix wpa_supplicant
6817                         config option name, should be "private_key2_passwd"
6818
6819 2007-10-22  Tambet Ingo  <tambet@gmail.com>
6820
6821         Implement support for static IP addresses, additional/overridden DNS and
6822         DNS domain search lists.
6823
6824         * libnm-util/nm-setting.c (uint_array_to_gvalue): Implement.
6825         (ip4_addresses_to_gvalue): Implement.
6826         (convert_array_to_byte_array): Implement.
6827         (nm_setting_populate_from_hash_default): Handle NM_S_TYPE_UINT_ARRAY and
6828         NM_S_TYPE_IP4_ADDRESSES.
6829         (nm_setting_hash): Ditto.
6830         (default_setting_clear_secrets): Add a default case for the switch: IP address
6831         shouldn't be secret, ever.
6832         (setting_ip4_config_verify): Update, requires addresses in case of manual
6833         configurations.
6834         (setting_ip4_config_destroy): Free stuff.
6835
6836         * src/nm-device.c (merge_ip4_config): Implement.
6837         (real_act_stage4_get_ip4_config): Merge IP4 configuration from NMConnection.
6838
6839 2007-10-22  Dan Williams  <dcbw@redhat.com>
6840
6841         * libnm-util/nm-setting.c
6842                 - (setting_wireless_security_verify): allow WEP-40 and WEP-104 as
6843                         pairwise cipher options for Dynamic WEP
6844
6845 2007-10-21  Dan Williams  <dcbw@redhat.com>
6846
6847         * src/NetworkManagerAP.c
6848           src/NetworkManagerAP.h
6849                 - Rename 'articifical' -> 'fake' since that's what they are until
6850                         noticed in scans
6851                 - (nm_ap_new_fake_from_connection): new function to create a 'fake' AP
6852                         from the attributes in an NMConnection object
6853                 - (security_compatible): better handle Dynamic WEP and LEAP; handle
6854                         WPA Enterprise
6855                 - (nm_ap_match_in_list): find a matching AP in a scan list
6856
6857         * src/nm-device-802-11-wireless.c
6858                 - (get_active_ap): add an 'ignore_ap' argument to ignore a specific
6859                         AP when searching the scan list; match on frequency and mode too
6860                 - (nm_device_802_11_wireless_get_frequency): implement
6861                 - (merge_scanned_ap): replace duplicate matching logic with
6862                         nm_ap_match_in_list()
6863                 - (real_act_stage1_prepare): handle a NULL specific object; ie where
6864                         the user is trying to connect to a hidden network that is not yet
6865                         known from the scan list
6866                 - (activation_success_handler): now that the card knows the AP's BSSID,
6867                         there may already be a scanned AP in the scan list that is what
6868                         we really wanted to connect to, but didn't know at the time.  Use
6869                         that instead of the 'fake' AP created at activation start and get
6870                         rid of the 'fake' AP 
6871                 - (cull_scan_list): don't remove fake APs
6872
6873 2007-10-21  Dan Williams  <dcbw@redhat.com>
6874
6875         * src/nm-activation-request.h
6876           src/nm-activation-request.c
6877                 - (nm_act_request_set_specific_object): new function; allow setting the
6878                         specific object if one isn't set yet
6879
6880 2007-10-20  Dan Williams  <dcbw@redhat.com>
6881
6882         * src/supplicant-manager/nm-supplicant-config.h
6883           src/supplicant-manager/nm-supplicant-config.c
6884                 - (nm_supplicant_config_init, nm_supplicant_config_finalize): add a hash
6885                         table to store blobs
6886                 - (nm_supplicant_config_add_blob): new function; add blob to internal
6887                         blob hash table
6888                 - (nm_supplicant_config_get_blobs): new function; get stored blobs
6889                 - (nm_supplicant_config_add_setting_wireless_security): handle
6890                         options that use certificates (ie, blobs)
6891
6892         * src/nm-device-802-11-wireless.c
6893                 - (build_supplicant_config): pass a UID (just use the connection path)
6894                         to the supplicant config as now required
6895
6896         * src/supplicant-manager/nm-supplicant-interface.c
6897                 - (add_network_cb, call_set_blobs, set_blobs_cb, call_set_network): if
6898                         there are any blobs to send to wpa_supplicant, send those first
6899                         before sending the network configuration
6900
6901 2007-10-19  Dan Williams  <dcbw@redhat.com>
6902
6903         Split the GetSecrets() call off to a separate D-Bus interface so that it
6904         can be more easily locked down with D-Bus policy.  Only 'root' (ie, NM)
6905         should be able to call GetSecrets().
6906
6907         * include/NetworkManager.h
6908                 - Define the connection secrets D-Bus interface
6909
6910         * src/vpn-manager/nm-vpn-connection.c
6911                 - (clear_need_auth): get the right proxy object for the connection
6912                         secrets interface
6913                 - (get_connection_secrets): use the connection secrets proxy; send
6914                         empty hints in get secrets request
6915
6916         * src/nm-activation-request.c
6917                 - (nm_act_request_request_connection_secrets): use the connection
6918                         secrets proxy; send empty hints in get secrets request
6919
6920         * src/nm-manager.c
6921           src/nm-manager.h
6922                 - (connection_get_settings_cb): set the connection secrets proxy on
6923                         the connection object too
6924                 - (internal_new_connection_cb): create the connection secrets proxy
6925
6926         * introspection/nm-settings-connection.xml
6927                 - Define Connection.Secrets interface and move GetSecrets there
6928                 - Add a 'hints' argument to GetSecrets
6929
6930         * libnm-glib/nm-settings.c
6931           libnm-glib/nm-settings.h
6932                 - (impl_connection_settings_get_secrets): add 'hints' argument
6933
6934 2007-10-19  Dan Williams  <dcbw@redhat.com>
6935
6936         * src/nm-device.c
6937                 - (constructor): add message about what path a device is exported as
6938                         to help in debugging rh #339011
6939
6940 2007-10-17  Dan Williams  <dcbw@redhat.com>
6941
6942         * libnm-util/nm-utils.h
6943           libnm-util/nm-utils.c
6944                 - (nm_utils_security_valid): common function to help find the intersection
6945                         of capabilities of devices and (optionally) access points
6946
6947 2007-10-17  Dan Williams  <dcbw@redhat.com>
6948
6949         * src/nm-device-802-11-wireless.c
6950                 - (get_wireless_capabilities): add missing braces so that WPA capabilities
6951                         don't get erroneously cleared
6952
6953 2007-10-17  Dan Williams  <dcbw@redhat.com>
6954
6955         * src/nm-manager.h
6956           src/nm-manager.c
6957           src/nm-hal-manager.c
6958                 - (device_removed, finalize, nm_manager_remove_device,
6959                    nm_manager_sleep): add a 'deactivate' argument to 
6960                    nm_manager_remove_device() to fully deactivate devices when necessary
6961                    (ie, always except when waking up)
6962
6963 2007-10-16  Dan Williams  <dcbw@redhat.com>
6964
6965         * libnm-util/nm-setting.c
6966                 - (setting_wireless_security_verify): fix phase2_auth methods; 'sim'
6967                         also isn't valid phase2 autheap method
6968
6969 2007-10-16  Dan Williams  <dcbw@redhat.com>
6970
6971         * libnm-glib/nm-client.c
6972                 - (update_wireless_status): consolidate updates of wireless status
6973                 - (constructor): use update_wireless_status()
6974                 - (manager_running): set wireless status off when NM goes away; requery
6975                         the wireless status when NM comes back
6976
6977 2007-10-16  Dan Williams  <dcbw@redhat.com>
6978
6979         * libnm-glib/nm-client.c
6980                 - (nm_client_activate_device): actually use the fixed-up specific
6981                         object path
6982
6983 2007-10-16  Dan Williams  <dcbw@redhat.com>
6984
6985         * src/nm-hal-manager.c
6986                 - (killswitch_getpower_reply, nm_hal_manager_destroy): only print out
6987                         killswitch error messages once
6988
6989 2007-10-16  Dan Williams  <dcbw@redhat.com>
6990
6991         * src/nm-manager.c
6992                 - (manager_set_wireless_enabled): don't allow wireless to be enabled
6993                         if it's disabled in hardware; don't touch network devices while
6994                         NM is asleep
6995
6996 2007-10-16  Dan Williams  <dcbw@redhat.com>
6997
6998         * libnm-util/nm-client.c
6999                 - (nm_client_activate_device): convert NULL specific_object to "/",
7000                         which is used in place of NULL
7001
7002         * src/nm-manager.c
7003                 - (impl_manager_activate_device): convert "/" specific_object back into
7004                         NULL
7005
7006 2007-10-16  Tambet Ingo  <tambet@gmail.com>
7007
7008         Implement a generic NMSetting creator from setting name.
7009         While at it, get rid of all nm_setting_foo_new_from_hash() functions and
7010         add a virtual function 'populate_fn'.
7011
7012         * libnm-util/nm-connection.c (nm_connection_create_setting): Implement.
7013         (register_default_creators): Register setting creators instead of functions
7014         that create and then populate.
7015         (parse_one_setting): Use the common setting creator and then setting specific
7016         poplulation function.
7017
7018         * libnm-util/nm-setting.c: Get rid of nm_setting_foo_new_from_hash() functions,
7019         they all looked exactly the same.
7020         Add a 'populate_fn' virtual function to NMSetting.
7021         Use default virtual functions in case they are not overriden.
7022         (nm_setting_populate_from_hash): Implement.
7023
7024         * src/nm-device.c (real_act_stage3_ip_config_start): Don't hard code the setting
7025         name, use a defined string.
7026         (real_act_stage4_get_ip4_config): Ditto.
7027
7028 2007-10-16  Tambet Ingo  <tambet@gmail.com>
7029
7030         * src/nm-hal-manager.c (killswitch_getpower_reply): The type returned from
7031         HAL is int, not uint.
7032
7033 2007-10-15  Tambet Ingo  <tambet@gmail.com>
7034
7035         Implement killswitch polling through HAL.
7036
7037         * src/nm-manager.c: Add wireless hardware status property. Add 
7038         'properties-changed' signal for changes in wireless and wireless hardware
7039         state changes.
7040
7041         * src/nm-hal-manager.c: Poll hal for killswitch statuses in every 6 seconds
7042         and update NMManager's wireless hardware state when it has changed.
7043         (nm_hal_manager_new): Don't try to add initial devices here - (hal_init)
7044         already does that.
7045
7046         * libnm-glib/nm-client.c: Add wireless hardware status property. Cache the
7047         values of wireless state and wireless hardware state. Listen for the
7048         'properties-changed' signals, update the cached values and emit notify.
7049
7050         * include/NetworkManager.h: Fix a typo in a comment.
7051
7052 2007-10-14  Dan Williams  <dcbw@redhat.com>
7053
7054         * libnm-util/nm-setting.c
7055                 - (setting_wireless_security_need_secrets): handle LEAP secrets
7056
7057 2007-10-13  Dan Williams  <dcbw@redhat.com>
7058
7059         * libnm-util/nm-setting.h
7060           libnm-util/nm-setting.c
7061           src/supplicant-manager/nm-supplicant-config.c
7062                 - Make the 'proto' field of the 802-11-wireless-security field a
7063                         string list
7064
7065 2007-10-12  Tambet Ingo  <tambet@gmail.com>
7066
7067         Rework the "properties-changed" signal listening implementation.
7068         Add a generic implementation to NMObject class that listens for
7069         the signal and calls property setters of the target NMObject.
7070
7071         * libnm-glib/nm-object.c (nm_object_handle_properties_changed): Implement.
7072
7073         * libnm-glib/nm-device-802-11-wireless.c: Move the GObject consturction
7074         code to the end of file so that all the static functions are available
7075         without extra declarations.
7076         Remove the "properties-changed" signal handling and use the framework from
7077         NMObject.
7078         Implement property setters for properties that change with 
7079         "properties-changed" signal.
7080
7081         * libnm-glib/nm-access-point.c: Ditto.
7082
7083 2007-10-12  Tambet Ingo  <tambet@gmail.com>
7084
7085         Rework the "properties-changed" signal implementation.
7086         In classes that need to use it, just emit "GObject::notify" and the new
7087         framework takes care of the rest to make the signal available on dbus.
7088         The framework queues the notifications and tries to send as many together
7089         in one signal as possible.
7090
7091         * src/nm-properties-changed-signal.c:
7092         * src/nm-properties-changed-signal.h: Implement.
7093
7094         * src/Makefile.am: Add new files to build.
7095
7096         * src/NetworkManagerAP.c: Use the general framework for properties-changed
7097         signal.
7098
7099         * src/nm-device-802-11-wireless.c: Ditto.
7100
7101 2007-10-10  Dan Williams  <dcbw@redhat.com>
7102
7103         * src/nm-manager.c
7104                 - (wait_for_connection_expired): ensure info is valid
7105                 - (connection_added_default_handler): Should only remove pending
7106                         connection info when the manager has the connection that it's
7107                         waiting for.  Fixes segfault in wait_for_connection_info().  
7108
7109 2007-10-10  Dan Williams  <dcbw@redhat.com>
7110
7111         * libnm-util/nm-setting.c
7112           libnm-util/nm-setting.h
7113                 - Add a default 'user_name' field to the VPN setting, which VPN plugins
7114                         can use if they choose.  Should be filled in by the settings service
7115                         on-the-fly with the currently logged in user's username
7116
7117 2007-10-10  Dan Williams  <dcbw@redhat.com>
7118
7119         * src/nm-device-802-11-wireless.c
7120                 - (merge_scanned_ap): make sure non-SSID-broadcasting APs are marked
7121                         as such, because even if the manager fills in the SSID, NM still
7122                         has to indicate to wpa_supplicant that the AP isn't broadcasting
7123                         its SSID
7124
7125 2007-10-10  Tambet Ingo  <tambet@gmail.com>
7126
7127         Move ppp-manager over to dbus-glib. The big deal is that it was the last piece of
7128         code that used NM's own version of dbus signal handling and custom dictionary
7129         marshalling/unmarshalling. With this change, all that obsolete code can disappear
7130         and we get to maintain over 2000 lines less code.
7131
7132         * libnm-util/dbus-dict-helpers.c:
7133         * libnm-util/dbus-dict-helpers.h: Remove.
7134
7135         * src/ppp-manager/nm-pppd-plugin.c: Convert it to use dbus-glib.
7136
7137         * src/ppp-manager/nm-pppd-plugin.xml: Implement.
7138
7139         * src/ppp-manager/nm-ppp-manager.c: Use dbus-glib instead of home-brewed dbus signal
7140         handlers.
7141
7142         * src/nm-dbus-manager.c: Remove all the manual dbus signal handling.
7143
7144         * configure.in: Remove test/libnm-util/Makefile creation.
7145
7146         * test/Makefile.am: Remove libnm-util from SUBDIRS.
7147
7148         * test/libnm-util/: Remove the whole directory.
7149
7150 2007-10-10  Tambet Ingo  <tambet@gmail.com>
7151
7152         * src/NetworkManagerPolicy.c (nm_policy_new): Initialize the 
7153         device_state_changed_idle_id variable or it would contain some random value and the
7154         schedule_change_check calls would not do anything.
7155
7156 2007-10-09  Dan Williams  <dcbw@redhat.com>
7157
7158         * src/nm-device-802-11-wireless.c
7159                 - (supplicant_iface_scanned_ap_cb): set the non-broadcast flag elsewhere
7160                 - (merge_scanned_ap): only have the manager fill the SSID if the AP
7161                         isn't broadcasting its SSID; set the non-broadcast flag here; fix
7162                         merging of non-SSID-broadcasting APs
7163
7164 2007-10-09  Tambet Ingo  <tambet@gmail.com>
7165
7166         * libnm-util/nm-utils.c (nm_utils_is_empty_ssid): Convert the ssid type to
7167         "guint8 *" since it's usually used with GByteArray->data.
7168         (nm_utils_ssid_to_utf8): Add it back, the applet needs it.
7169
7170 2007-10-09  Tambet Ingo  <tambet@gmail.com>
7171
7172         * src/NetworkManagerUtils.c
7173         (nm_utils_is_empty_ssid):
7174         (nm_utils_escape_ssid):
7175         (nm_utils_same_ssid): Remove. These functions are copied and pasted in a 
7176         lot of places, so they belong to libnm-utils instead.
7177
7178         Now with 100% less compiler warnings:
7179
7180         * libnm-util/nm-utils.c (nm_dbus_escape_object_path): Remove, unused.
7181         (nm_dbus_unescape_object_path): Ditto.
7182         (nm_utils_ssid_to_utf8): Ditto.
7183         (nm_utils_is_empty_ssid): Move here from src/NetworkManagerUtils.c
7184         (nm_utils_escape_ssid): Ditto.
7185         (nm_utils_same_ssid): Ditto.
7186
7187         * src/nm-manager.c: Include 'netinet/ether.h' for ether_aton_r.
7188         (add_one_connection_element): Remove an unused variable.
7189         (impl_manager_get_active_connections): Ditto.
7190
7191         * src/NetworkManagerPolicy.c (get_device_connection): Remove an unused
7192         variable.
7193
7194         * src/nm-dbus-manager.c (nm_dbus_manager_start_service): Remove a leftover
7195         from the previous commit.
7196
7197         * src/nm-device-802-11-wireless.c (set_current_ap): Remove unused variable.
7198         (real_act_stage1_prepare): Ditto.
7199         (activation_success_handler): Ditto.
7200         (get_property): Ditto.
7201
7202         * src/nm-device-802-3-ethernet.c (real_get_best_connection): Remove unused
7203         variable.
7204
7205         * src/ppp-manager/nm-pppd-plugin.c (nm_ip_up): Remove the check for 'ifname',
7206         it's always set.
7207
7208         * src/supplicant-manager/nm-supplicant-config.c 
7209         (nm_supplicant_config_add_setting_wireless): Cast the GByteArray's 'guint8 *'
7210         to expected "char *".
7211         (nm_supplicant_config_add_setting_wireless): Ditto.
7212         (nm_supplicant_config_remove_option): Remove, not used.
7213
7214         * libnm-glib/libnm-glib-test.c (dump_access_point): Frequency is a guint32,
7215         not double.
7216         (test_wireless_enabled): Ifdef out unused function.
7217         (device_deactivate): Ditto.
7218         (device_state_changed): Ditto.
7219         (nm_utils_is_empty_ssid): Remove, it's now in libnm-utils.
7220         (nm_utils_escape_ssid): Ditto.
7221
7222         * test/nm-tool.c (nm_utils_escape_ssid): Remove, it's now in libnm-utils.
7223         (nm_utils_is_empty_ssid): Ditto.
7224
7225         * libnm-glib/nm-client.c (nm_client_free_active_connection_element): Remove
7226         unused variable.
7227
7228         * libnm-util/nm-setting.c (setting_wireless_destroy): Remove unused variable.
7229         (setting_vpn_properties_update_secrets): Ditto.
7230         (int_to_gvalue): Ifdef out for now, not used.
7231         (byte_to_gvalue): Ditto.
7232
7233         * libnm-util/dbus-dict-helpers.c (_nmu_dbus_add_dict_entry_string_array): 
7234         Unused, remove.
7235
7236 2007-10-08  Tambet Ingo  <tambet@gmail.com>
7237
7238         * src/NetworkManager.c (main): When dbus manager doesn't want to start, complain
7239         about dbus manager, not named manager.
7240         Make sure hal_manager and dbus_mgr are created before trying to unreference.
7241
7242         * src/nm-dbus-manager.c: There was an issue with priv->proxy: We have a signal
7243         handler for it's 'destroy' signal - we use it to catch disconnects from dbus.
7244         However, the same signal is emitted when we destroy it and there's 
7245         nm_dbus_manager_cleanup -> destroy_cb -> nm_dbus_manager_cleanup cycle.
7246
7247         (nm_dbus_manager_cleanup): Let go of the DBusGProxy before
7248         releasing the DBusGConnection, since proxy needs a conneciton.
7249         (destroy_cb): Set the private proxy to NULL before cleaning up the manager.
7250
7251 2007-10-08  Dan Williams  <dcbw@redhat.com>
7252
7253         * src/NetworkManager.c
7254                 - (main): error on unknown command-line options
7255
7256 2007-10-08  Dan Williams  <dcbw@redhat.com>
7257
7258         Reimplement the invalid connection list.  Don't try to re-activate a
7259         connection that just failed or was canceled.
7260
7261         * src/nm-device.c
7262                 - (connection_secrets_failed_cb): fail device activation, don't just
7263                         deactivate the device.  Listeners have to know about the failure.
7264
7265         * src/NetworkManagerPolicy.c
7266                 - (nm_policy_auto_get_best_device): exclude invalid connections from
7267                         the connection list given to a device's get_best_connection()
7268                         method
7269                 - (device_state_changed): tag failed connections as invalid; clear the
7270                         tag from successful connections
7271
7272 2007-10-08  Dan Williams  <dcbw@redhat.com>
7273
7274         Fix problems with interrupted activation.  Previously, choosing an AP
7275         from the menu, then choosing another one before the first connection was
7276         successful wouldn't deactivate the device before starting the new connection
7277         on that same device.
7278
7279         * src/NetworkManagerPolicy.c
7280                 - (deactivate_old_device, device_state_changed, state_changed,
7281                    nm_policy_new): wrong place to deactivate old devices
7282
7283         * src/nm-manager.c
7284                 - (pending_connection_info_destroy, finalize,
7285                    wait_for_connection_expired): decouple destruction of the pending
7286                         connection info from the manager device
7287                 - (connection_added_default_handler): deactivate any active or
7288                         activating device before starting a new activation
7289                 - (impl_manager_activate_device): deactivate any active or activating
7290                         device before starting a new activation; be sure not to leak
7291                         pending connection info if a new activation request arrives but
7292                         there's already a pending one in-process
7293
7294 2007-10-08  Dan Williams  <dcbw@redhat.com>
7295
7296         * src/NetworkManagerAP.h
7297           src/NetworkManagerAP.c
7298                 - (nm_ap_has_manufacturer_default_ssid): remove, unused.  User clients
7299                         should handle default SSIDs and whether or not to autoconnect
7300                         to them
7301
7302 2007-10-08  Dan Williams  <dcbw@redhat.com>
7303
7304         * src/NetworkManagerPolicy.c
7305                 - (nm_policy_device_change_check): print out connection name where
7306                         possible
7307
7308 2007-10-08  Dan Williams  <dcbw@redhat.com>
7309
7310         * src/nm-device-802-11-wireless.c
7311           src/nm-device-802-11-wireless.h
7312                 - (nm_device_802_11_wireless_class_init, merge_scanned_ap): new
7313                         'hidden-ap-found' signal (for internal use only) that allows the
7314                         NMManager to fill in the AP's SSID if a connection has that AP's
7315                         BSSID in its seen-bssids list
7316
7317         * src/nm-manager.c
7318                 - (manager_hidden_ap_found, nm_manager_add_device): attach to a
7319                         wireless device's hidden-ap-found signal and fill in the APs SSID
7320                         if possible
7321
7322 2007-10-07  Dan Williams  <dcbw@redhat.com>
7323
7324         * src/nm-manager.c
7325           src/nm-manager.h
7326                 - Add a 'connections-added' signal to batch together updates of large
7327                         numbers of connections, like when reading from a settings service
7328                         the first time.  Otherwise, the policy would just activate the first
7329                         suitable connection it saw rather than waiting for the full list
7330                         to arrive.
7331                 - (nm_manager_class_init): register new signal
7332                 - (get_type_for_proxy, connection_get_settings_cb,
7333                    get_connection_for_proxy): centralize places where a proxy's setting
7334                         service is determined
7335                 - (free_get_settings_info): if the call being freed is the last call
7336                         in a pending call group, fire off the connections-added signal
7337                 - (internal_new_connection_cb): add call to a pending call group if
7338                         requested
7339                 - (list_connections_cb): always create a call group here, because this
7340                         call results in a batch of new connections
7341                 - (initial_get_connections): start getting system connections first
7342                 - (nm_manager_connections_destroy, emit_removed): actually emit the
7343                         removed signal when destroying connections
7344
7345         * src/NetworkManagerPolicy.c
7346                 - (nm_policy_new, connections_added): handle connections-added signal
7347                         from the manager
7348
7349 2007-10-06  Dan Williams  <dcbw@redhat.com>
7350
7351         * src/nm-device-802-11-wireless.c
7352                 - (constructor): fix leaked socket
7353
7354 2007-10-06  Dan Williams  <dcbw@redhat.com>
7355
7356         * src/NetworkManagerPolicy.c
7357                 - (nm_policy_auto_get_best_device): fix connection list reffing.  Each
7358                         connection in the list returned by nm_manager_get_connections() is
7359                         reffed, but they weren't getting unreffed before returning
7360
7361 2007-10-06  Dan Williams  <dcbw@redhat.com>
7362
7363         * src/nm-manager.c
7364                 - (connections_to_slist): sort connections first on autoconnect, then
7365                         on timestamp
7366
7367 2007-10-06  Dan Williams  <dcbw@redhat.com>
7368
7369         * libnm-util/nm-connection.c
7370                 - (gvalue_to_string): handle UINT64
7371
7372 2007-10-06  Dan Williams  <dcbw@redhat.com>
7373
7374         * src/NetworkManagerPolicy.c
7375                 - (connection_updated, nm_policy_new): recheck state when a connection
7376                         gets updated
7377
7378 2007-10-06  Dan Williams  <dcbw@redhat.com>
7379
7380         * src/nm-manager.c
7381           src/nm-manager.h
7382                 - (nm_manager_get_connection_dbus_path): make static
7383                 - (nm_manager_update_connections): remove; unused
7384                 - Add a connection-updated signal
7385                 - (new_connection_cb, connection_updated_cb, nm_manager_class_init):
7386                         handle connection object updates
7387
7388 2007-10-06  Dan Williams  <dcbw@redhat.com>
7389
7390         * src/NetworkManagerPolicy.c
7391                 - (connection_removed): deactivate removed connections
7392
7393 2007-10-06  Dan Williams  <dcbw@redhat.com>
7394
7395         * libnm-util/nm-connection.c
7396           libnm-util/nm-connection.h
7397                 - (nm_connection_replace_settings): new function
7398
7399 2007-10-06  Dan Williams  <dcbw@redhat.com>
7400
7401         * libnm-glib/nm-device-802-11-wireless.c
7402                 - (nm_device_802_11_wireless_get_active_access_point): don't segfault
7403                         on error when getting the active access point over D-Bus from NM
7404
7405 2007-10-05  Dan Williams  <dcbw@redhat.com>
7406
7407         * libnm-util/nm-setting.c
7408                 - (setting_wireless_verify, setting_wireless_destroy): add seen_bssids
7409                         to the NMSettingWireless table; it's now a string array not an array
7410                         of byte arrays
7411
7412 2007-10-05  Dan Williams  <dcbw@redhat.com>
7413
7414         * libnm-glib/nm-device-802-11-wireless.c
7415                 - Cache properties and update cached properties on D-Bus signals from NM
7416
7417 2007-10-05  Dan Williams  <dcbw@redhat.com>
7418
7419         * src/nm-device-802-11-wireless.c
7420                 - (set_current_ap): consolidate current_ap handling code into one place
7421                         to ensure that PropertiesChanged signals are emitted in all cases
7422                 - (periodic_update, real_deactivate_quickly, real_act_stage1_prepare,
7423                    nm_device_802_11_wireless_dispose): use set_current_ap()
7424
7425 2007-10-05  Dan Williams  <dcbw@redhat.com>
7426
7427         * libnm-glib/nm-access-point.c
7428           libnm-glib/nm-access-point.h
7429                 - (nm_access_point_get_hw_address): return 'const char *', not 'char *'
7430                         because the value is cached internally now.  Callers should not
7431                         free the internal value.
7432                 - Make signal name defines private
7433
7434         * test/nm-tool.c
7435           libnm-glib/libnm-glib-test.c
7436                 - Don't free value returned from nm_access_point_get_hw_address()
7437
7438 2007-10-04  Dan Williams  <dcbw@redhat.com>
7439
7440         * introspection/nm-device-802-11-wireless.xml
7441           src/nm-device-802-11-wireless.h
7442           src/nm-device-802-11-wireless.c
7443                 - Add a PropertiesChanged signal for wireless device
7444                 - Store currently associated access point
7445                 - (periodic_update): generalize; update rate here too and emit the
7446                         correct PropertiesChanged signal when stuff changes
7447                 - (real_deactivate_quickly, nm_device_802_11_wireless_dispose,
7448                    real_activation_cancel_handler): clear current_ap when device is
7449                         deactivated
7450                 - (link_to_specific_ap, get_ap_blacklisted,
7451                    nm_device_802_11_wireless_get_best_ap): remove obsolete and unused
7452                         code
7453                 - (nm_device_802_11_wireless_get_bitrate): make static; unused anywhere
7454                         outside this file
7455                 - (real_set_hw_address): emit property changed signal if the card's
7456                         MAC address changes
7457                 - (real_act_stage1_prepare): set the initial current_ap to the AP
7458                         the card is supposed to be connecting to
7459                 - (activation_success_handler): send out property updates on successful
7460                         activation
7461                 - (get_property): pull bitrate from cached value; use OBJECT_PATH type
7462                         for ACTIVE_ACCESS_POINT property because sometimes there won't be
7463                         one and dbus-glib doesn't like marshalling NULL G_TYPE_OBJECTs
7464                 - (nm_device_802_11_wireless_class_init): ACTIVE_ACCESS_POINT property
7465                         is now boxed; add PropertiesChanged signal
7466
7467 2007-10-04  Dan Williams  <dcbw@redhat.com>
7468
7469         * libnm-util/nm-connection.c
7470           libnm-util/nm-connection.h
7471                 - (nm_connection_verify): new function
7472
7473 2007-10-04  Dan Williams  <dcbw@redhat.com>
7474
7475         * libnm-util/nm-setting.c
7476                 - (nm_settings_verify): use #defines when possible rather than strings
7477                 - (setting_connection_verify): ensure that 'name' and 'type' are valid
7478                 - (setting_vpn_verify): tighter validity check on 'service_type'
7479
7480 2007-10-04  Dan Williams  <dcbw@redhat.com>
7481
7482         * libnm-glib/nm-settings.c
7483                 - (nm_connection_settings_class_init): provide correct type for argument
7484                         to the Updated signal so that dbus-glib knows how to marshal it
7485
7486 2007-10-03  Dan Williams  <dcbw@redhat.com>
7487
7488         * src/nm-device-802-3-ethernet.c
7489                 - (real_get_best_connection): don't create automatic connections
7490                         internally; clients should provide a setting that applies to
7491                         the device with 'autoconnect: True'.  Problem was that these
7492                         internally auto-created connections don't have a proxy or service
7493                         name becuase they weren't created by a settings daemon, and therefore
7494                         clients have no idea what to do with them.
7495
7496 2007-10-03  Dan Williams  <dcbw@redhat.com>
7497
7498         * src/nm-device-802-11-wireless.c
7499           src/nm-device-802-11-wireless.h
7500           introspection/nm-device-802-11-wireless.xml
7501                 - GetActiveNetworks -> GetAccessPoints
7502                 - ActiveNetwork -> ActiveAccessPoint
7503                 - NetworkAdded -> AccessPointAdded
7504                 - NetowrkRemoved -> AccessPointRemoved
7505
7506         * libnm-glib/nm-device-802-11-wireless.c
7507           libnm-glib/nm-device-802-11-wireless.h
7508                 - network-added signal -> access-point-added
7509                 - network-removed signal -> access-point-removed
7510                 - nm_device_802_11_wireless_get_active_network() ->
7511                         nm_device_802_11_wireless_get_active_access_point()
7512                 - nm_device_802_11_wireless_get_network_by_path() ->
7513                         nm_device_802_11_wireless_get_access_point_by_path()
7514                 - nm_device_802_11_wireless_get_networks() ->
7515                         nm_device_802_11_wireless_get_access_points()
7516
7517         * libnm-glib/libnm-glib-test.c
7518           test/nm-tool.c
7519           src/NetworkManagerPolicy.c
7520                 - Fixups for Network -> AccessPoint
7521
7522 2007-10-03  Dan Williams  <dcbw@redhat.com>
7523
7524         Add a GetActiveConnections() method on the Manager object.
7525
7526         * src/nm-manager.c
7527           src/nm-manager.h
7528           introspection/nm-manager.xml
7529                 - (connection_get_settings_cb): keep connection type around too
7530                 - (impl_manager_get_active_connections, add_one_connection_element):
7531                         implement; returns all active connections and what devices they
7532                         apply to
7533
7534         * libnm-glib/nm-client.c
7535           libnm-glib/nm-client.h
7536           introspection/nm-manager-client.xml
7537                 - (nm_client_get_devices): GPtrArray elements are allocated and owned
7538                         by the caller; free here to avoid memory leak
7539                 - (nm_client_get_active_connections): implement; return the list of
7540                         active connections
7541                 - (nm_client_free_active_connection_element): implement; free an element
7542                         of the GSList returned by nm_client_get_active_connections()
7543
7544 2007-10-03  Dan Williams  <dcbw@redhat.com>
7545
7546         * src/nm-device-802-11-wireless.c
7547                 - (nm_device_802_11_wireless_update_bssid): remove
7548                 - (get_active_ap): new function; find the AP in the scan list which
7549                         matches the current BSSID and SSID of the wireless device
7550                 - (nm_device_802_11_periodic_update): get current AP using
7551                         get_active_ap() and print AP roam messages
7552
7553 2007-10-01  Dan Williams  <dcbw@redhat.com>
7554
7555         * libnm-util/nm-setting.h
7556                 - Add a 'timestamp' option to NMSettingConnection
7557                 - Add a UINT64 type
7558
7559         * libnm-util/nm-setting.c
7560                 - (uint64_to_gvalue): new function
7561                 - (nm_setting_populate_from_hash, nm_setting_hash,
7562                    default_setting_clear_secrets): handle UINT64 type
7563                 - con_table: add 'timestamp' member
7564
7565 2007-10-01  Dan Williams  <dcbw@redhat.com>
7566
7567         * src/nm-manager.c
7568                 - (impl_manager_activate_device): ensure the D-Bus method sends a return
7569                         value when the connection can be activated immediately
7570
7571 2007-10-01  Dan Williams  <dcbw@redhat.com>
7572
7573         * libnm-glib/nm-device.c
7574                 - (nm_device_class_init): actually tell glib about the carrier-changed
7575                         signal
7576
7577 2007-10-01  Dan Williams  <dcbw@redhat.com>
7578
7579         * configure.in
7580           src/marshallers/Makefile.am
7581           src/marshallers/nm-marshal.list
7582           src/marshallers/nm-marshal-main.c
7583                 - Consolidate glib marshallers into one place
7584
7585         * src/dhcp-manager/Makefile.am
7586           src/dhcp-manager/nm-dhcp-manager.c
7587           src/supplicant-manager/Makefile.am
7588           src/supplicant-manager/nm-supplicant-manager.c
7589           src/supplicant-manager/nm-supplicant-interface.c
7590           src/ppp-manager/Makefile.am
7591           src/ppp-manager/nm-ppp-manager.c
7592           src/vpn-manager/Makefile.am
7593           src/vpn-manager/nm-vpn-connection.c
7594           src/Makefile.am
7595                 - Use consolidated marshallers
7596
7597         * src/dhcp-manager/nm-dhcp-marshal.list
7598           src/dhcp-manager/nm-dhcp-marshal-main.c
7599           src/supplicant-manager/nm-supplicant-marshal-main.c
7600           src/supplicant-manager/nm-supplicant-marshal.list
7601           src/nm-marshal-main.c
7602           src/nm-marshal.list
7603           src/ppp-manager/nm-ppp-marshal-main.c
7604           src/ppp-manager/nm-ppp-marshal.list
7605           src/vpn-manager/nm-vpn-marshal-main.c
7606           src/vpn-manager/nm-vpn-marshal.list
7607                 - Remove
7608
7609 2007-10-01  Dan Williams  <dcbw@redhat.com>
7610
7611         * include/NetworkManagerVPN.h
7612                 - define VPN connection state change reason codes
7613
7614         * src/vpn-manager/Makefile.am
7615           src/vpn-manager/nm-vpn-marshal.list
7616           src/vpn-manager/nm-vpn-marshal-main.c
7617                 - Add marshallers for StateChanged signal
7618
7619         * introspection/nm-vpn-connection.xml
7620                 - New Banner property
7621                 - StateChanged signal now includes a 'reason' argument
7622
7623         * src/vpn-manager/nm-vpn-connection.c
7624           src/vpn-manager/nm-vpn-connection.h
7625                 - Add a "Banner" property that contains the returned VPN server login
7626                         banner (if any); valid only in the ACTIVATED state
7627                 - (nm_vpn_connection_set_state, nm_vpn_connection_disconnect): now takes
7628                         a 'reason' argument and emits that reason along with the
7629                         state-changed signal
7630                 - Fix up calls to nm_vpn_connection_set_state() to include a reason
7631                 - (nm_vpn_connection_ip4_config_get): save banner for later
7632                 - (nm_vpn_connection_get_banner, get_property,
7633                    nm_vpn_connection_class_init): implement Banner property
7634
7635         * src/vpn-manager/nm-vpn-service.c
7636                 - (nm_vpn_service_connections_stop): take a reason argument; copy the
7637                         connection list because elements may get added/removed from it
7638                         while iterating over the list
7639                 - (connection_state_changed): signal now includes the 'reason' argument
7640
7641         * libnm-glib/nm-vpn-connection.c
7642           libnm-glib/nm-vpn-connection.h
7643                 - (nm_vpn_connection_get_banner): new function
7644                 - (state_changed_proxy): handle reason argument
7645
7646 2007-09-28  Tambet Ingo  <tambet@gmail.com>
7647
7648         * src/nm-manager.c:
7649         * src/nm-manager.h:
7650         Implement device activation through NMManager.
7651         Implement "pending device activation" here - If the connection isn't found,
7652         we try to wait for up to 5 seconds for the connection to be provided.
7653         Add NMConnectionType argument to "connection-added" and "connection-removed"
7654         signals.
7655         (nm_manager_get): Remove. Finally.
7656
7657         * src/nm-activation-request.c: 
7658         * src/nm-activation-request.h: 
7659         Remove all the deferred activation code.
7660
7661         * src/nm-device.c: Remove all the deferred activation code. Once the device
7662         activation is started, it's started. Update the activation virtual function
7663         signature.
7664
7665         * src/nm-device-interface.c:
7666         * src/nm-device-interface.h:
7667         Device activation now takes only NMActRequest argument.
7668         Don't expose device activation directly on dbus, it's supposed to go through
7669         NMManager now.
7670
7671         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Make the code
7672         a bit more compact.
7673         Use the new device activation methods through NMManager.
7674
7675         * introspection/nm-manager-client.xml: 
7676         * introspection/nm-manager.xml: 
7677         * libnm-glib/nm-client.c:
7678         * libnm-glib/nm-client.h:
7679         Add device activation method.
7680         
7681         * libnm-glib/nm-device.c: 
7682         * libnm-glib/nm-device.h: 
7683         * introspection/nm-device.xml: 
7684         Remove device activation method. It's done through NMManager now.
7685
7686         * src/vpn-manager/nm-vpn-manager.c (impl_vpn_manager_connect): Use the shiny
7687         new (nm_manager_get_device_by_path) function, get rid of our own )find_device).
7688
7689 2007-09-28  Dan Williams  <dcbw@redhat.com>
7690
7691         * libnm-glib/nm-vpn-connection.c
7692                 - (nm_vpn_connection_get_state): try to update state if the current
7693                         state is UNKNOWN
7694
7695 2007-09-27  Dan Williams  <dcbw@redhat.com>
7696
7697         Patch from Bill Nottingham
7698
7699         * src/supplicant-manager/nm-supplicant-config.c
7700                 - (ADD_STRING_VAL): use correct length for binary blobs when sending
7701                         data to the supplicant
7702
7703 2007-09-27  Dan Williams  <dcbw@redhat.com>
7704
7705         * src/NetworkManagerSystem.c
7706                 - (nm_system_vpn_device_set_from_ip4_config): clean up indentation;
7707                         and all address manipulation here should be happening on the
7708                         _VPN_ device, not the active device
7709
7710 2007-09-26  Dan Williams  <dcbw@redhat.com>
7711
7712         * src/nm-manager.c
7713           src/nm-manager.h
7714           src/nm-activation-request.c
7715           src/nm-activation-request.h
7716                 - Move the GetSecrets stuff out of the NMManager instance because it
7717                         doesn't really need to be there and complicates things
7718
7719         * src/nm-device.c
7720                 - (connection_secrets_failed_cb, device_activation_go): connect to the
7721                         connection-secrets-failed signal and deactivate the device if
7722                         the GetSecrets call fails
7723
7724         * src/nm-device-802-11-wireless.c
7725                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7726                    real_act_stage2_config, real_act_stage4_ip_config_timeout): request
7727                         secrets and give correct hints about whether new secrets should be
7728                         asked for by the client or not
7729
7730 2007-09-26  Dan Williams  <dcbw@redhat.com>
7731
7732         * src/vpn-manager/nm-vpn-connection.c
7733                 - (nm_vpn_connection_set_state, clear_need_auth, finalize,
7734                    connection_secrets_updated_cb, get_secrets_cb): don't need to attach
7735                         to the secrets-updated signal of the NMConnection since updating
7736                         the secrets is done within the scope of the NMVPNConnection object
7737                         already
7738                 - (get_connection_secrets): fix an uninialized variable usage error
7739
7740 2007-09-26  Dan Williams  <dcbw@redhat.com>
7741
7742         * libnm-util/nm-setting.c
7743                 - (setting_vpn_properties_update_secrets): implement so VPN secrets
7744                         actually get updated when the user enters them
7745
7746 2007-09-26  Dan Williams  <dcbw@redhat.com>
7747
7748         * libnm-glib/nm-vpn-plugin.c
7749                 - (impl_vpn_plugin_need_secrets): fix logic when no secrets are needed
7750
7751 2007-09-26  Dan Williams  <dcbw@redhat.com>
7752
7753         * include/NetworkManagerVPN.h
7754                 - Add a NEED_AUTH state
7755
7756         * src/vpn-manager/nm-vpn-connection.c
7757                 - Implement the NEED_AUTH state.  First ask the VPN service plugin if
7758                         the connection needs secrets, and if so, then ask the settings
7759                         service to fill in the secrets.  Then start the connection.
7760
7761 2007-09-26  Dan Williams  <dcbw@redhat.com>
7762
7763         * src/vpn-manager/nm-vpn-manager.c
7764                 - (new_vpn_error, impl_vpn_manager_connect): set errors
7765
7766 2007-09-26  Dan Williams  <dcbw@redhat.com>
7767
7768         * introspection/nm-vpn-plugin.xml
7769           libnm-glib/nm-vpn-plugin.c
7770           libnm-glib/nm-vpn-plugin.h
7771                 - (impl_vpn_plugin_need_secrets): implement a call that should return
7772                         the name of the NMSetting in an NMConnection that may require
7773                         secrets specific to that VPN plugin
7774
7775 2007-09-26  Dan Williams  <dcbw@redhat.com>
7776
7777         * src/nm-manager.c
7778           src/nm-manager.h
7779                 - (nm_manager_get_connection_secrets): make static, unused outside
7780                         the file
7781                 - Provide NM_MANAGER_CONNECTION_PROXY_TAG for other users
7782
7783 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7784
7785         * libnm-glib/nm-vpn-plugin.c (nm_vpn_plugin_connect): Update the plugin activation
7786         method.
7787         (impl_vpn_plugin_connect): Convert properties hash to NMConnection, activate, and
7788         unreference the connection.
7789
7790         * introspection/nm-vpn-plugin.xml: Modify the 'Connect' method arguments: instead of
7791         passing properties hash and routes string list, pass NMConnection (in hashed form).
7792
7793         * src/vpn-manager/nm-vpn-connection.c (nm_vpn_connection_get_routes): Return routes
7794         as GSList, no need to copy stuff around anymore.
7795         (nm_vpn_connection_activate): Update the plugin activation method.
7796
7797         * src/NetworkManagerSystem.c (nm_system_vpn_device_set_from_ip4_config): Convert
7798         routes argument to GSList.
7799
7800 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7801
7802         * src/nm-manager.c (manager_device_state_changed): Listen to device' NEED_AUTH
7803         state and try to get the secrets.
7804
7805         * src/NetworkManagerPolicy.c (nm_policy_auto_get_best_device): Get the list of
7806         connections from NMManager and let the device to choose the best from the list.
7807         Since the connection list is sorted by system ones first and user ones later,
7808         the devices still prefer system connections like they did before.
7809         (deactivate_old_device): Implement. When a device starts activation, we have a
7810         policy (for now at least) to deactivate any other device that might be either
7811         active or still activating.
7812
7813         * src/vpn-manager/nm-vpn-manager.c: Add NMManager back to the private structure.
7814         It's set on construction, there will be no other way to access it.
7815
7816         * src/nm-device-802-11-wireless.c: Don't touch NMManager, NMManager can listen to
7817         device events and drive the device, not the other way around.
7818
7819         * src/nm-device-802-3-ethernet.c: Ditto.
7820
7821         * src/nm-device.c (nm_device_get_best_connection): The connections list is now
7822         sent along, pass it on to virtual functions.
7823
7824         * src/nm-device-interface.c (nm_device_interface_get_iface): Implement. It's static
7825         for now, but should really be public instead of nm_device_get_iface() since iface
7826         is a property of the DeviceInterface, not Device.
7827         (impl_device_activate): Don't touch NMManager!
7828
7829 2007-09-26  Jürg Billeter  <j@bitron.ch>
7830
7831         * initscript/paldo/NetworkManager.in:
7832         * initscript/paldo/NetworkManagerDispatcher.in:
7833         * src/backends/NetworkManagerPaldo.c: (nm_system_enable_loopback),
7834         (nm_system_flush_loopback_routes): update paldo backend
7835
7836 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7837
7838         * src/nm-device-802-3-ethernet.c (real_get_best_connection): Don't leak NMManager.
7839         The problem with leaking NMManager is that on shutdown, it doesn't get destroyed,
7840         which means none of the devices get brought down properly, which in turn leaves
7841         DHCP client running.
7842
7843         * src/nm-device-802-11-wireless.c (real_get_best_connection): Ditto.
7844         (supplicant_connection_timeout_cb): Ditto.
7845
7846 2007-09-25  Dan Williams  <dcbw@redhat.com>
7847
7848         * src/nm-device.c
7849                 - (device_activation_go): small hack to work around race when
7850                         activating deferred connections; should solve this in a better way
7851
7852 2007-09-25  Dan Williams  <dcbw@redhat.com>
7853
7854         * introspection/nm-device.xml
7855           libnm-glib/nm-device.c
7856           libnm-glib/nm-device.h
7857                 - Add 'Carrier' property to exported NMDevice objects
7858
7859         * src/nm-device-interface.h
7860           src/nm-device-interface.c
7861           src/nm-device.c
7862                 - Add a 'carrier' property to internal NMDevice objects
7863
7864 2007-09-25  Dan Williams  <dcbw@redhat.com>
7865
7866         * src/nm-device-802-11-wireless.c
7867                 - (ap_auth_enforced): also return the encryption status of the AP so
7868                         that callers can differentiate easily between unencrypted APs
7869                         and encrypted ones, in addition to whether the AP has an
7870                         authenticator
7871                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7872                    real_act_stage4_ip_config_timeout): handle unencrypted APs better,
7873                         previously would request secrets from unencrypted APs at times
7874
7875 2007-09-25  Dan Williams  <dcbw@redhat.com>
7876
7877         * src/nm-manager.c
7878                 - (nm_manager_update_state): new function; updates state and emits
7879                         appropriate signals ensuring a state-change signal for the same state
7880                         never gets emitted twice in a row.
7881                 - (manager_device_state_changed): handle more device state to get a
7882                         better picture of the overall NM state
7883
7884 2007-09-25  Dan Williams  <dcbw@redhat.com>
7885
7886         * libnm-glib/nm-settings.c
7887           libnm-glib/nm-settings.h
7888                 - (new_error -> nm_settings_new_error): make public so that subclasses
7889                         can use the same error domain.  Also pass a valid error code to
7890                         g_error_new_literal() so that libdbus doesn't assert when converting
7891                         the GError into a DBusError
7892                 - (impl_settings_list_connections, impl_connection_settings_get_id,
7893                    impl_connection_settings_get_settings,
7894                    impl_connection_settings_get_secrets): use new error creator
7895                         function
7896
7897 2007-09-25  Dan Williams  <dcbw@redhat.com>
7898
7899         * src/NetworkManager.c
7900                 - (nm_signal_handler, main): don't ignore SIGTERM/SIGINT during startup
7901
7902 2007-09-25  Dan Williams  <dcbw@redhat.com>
7903
7904         * src/supplicant-manager/nm-supplicant-manager.c
7905                 - (poke_supplicant_cb, nm_supplicant_manager_init,
7906                    nm_supplicant_manager_dispose, nm_supplicant_manager_name_owner_changed,
7907                    nm_supplicant_manager_startup): when the supplicant isn't running,
7908                         try to start it periodically via system bus activation.  Fixes
7909                         a problem where if wpa_supplicant goes away, NM gets stuck waiting
7910                         for the supplicant to come back
7911
7912 2007-09-25  Dan Williams  <dcbw@redhat.com>
7913
7914         Ensure that old activation requests are forgotten about; previously
7915         hitting Cancel in the password dialog would deactivate whatever device
7916         that password was requested for, even if that wasn't the currently
7917         activating connection.
7918
7919         * src/nm-manager.c
7920           src/nm-manager.h
7921                 - (nm_manager_get_connection_secrets): track the pending call
7922                         object so it can be canceled later if needed
7923                 - (nm_manager_cancel_get_connection_secrets): cancel a pending
7924                         GetSecrets call for a particular connection
7925
7926         * src/nm-activation-request.c
7927                 - (dispose): cancel any outstanding GetSecrets calls on the
7928                         connection
7929
7930 2007-09-25  Dan Williams  <dcbw@redhat.com>
7931
7932         * src/NetworkManagerPolicy.c
7933                 - (nm_policy_device_change_check): handle devices that have a
7934                         deferred activation.  These devices are not really active _yet_,
7935                         but need to be treated as such here.  Don't interrupt them
7936                         automatically.
7937
7938         * src/nm-device-interface.c
7939                 - (impl_device_activate): handle devices that have a deferred activation
7940                         like activating or active devices.  When multiple active devices
7941                         get committed, the device shouldn't be deactivated until the
7942                         connection details are available to avoid DoS and such.  Currently,
7943                         any active, activating, or deferred activation device is deactivated
7944                         here before starting the new activation request.
7945
7946 2007-09-25  Dan Williams  <dcbw@redhat.com>
7947
7948         Properly re-query secrets from the settings daemon when stuff fails.
7949
7950         * src/nm-device-802-11-wireless.c
7951                 - (ap_auth_enforced): handle static WEP correctly here by differentiating
7952                         between Shared Key and Open System auth modes
7953                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7954                    real_act_stage4_ip_config_timeout): clear existing secrets and
7955                         request new ones when something fails due to a suspected wrong key
7956                 - (real_act_stage2_config): fix for new request_new argument to
7957                         nm_manager_get_connection_secrets()
7958
7959         * src/nm-manager.c
7960           src/nm-manager.h
7961                 - (nm_manager_get_connection_secrets): return error status; pass
7962                         new request_new argument on to the settings daemon
7963
7964         * introspection/nm-settings-connection.xml
7965                 - New 'request_new' argument to the GetSecrets call that hints to the
7966                         settings daemon to ask the user for completely new secrets
7967
7968         * libnm-glib/nm-settings.c
7969           libnm-glib/nm-settings.h
7970                 - (impl_connection_settings_get_secrets): handle new 'request_new'
7971                         argument
7972
7973 2007-09-25  Dan Williams  <dcbw@redhat.com>
7974
7975         * libnm-util/nm-connection.c
7976           libnm-util/nm-connection.h
7977                 - (nm_connection_clear_secrets): new function; clear secrets out of
7978                         each NMSetting in an NMConnection
7979
7980         * libnm-util/nm-setting.h
7981           libnm-util/nm-setting.c
7982                 - (nm_setting_clear_secrets, default_setting_clear_secrets): clear 
7983                         secrets out of an NMSetting
7984                 - (nm_setting_connection_new, nm_setting_ip4_config_new, 
7985                    nm_setting_wired_new, nm_setting_wireless_new,
7986                    nm_setting_wireless_security_new, nm_setting_ppp_new,
7987                    nm_setting_vpn_new, nm_setting_vpn_properties_new): set clear_secrets
7988                         to default handler default_setting_clear_secrets()
7989
7990 2007-09-25  Dan Williams  <dcbw@redhat.com>
7991
7992         * src/nm-activation-request.c
7993           src/nm-activation-request.h
7994                 - (nm_act_request_is_deferred): new function
7995
7996 2007-09-24  Dan Williams  <dcbw@redhat.com>
7997
7998         * src/nm-device-802-11-wireless.c
7999                 - (activation_success_handler): update signal strength immediately
8000                         after activation
8001
8002 2007-09-24  Dan Williams  <dcbw@redhat.com>
8003
8004         * libnm-util/nm-setting.c
8005                 - (verify_wep_key): 40-bit WEP keys are 10 bytes long, not 13
8006
8007 2007-09-24  Dan Williams  <dcbw@redhat.com>
8008
8009         * src/NetworkManagerPolicy.c
8010                 - (nm_policy_auto_get_best_device): don't interrupt activation of a
8011                         device by deactivating it because it doesn't have a "best connection".
8012                         Since autoconnect=False connections aren't automatically chosen,
8013                         NM would interrupt activation of such a connection because it
8014                         would never be "best" due to autoconnect=False.
8015
8016 2007-09-24  Dan Williams  <dcbw@redhat.com>
8017
8018         * src/nm-manager.c
8019                 - (nm_manager_get_connection_secrets): Add a long timeout so the user
8020                         actually has some time to enter a key before the GetSecrets call
8021                         times out
8022
8023 2007-09-24  Dan Williams  <dcbw@redhat.com>
8024
8025         * introspection/nm-manager.xml
8026           src/nm-manager.c
8027                 - (impl_manager_legacy_state): fix 'state' method call return value
8028
8029 2007-09-24  Matthias Clasen  <mclasen@redhat.com>
8030
8031         * test/Makefile.am: Install nm-tool
8032
8033 2007-09-24  Dan Williams  <dcbw@redhat.com>
8034
8035         Patch from Ross Burton <ross@burtonini.com>
8036
8037         * test/nm-tool.c
8038           callouts/nm-dhcp-client-action.c
8039           src/nm-netlink.c
8040           src/vpn-manager/nm-vpn-connection.c
8041           libnm-glib/libnm-glib-test.c
8042                 - warning fixes
8043
8044 2007-09-24  Dan Williams  <dcbw@redhat.com>
8045
8046         * libnm-util/nm-utils.h
8047           libnm-util/nm-utils.c
8048                 - (nm_dbus_send_with_callback_replied, nm_dbus_send_with_callback):
8049                         remove, unused
8050
8051 2007-09-23  Dan Williams  <dcbw@redhat.com>
8052
8053         * vpn-daemons/vpnc/properties/nm-vpnc.c
8054                 - Update for new VPN properties API bits; instead of passing around
8055                         a lot of random things, everything goes into the NMConnection
8056                         object.
8057
8058 2007-09-23  Dan Williams  <dcbw@redhat.com>
8059
8060         * libnm-util/nm-setting.c
8061                 - Correctly dispose of settings objects if creating them from a hash
8062                         table fails
8063
8064 2007-09-23  Dan Williams  <dcbw@redhat.com>
8065
8066         * libnm-util/nm-setting.c
8067                 - (property_value_destroy, nm_setting_vpn_properties_new): initialize
8068                         the hash table in a standard manner.  Clients of libnm-util should
8069                         only call g_hash_table_remove_all(), never destroy the hash table
8070                         and recreate it.
8071
8072 2007-09-22  Dan Williams  <dcbw@redhat.com>
8073
8074         * src/nm-device-802-11-wireless.c
8075                 - (real_bring_up): update signal strength every 6 seconds, not 2.  No
8076                         real reason to do it so often, and reduces wakeups for clients.
8077
8078 2007-09-21  Dan Williams  <dcbw@redhat.com>
8079
8080         * src/nm-device-802-11-wireless.c
8081                 - (build_supplicant_config): wpa_supplicant requires the option
8082                         key_mgmt=NONE for unencrypted networks
8083                 - (real_act_stage2_config): clarify log message on activation
8084
8085 2007-09-21  Dan Williams  <dcbw@redhat.com>
8086
8087         * test/nm-supplicant-test.c
8088           test/Makefile.am
8089                 - Remove supplicant test binary; no longer applicable
8090
8091 2007-09-21  Dan Williams  <dcbw@redhat.com>
8092
8093         * src/supplicant-manager/nm-supplicant-manager.c
8094                 - (nm_supplicant_manager_init): poke the supplicant at startup to
8095                         activate it on the system bus
8096
8097 2007-09-20  Dan Williams  <dcbw@redhat.com>
8098
8099         * initscript/RedHat/NetworkManager.in
8100                 - dhcdbd is no longer used, so don't try to start it from the initscripts
8101
8102 2007-09-20  Dan Williams  <dcbw@redhat.com>
8103
8104         * src/nm-device.c
8105                 - (nm_device_is_activating): work around a race between auto-activation
8106                         and the user activating the same device that is being auto-activated
8107
8108 2007-09-20  Dan Williams  <dcbw@redhat.com>
8109
8110         * src/nm-device-interface.c
8111                 - (impl_device_activate): until multiple active device support lands,
8112                         ensure only one device can be active at a time
8113
8114 2007-09-20  Dan Williams  <dcbw@redhat.com>
8115
8116         * src/supplicant-manager/nm-supplicant-config.c
8117           src/supplicant-manager/nm-supplicant-config.h
8118                 - (nm_supplicant_config_add_option): hide secrets from system logs
8119
8120 2007-09-20  Dan Williams  <dcbw@redhat.com>
8121
8122         * src/NetworkManagerPolicy.c
8123                 - (nm_policy_device_change_check): re-enable the wireless device change
8124                         checking code; insted of checking for SSIDs, check for the same
8125                         connection instead
8126
8127 2007-09-20  Dan Williams  <dcbw@redhat.com>
8128
8129         * src/nm-device-802-11-wireless.c
8130                 - (supplicant_iface_connection_state_cb_handler): don't use the card's
8131                         composite link state when determining when to start the disconnection
8132                         timer; that link state is already based on the supplicant interface's
8133                         status which is exactly what's already being examined, plus the link
8134                         state is a conglomeration of various things that we don't want here
8135
8136 2007-09-20  Dan Williams  <dcbw@redhat.com>
8137
8138         * libnm-glib/nm-access-point.c
8139                 - (handle_property_changed): strength is a UCHAR
8140
8141 2007-09-20  Dan Williams  <dcbw@redhat.com>
8142
8143         * src/supplicant-manager/nm-supplicant-config.c
8144                 - (nm_supplicant_config_add_setting_wireless_security): uppercase
8145                         string list keywords too since that's what wpa_supplicant wants
8146
8147 2007-09-20  Dan Williams  <dcbw@redhat.com>
8148
8149         * libnm-util/nm-setting.c
8150                 - (convert_strv_to_slist): dupe the values in the list because since
8151                         the list is a boxed value, it'll get destroyed when it's container
8152                         (like a hash table or whatever) gets destroyed
8153
8154 2007-09-20  Tambet Ingo  <tambet@gmail.com>
8155
8156         * libnm-util/nm-setting.h: Change the type of NMSettingVPN->routes to
8157         GSList.
8158
8159         * libnm-util/nm-setting.c (setting_vpn_destroy): Free routes too.
8160
8161         * src/nm-manager.c (connection_get_settings_cb): No need to use weakref,
8162         just use (g_object_set_data_full).
8163
8164         * src/vpn-manager/nm-vpn-connection.c (nm_vpn_connection_get_routes): Now
8165         that NMSettingVPN->routes is a GSList, convert it to char **.
8166         (nm_vpn_connection_ip4_config_get): Free routes when done.
8167         (nm_vpn_connection_activate): Ditto.
8168
8169         * src/nm-device-802-11-wireless.c (real_connection_secrets_updated)
8170         (real_act_stage2_config): Use defined setting names.
8171
8172 2007-09-20  Dan Williams  <dcbw@redhat.com>
8173
8174         * src/nm-device-802-11-wireless.c
8175           src/nm-manager.c
8176           src/nm-manager.h
8177                 - Pass an NMDeviceInterface into nm_manager_get_connection_secrets()
8178                         so that the device can be deactivated if secrets are wrong
8179
8180 2007-09-20  Dan Williams  <dcbw@redhat.com>
8181
8182         * introspection/nm-settings-connection.xml
8183           libnm-glib/nm-settings.c
8184           libnm-glib/nm-settings.h
8185                 - Make GetSecrets asynchronous on the server side
8186
8187 2007-09-20  Dan Williams  <dcbw@redhat.com>
8188
8189         * src/nm-manager.h
8190           src/nm-device.c
8191                 - (nm_device_activate): actually check if a given connection
8192                         exists before assuming it doesn't
8193
8194 2007-09-20  Tambet Ingo  <tambet@gmail.com>
8195
8196         * libnm-util/nm-connection.c (register_default_creators): Use defined
8197         setting names. Register NMSettingVPN and NMSettingVPNProperties.
8198
8199         * libnm-util/nm-setting.c: Define property name strings, use them.
8200         Implement NMSettingVPN and NMSettingVPNProperties settings.
8201         Implement NM_S_TYPE_GVALUE_HASH.
8202         (nm_setting_populate_from_hash): Handle NM_S_TYPE_GVALUE_HASH.
8203         (setting_connection_verify): Rename 'devtype' property to 'type'.
8204
8205         * introspection/nm-vpn-manager.xml: Use NMConnection for VPN service
8206         properties.
8207
8208         * src/vpn-manager/nm-vpn-service.c: Ditto.
8209
8210         * src/vpn-manager/nm-vpn-connection.c: Ditto.
8211
8212         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_connect): Ditto.
8213         (nm_vpn_manager_new): Remove NMManager argument, it's easy enough to get.
8214
8215         * src/nm-device-802-11-wireless.c (find_best_connection): Use defined setting
8216         names. NMSettingConnection->devtype got renamed to 'type'.
8217
8218         * src/nm-device-802-3-ethernet.c (find_best_connection):
8219         (real_get_best_connection): Ditto.
8220
8221         * src/NetworkManager.c (main): Update the vpn manager creation arguments.
8222
8223         * libnm-glib/nm-vpn-manager.[ch]: Update.
8224
8225 2007-09-19  Dan Williams  <dcbw@redhat.com>
8226
8227         * src/NetworkManagerAP.c
8228           src/NetworkManagerAP.h
8229           introspection/nm-access-point.xml
8230                 - Change strength-changed signal into a properties-changed signal
8231                         for all properties, not just strength.  Export that signal over dbus
8232                         so listeners don't have to poll NM for changes.
8233                 - (nm_ap_export_to_dbus, nm_ap_new): not every NMAccessPoint should
8234                         get exported over D-Bus, so break up the logic and let other bits
8235                         decided when to export the AP
8236                 - (nm_ap_new_from_ap): remove, unused
8237
8238         * src/nm-device-802-11-wireless.c
8239                 - (merge_scanned_ap): only export APs that are actually on the device
8240                         list, not every AP created internally
8241
8242         * libnm-glib/nm-access-point.c
8243           libnm-glib/nm-access-point.h
8244                 - Cache properties internally and only hit DBus when needed.  Get
8245                         property updates from NM signals
8246
8247 2007-09-16  Dan Williams  <dcbw@redhat.com>
8248
8249         * libnm-util/nm-connection.c
8250           libnm-util/nm-connection.h
8251                 - (nm_connection_for_each_setting_value): new function; iterate over
8252                         each setting's value and call a user-provided function with details
8253                         about that value
8254
8255         * libnm-util/nm-setting.c
8256           libnm-util/nm-setting.h
8257                 - (nm_setting_enumerate_values): new function; enumerate the values
8258                         of a specific NMSetting subclass for a user-provided function with
8259                         details about that value
8260                 - Change wep_tx_keyidx to a uint32
8261                 - Create settings value tables for each setting defining their type,
8262                         key name, offset into the NMSetting subclass' structure, and whether
8263                         they are required and/or a secret
8264                 - (nm_setting_populate_from_hash): generic function to populate an
8265                         NMSetting from a GHash table, make all settings use it
8266                 - (nm_setting_hash): generic function to derive a GHashTable from
8267                         an NMSetting object, make all settings use it
8268
8269 2007-09-14  Dan Williams  <dcbw@redhat.com>
8270
8271         Remove unused stuff in libnm-util
8272
8273         * configure.in
8274           libnm-util/Makefile.am
8275           libnm-util/cipher-private.h
8276           libnm-util/cipher-wep-ascii.c
8277           libnm-util/cipher-wep-ascii.h
8278           libnm-util/cipher-wep-hex.c
8279           libnm-util/cipher-wep-hex.h
8280           libnm-util/cipher-wep-passphrase.c
8281           libnm-util/cipher-wep-passphrase.h
8282           libnm-util/cipher-wpa-psk-hex.c
8283           libnm-util/cipher-wpa-psk-hex.h
8284           libnm-util/cipher-wpa-psk-passphrase.c
8285           libnm-util/cipher-wpa-psk-passphrase.h
8286           libnm-util/cipher.c
8287           libnm-util/cipher.h
8288           libnm-util/dbus-helpers.c
8289           libnm-util/dbus-helpers.h
8290           libnm-util/gnome-keyring-md5.c
8291           libnm-util/gnome-keyring-md5.h
8292           libnm-util/sha1.c
8293           libnm-util/sha1.h
8294           src/nm-device-802-11-wireless.c
8295           test/libnm-util/Makefile.am
8296           test/libnm-util/test-ciphers.c
8297           test/libnm-util/test-dbus-helpers.c
8298           test/libnm-util/test-inputs.h
8299                 - Removed
8300
8301 2007-09-14  Dan Williams  <dcbw@redhat.com>
8302
8303         * libnm-util/dbus-method-dispatcher.c
8304           libnm-util/dbus-method-dispatcher.h
8305                 - Remove, unused
8306
8307 2007-09-14  Dan Williams  <dcbw@redhat.com>
8308
8309         Implement deferred activation support in the device class.
8310
8311         * src/nm-device-interface.c
8312           src/nm-device-interface.h
8313                 - (nm_device_interface_activate): take more arguments to support
8314                         deferred activation; callers must pass one of (connection) OR
8315                         (service_name, connection_path)
8316                 - (impl_device_activate): connection validation is punted to the device
8317                         to be able to handle deferred activation.  Yes, this means errors
8318                         don't get returned from the Activate() dbus call, and yes, that
8319                         should be fixed somehow later.
8320
8321         * src/nm-device.c
8322           src/nm-device.h
8323                 - (clear_act_request): clear additional deferred activation stuff too
8324                 - (deferred_activation_timeout_cb): new function; clean up when
8325                         deferred activation times out.
8326                 - (deferred_activation_start_cb): new function; when the connection
8327                         finally becomes available, start device activation
8328                 - (nm_device_activate): attach to the right signals of the activation
8329                         request if we need to defer activation until the connection is valid
8330
8331         * src/NetworkManagerPolicy.c
8332                 - (nm_policy_device_change_check): update for additional arguments
8333                         required for nm_device_interface_activate().  Pass NULL for these
8334                         though because this function already knows exactly which
8335                         NMConnection to use
8336
8337 2007-09-14  Dan Williams  <dcbw@redhat.com>
8338
8339         Implement deferred activation handling in the NMActRequest class.  When a
8340         client wants to activate a device but must create the NMConnection details
8341         on the fly, there likely hasn't been enough time yet for NM to receive the
8342         new connection signal and grab all the connection details.  So the
8343         activation is deferred (and bounded by a timer) for a while, and if the
8344         connection appears within the window, it is activated.
8345
8346         * src/nm-activation-request.c
8347           src/nm-activation-request.h
8348                 - (nm_act_request_class_init): two new signals to support deferred
8349                         activation, to allow the listener to handle both timeout and success
8350                 - (nm_act_request_new_deferred): new function, starts the deferred
8351                         activation timeout handler and listens to the NMManager for
8352                         new-connection signals to notice when the connection comes in
8353
8354 2007-09-14  Dan Williams  <dcbw@redhat.com>
8355
8356         * src/nm-manager.h
8357           src/nm-manager.c
8358                 - (nm_manager_get_connection_service_name,
8359                    nm_manager_get_connection_dbus_path): get details about a connection
8360                         known internally by the NMManager
8361                 - (nm_manager_class_init): fix connection add/remove signal marshalers
8362                         because NMConnection is now a GObject subclass
8363                 - Use constant for the gobject data tag used on NMConnection objects for
8364                         storing the associated DBusGProxy
8365
8366 2007-09-14  Dan Williams  <dcbw@redhat.com>
8367
8368         * utils/Makefile.am
8369           utils/nm-utils.c
8370           utils/nm-utils.h
8371           src/supplicant-manager/Makefile.am
8372           src/dhcp-manager/Makefile.am
8373           src/backends/Makefile.am
8374           src/named-manager/Makefile.am
8375           src/ppp-manager/Makefile.am
8376           src/vpn-manager/Makefile.am
8377           test/libnm-util/Makefile.am
8378           test/test-common/Makefile.am
8379                 - Remove utils/; it was unused
8380
8381 2007-09-13  Dan Williams  <dcbw@redhat.com>
8382
8383         * libnm-glib/nm-vpn-manager.h
8384           libnm-glib/nm-vpn-manager.c
8385                 - (nm_vpn_manager_connect): take routes as a GSList, not a char **
8386
8387 2007-09-13  Dan Williams  <dcbw@redhat.com>
8388
8389         * src/nm-device-802-3-ethernet.c
8390                 - (real_bring_down, nm_device_802_3_ethernet_dispose): disconnect from
8391                         netlink monitor carrier signals on dispose, not bring down.  The
8392                         carrier signals should be handled over the entire lifetime of the
8393                         device anyway, not created/destroyed on up or down.
8394
8395 2007-09-13  Dan Williams  <dcbw@redhat.com>
8396
8397         * libnm-glib/nm-device.c
8398           libnm-glib/nm-device.h
8399                 - (nm_device_activate): take a connection object path rather than an
8400                         NMConnection because NMConnection isn't exported over D-Bus and
8401                         therefore it dbus-glib can't automatically get an object path from it
8402
8403 2007-09-13  Dan Williams  <dcbw@redhat.com>
8404
8405         * libnm-util/nm-setting.c
8406                 - (nm_setting_wired_new): set autonegotiate to TRUE by default
8407
8408 2007-09-13  Tambet Ingo  <tambet@gmail.com>
8409
8410         * autogen.sh: NetworkManagerMain.h is gone, check for NetworkManager.c.
8411
8412 2007-09-12  Tambet Ingo  <tambet@gmail.com>
8413
8414         * src/vpn-manager/nm-vpn-connection.[ch]: 
8415         * src/vpn-manager/nm-vpn-manager.[ch]:
8416         * src/vpn-manager/nm-vpn-service.[ch]: Rewrite the vpn handling code. Using 
8417         dbus-glib, GObjects, signals etc.
8418
8419         * libnm-glib/nm-vpn-manager.[ch]: 
8420         * libnm-glib/nm-vpn-connection.[ch]: Now that the NM implementation changed
8421         so much, rewrite these too.
8422
8423         * libnm-glib/Makefile.am: Add new files to build, build new binding files for
8424         the new introspection files.
8425
8426         * libnm-glib/nm-client.[ch]: Remove all VPN related stuff from here.
8427
8428         * libnm-glib/nm-dbus-utils.[ch]: Renamed from nm-utils.[ch] that was shadowing
8429         the header with the same name from libnm-utils.
8430
8431         * libnm-glib/nm-vpn-plugin.[ch]: Implement.
8432
8433         * libnm-util/Makefile.am: Add nm-utils.[ch] to build.
8434
8435         * introspection/nm-vpn-plugin.xml: Implement.
8436
8437         * introspection/nm-vpn-connection.xml: Implement.
8438
8439         * introspection/nm-vpn-manager.xml: Implement.
8440
8441         * src/NetworkManagerSystem.c (nm_system_vpn_device_set_from_ip4_config): Remove
8442         the named manager argument, it can just as easily get it as the caller.
8443         (nm_system_vpn_device_unset_from_ip4_config): Ditto.
8444
8445         * src/vpn-manager/nm-dbus-vpn.[ch]: Remove.
8446
8447         * src/nm-dbus-manager.h: Fix up the name_owner signal signature.
8448
8449         * src/dhcp-manager/nm-dhcp-manager.c (garray_to_string): Remove, use one from
8450         libnm-utils.
8451
8452         * libnm-util/nm-connection.c: Ditto.
8453
8454         * src/NetworkManagerMain.h: Remove, it's finally empty.
8455
8456         * configure.in: Remove utils/ from build.
8457
8458         * include/NetworkManagerVPN.h: Add some more defines to reduce the amount
8459         of hard-coded strings.
8460
8461         * utils/: Move it over to libnm-util.
8462
8463         * test/Makefile.am: Link against libnm-util now that util/ is gone.
8464
8465         * dispatcher-daemon/Makefile.am: Ditto.
8466
8467         * src/Makefile.am: Ditto.
8468
8469 2007-09-12  Dan Williams  <dcbw@redhat.com>
8470
8471         Wireless connections can be made with config data from the applet now.
8472         
8473         Yay.
8474
8475         * src/supplicant-manager/nm-supplicant-config.h
8476           src/supplicant-manager/nm-supplicant-config.c
8477                 - (nm_supplicant_config_new): kill unused init parameter 'iface'
8478                 - (nm_supplicant_config_add_setting_wireless,
8479                    nm_supplicant_config_add_setting_wireless_security): new functions;
8480                         add key/value pairs from the settings objects to the supplicant
8481                         config
8482
8483         * src/nm-device-802-11-wireless.c
8484                 - (cull_scan_list): fix check to not prune currently associated AP
8485                 - (build_supplicant_config, real_act_stage2_config): call the functions
8486                         of the NMSupplicantConfig that parse settings objects rather than
8487                         doing it manually here
8488
8489 2007-09-12  Dan Williams  <dcbw@redhat.com>
8490
8491         * src/supplicant-manager/nm-supplicant-interface.c
8492           src/supplicant-manager/nm-supplicant-marshal.list
8493                 - (nm_supplicant_interface_class_init): fix stupid mistake, the
8494                         "connection-error" signal arguments should be STRING not CHAR
8495
8496 2007-09-12  Dan Williams  <dcbw@redhat.com>
8497
8498         * src/NetworkManagerUtils.c
8499           src/NetworkManagerUtils.h
8500                 - (nm_utils_hexstr2bin): new function
8501
8502 2007-09-11  Dan Williams  <dcbw@redhat.com>
8503
8504         * src/nm-manager.c
8505                 - (connection_get_settings_cb): emit connection-added signal
8506                 - (connection_removed_cb): uncomment bits for system settings service,
8507                         send connection-removed when appropriate
8508                 - (nm_manager_get_connection_secrets, get_secrets_cb): don't clobber
8509                         the stack by trying to g_object_set_data() on something that's
8510                         not a GObject; handle case where settings service returns
8511                         empty settings hash table
8512
8513 2007-09-11  Dan Williams  <dcbw@redhat.com>
8514
8515         * src/NetworkManagerPolicy.c
8516                 - (connection_added, connection_removed): trigger device change checks
8517                         on connection changes
8518
8519 2007-09-11  Dan Williams  <dcbw@redhat.com>
8520
8521         * src/nm-activation-request.c
8522                 - (connection_secrets_updated_cb): fix c&p error in signal emission
8523
8524 2007-09-11  Dan Williams  <dcbw@redhat.com>
8525
8526         * src/nm-device-802-11-wireless.c
8527                 - (real_connection_secrets_updated): fix erroneous check
8528
8529 2007-09-11  Dan Williams  <dcbw@redhat.com>
8530
8531         * introspection/nm-device.xml
8532           libnm-glib/nm-device.c
8533           libnm-glib/nm-device.c
8534                 - Fix Activate call argument borkage; Activate takes 3 arguments
8535
8536 2007-09-11  Dan Williams  <dcbw@redhat.com>
8537
8538         * libnm-glib/nm-access-point.c
8539           libnm-glib/nm-access-point.c
8540                 - (nm_access_point_get_frequency): now returns guint32 to match
8541                         property change on 2007-09-10
8542
8543 2007-09-11  Dan Williams  <dcbw@redhat.com>
8544
8545         * src/nm-device-802-11-wireless.c
8546                 - (nm_device_802_11_wireless_new): s/index/idx, stupid system header
8547                         somewhere defines 'index' and I missed this one when I fixed the
8548                         shadow declaration errors earlier
8549
8550 2007-09-11  Dan Williams  <dcbw@redhat.com>
8551
8552         * libnm-util/nm-connection.c
8553                 - (nm_connection_update_secrets, need_secrets_check): move
8554                         802-11-wireless-security need_secrets checks to the setting object
8555                         itself, where it belongs
8556
8557         * libnm-util/nm-setting.c
8558           libnm-util/nm-setting.h
8559                 - (nm_setting_need_secrets): new function
8560                 - (setting_wireless_security_verify,
8561                    nm_setting_wireless_security_new_from_hash): make 'key-mgmt' required
8562                 - (setting_wireless_security_need_secrets): mostly copy code over
8563                         from nm-connection.c
8564
8565 2007-09-11  Dan Williams  <dcbw@redhat.com>
8566
8567         * libnm-util/nm-setting.c
8568           libnm-util/nm-setting.h
8569                 - (nm_setting_update_secrets): new function; add a virtual function that
8570                         subclasses can implement to update their secrets
8571                 - (setting_wireless_security_update_secrets): implement that function
8572                         for the 802-11-wireless-security subclass
8573
8574         * libnm-util/nm-connection.c
8575           libnm-util/nm-connection.h
8576                 - (nm_connection_update_secrets): update secrets for a Setting and
8577                         emit a signal on success
8578
8579         * src/nm-manager.c
8580           src/nm-manager.h
8581           src/nm-marshal.list
8582                 - (connection_get_settings_cb): enable system settings bits
8583                 - (nm_manager_get_connection_secrets, get_secrets_cb): add function
8584                         to request secrets from the settings dbus service and to
8585                         push those secrets to the NMConnection itself
8586
8587         * src/nm-activation-request.c
8588           src/nm-activation-request.h
8589                 - Attach to the 'secrets-updated' signal of the NMConnection that's
8590                         currently being activated, and proxy that signal to other listeners.
8591                         Goes through the activation request because the activation request
8592                         is the thing that manages the lifetime of the NMConnection that's
8593                         being activated.
8594
8595         * src/nm-device-802-11-wireless.c
8596                 - (real_connection_secrets_updated): implement the connection secrets
8597                         updated notification and restart activation when secrets are
8598                         received
8599                 - (real_act_stage2_config): request secrets from the settings dbus
8600                         service if secrets are needed
8601
8602         * src/nm-device.c
8603           src/nm-device.h
8604                 - (clear_act_request, nm_device_activation_cancel,
8605                    nm_device_deactivate_quickly, nm_device_dispose): consolidate places
8606                         where the activation request is cleared
8607                 - (nm_device_activate, connection_secrets_updated_cb): attach to the
8608                         updated secrets signal of activation request and add a function
8609                         that subclasses can override to handle it easily
8610
8611 2007-09-11  Tambet Ingo  <tambet@gmail.com>
8612
8613         * src/backends/NetworkManagerSuSE.c: Fix a build issue caused by the
8614         removal of NetworkManagerAPList.
8615
8616 2007-09-10  Dan Williams  <dcbw@redhat.com>
8617
8618         * src/NetworkManagerAP.c
8619           src/NetworkManagerAP.h
8620           introspection/nm-access-point.xml
8621                 - Change 'freq' property to a guint32 instead of a double since we
8622                         weren't using the floating point bits anyway
8623
8624 2007-09-10  Dan Williams  <dcbw@redhat.com>
8625
8626         * NetworkManagerAP.c
8627           NetworkManagerAP.h
8628           NetworkManagerPolicy.c
8629           NetworkManagerSystem.c
8630           NetworkManagerUtils.c
8631           NetworkManagerUtils.h
8632           nm-device-802-11-wireless.c
8633           nm-device-802-3-ethernet.c
8634           nm-hal-manager.c
8635           nm-manager.c
8636           vpn-manager/nm-dbus-vpn.c
8637                 - Warning fixes; casts and removal of unused variables
8638
8639 2007-09-10  Dan Williams  <dcbw@redhat.com>
8640
8641         * include/NetworkManager.h
8642                 - Kill NMNetworkType; AP types don't matter any more
8643
8644         * src/NetworkManagerAPList.c
8645           src/NetworkManagerAPList.h
8646           src/Makefile.am
8647                 - Kill; NMAccessPointList has outlived it's usefulness
8648
8649         * src/NetworkManagerAP.c
8650           src/NetworkManagerAP.h
8651                 - (match_cipher, security_compatible, nm_ap_check_compatible): new
8652                         functions; check if an NMConnection object is compatible with the
8653                         settings of this AP
8654                 - (freq_to_channel, channel_to_freq): utility functions for
8655                         channel <-> frequency conversion
8656
8657         * src/nm-device.c
8658           src/nm-device.h
8659                 - (nm_device_get_best_connection): pass the specific object around
8660                          (which might be the object path of a specific AP to connect to).
8661                          The get_best_connection() call should populate this on return
8662                          if needed (wireless does).
8663
8664         * src/nm-device-802-3-ethernet.c
8665                 - (real_get_best_connection): handle specific_object argument
8666
8667         * src/NetworkManager.c
8668           src/NetworkManagerMain.h
8669                 - Remove unused includes
8670
8671         * src/nm-device-802-11-wireless.c
8672           src/nm-device-802-11-wireless.h
8673                 - Convert the ap_list into a GSList from an NMAccessPointList
8674                 - No need for caching the 'activation_ap' since this is now determined
8675                         from the specific_object of the activation request, which is
8676                         populated from the get_best_connection() call or from a user request
8677                 - (nm_device_802_11_wireless_update_bssid): fix warning
8678                 - (get_wireless_capabilities): fix error message format arguments
8679                 - (nm_device_802_11_wireless_copy_allowed_to_dev_list): remove, unused
8680                 - (find_best_connection, real_get_best_connection): implement
8681                 - (ap_list_get_ap_by_ssid, nm_device_802_11_wireless_ap_list_print):
8682                         move here from NetworkManagerAPList
8683                 - (ap_need_secrets): remove; moved to nm-connection.c where it belongs
8684                 - (real_act_stage1_prepare): just ensure an AP exists, connection is
8685                         already verified earlier
8686                 - (real_act_stage2_config): use nm_connection_need_secrets()
8687
8688         * src/NetworkManagerPolicy.c
8689                 - (nm_policy_auto_get_best_device): handle specific objects
8690                 - (create_connection): remove; automatic connection creation functionality
8691                         is handled by the Connection objects
8692                 - (nm_policy_device_change_check): handle specific_object
8693
8694         * libnm-util/nm-connection.c
8695                 - (wireless_sec_need_secrets, nm_connection_need_secrets): implement
8696
8697 2007-09-10  Dan Williams  <dcbw@redhat.com>
8698
8699         * src/nm-manager.c
8700                 - (query_connections): fix uninitialized variable problem that caused
8701                         segfault
8702                 - (nm_manager_add_device): take devices down on startup so that we can
8703                         be assured that nm_device_is_up() won't short-circuit the init
8704                         process.  Hack until the is_up check gets split into two pieces
8705                         that aren't behaviorally confusing.
8706
8707 2007-09-09  Dan Williams  <dcbw@redhat.com>
8708
8709         * introspection/nm-device.xml
8710                 - The 'Activate' method now takes 3 arguments, a service name for the
8711                 settings service (user or system), the object path of the connection
8712                 to activate, and the specific object to activate, if any
8713
8714         * src/nm-device-interface.c
8715                 - (nm_device_interface_error_quark, nm_device_interface_error_get_type):
8716                 Add error bits
8717                 - (impl_device_activate): adapt to new Activate arguments; validate
8718                 the service name and get the Connection object from the NMManager
8719                 before starting to activate the device with the specified connection
8720
8721         * src/nm-device-802-3-ethernet.c
8722                 - (real_get_best_connection): find the best connection, or create a
8723                 default one if no existing connections can be used
8724
8725         * src/NetworkManagerPolicy.c
8726                 - (nm_policy_auto_get_best_device): Get the device's best connection
8727                 and only pick the device if it has one
8728                 - (nm_policy_device_change_check): disable wireless bits for now until
8729                 wireless get_best_connection() can be implemented (replacing "best_ap");
8730                 don't create a default connection here as the device subclass will do
8731                 that if needed
8732
8733         * src/nm-manager.h
8734           src/nm-manager.c
8735                 - (nm_manager_get): make NMManager a singleton and expose the getter
8736                 internally
8737                 - Rework internal NMManager connection handling to use the same
8738                 routines for both the system and user settings services.  Most calls
8739                 take a new NMConnectionType argument specifying either system or user
8740                 connections
8741                 - (nm_manager_get_connection_by_object_path): new function; get a
8742                 connection keyed on its object path
8743
8744         * src/NetworkManager.c
8745                 - (main): use nm_manager_get()
8746
8747 2007-09-09  Dan Williams  <dcbw@redhat.com>
8748
8749         * src/nm-device.h
8750           src/nm-device.c
8751                 - (nm_device_get_best_connection): new function; get best connection
8752                         for the device at that time
8753
8754 2007-09-09  Dan Williams  <dcbw@redhat.com>
8755
8756         * src/nm-device-interface.h
8757                 - Add NMDeviceInterfaceError with an UnknownConnection error
8758
8759 2007-09-09  Dan Williams  <dcbw@redhat.com>
8760
8761         Stupid mistake on my part; object path and interface for settings service
8762         and connection objects can be the same, only the service name must be
8763         different for the system and user settings services.
8764
8765         * include/NetworkManager.h
8766           src/nm-manager.c
8767           introspection/nm-settings-connection.xml
8768           introspection/nm-settings.xml
8769           libnm-glib/nm-settings.c
8770                 - (nm_connection_settings_init, query_user_connections,
8771                    new_connection_cb): Unify NetworkManagerSettings and Connection
8772                    interface name and object path
8773
8774 2007-09-06  Dan Williams  <dcbw@redhat.com>
8775
8776         * libnm-glib/nm-object.c
8777                 - (nm_object_get_string_property, nm_object_get_object_path_property,
8778                    nm_object_get_int_property, nm_object_get_uint_property,
8779                    nm_object_get_boolean_property, nm_object_get_byte_property,
8780                    nm_object_get_double_property, nm_object_get_byte_array_property):
8781                         clear GValues after copying their contents, fixes memory leaks
8782                         after every property access because dbus-glib copies the values
8783                         from the DBusMessage into the GValue already.
8784
8785 2007-09-06  Dan Williams  <dcbw@redhat.com>
8786
8787         * introspection/nm-access-point.xml
8788                 - Fix WpaFlags and RsnFlags property names to be what dbus-glib expects
8789                         them to be.  There's some magic property name parsing going on in
8790                         dbus-glib that breaks up property names based on studly-caps and
8791                         puts - between words.
8792
8793         * libnm-glib/nm-access-point.c
8794                 - (nm_access_point_get_wpa_flags, nm_access_point_get_rsn_flags):
8795                         Fix property names
8796
8797 2007-09-06  Dan Williams  <dcbw@redhat.com>
8798
8799         * src/nm-manager.c
8800                 - (nm_manager_user_connections_destroy): clear the user connections hash
8801                         table, don't destroy it
8802                 - (finalize): only destroy the hash table on NMManager finalization
8803
8804 2007-09-02  Dan Williams  <dcbw@redhat.com>
8805
8806         * include/NetworkManager.h
8807           libnm-glib/nm-settings.c
8808                 - defines for the user settings daemon D-Bus bits
8809
8810         * src/NetworkManager.c
8811                 - Remove stuff that referred to the old NetworkManagerInfo service
8812
8813         * src/vpn-manager/nm-dbus-vpn.h
8814                 - Move old NMI defines to the only place they are used still
8815
8816         * libnm-util/nm-connection.c
8817           libnm-util/nm-connection.h
8818           src/nm-activation-request.c
8819                 - Make NMConnection a GObject subclass so we can do spiffy stuff with it
8820
8821         * src/nm-manager.c
8822           src/nm-manager.h
8823                 - Get connections and their settings from the user settings daemon
8824                         at the appropriate times
8825
8826 2007-09-02  Dan Williams  <dcbw@redhat.com>
8827
8828         * libnm-util/nm-setting.c
8829                 - (nm_settings_verify): correct setting name is 'connection', not 'info'
8830                 - (setting_wireless_hash): set the right value on the item
8831
8832 2007-09-02  Dan Williams  <dcbw@redhat.com>
8833
8834         * test/Makefile.am
8835           test/nminfotest.c
8836                 - Remove, no longer useful
8837
8838 2007-08-30  Dan Williams  <dcbw@redhat.com>
8839
8840         * src/Makefile.am
8841           src/NetworkManagerDbus.c
8842           src/NetworkManagerDbus.h
8843           src/vpn-manager/nm-dbus-vpn.c
8844                 - Remove, no longer necessary.  Move last bits to the only place its
8845                 used, in nm-dbus-vpn.c
8846
8847         * src/NetworkManagerAPList.c
8848           src/nm-device.c
8849           src/NetworkManager.c
8850           src/nm-device-802-11-wireless.c
8851           src/vpn-manager/nm-vpn-manager.c
8852           src/vpn-manager/nm-vpn-service.c
8853           src/NetworkManagerPolicy.c
8854           src/nm-manager.c
8855                 - Remove usage of NetworkManagerDbus.h, and kill the obfuscation
8856                 that was message_is_error()
8857
8858 2007-08-30  Dan Williams  <dcbw@redhat.com>
8859
8860         * libnm-util/sha1.c
8861                 - Include config.h to get defines for endiannes (gnome.org #420216)
8862
8863 2007-08-30  Dan Williams  <dcbw@redhat.com>
8864
8865         Patch from Philip Withnall <bugzilla@tecnocode.co.uk>
8866
8867         * src/ppp-manager/Makefile.am
8868                 - use -fPIC (gnome.org #471825)
8869
8870 2007-08-29  Dan Williams  <dcbw@redhat.com>
8871
8872         * include/NetworkManager.h
8873                 - Keep NMConnection object path in sync
8874
8875         * libnm-glib/nm-settings.c
8876           libnm-glib/nm-settings.h
8877                 - Break D-Bus object registration out of the init function, because
8878                 every object that's exported over D-Bus needs to use the _same_
8879                 DBusConnection.  Otherwise, each object would get a different object
8880                 path tree and wouldn't be callable.
8881
8882 2007-08-29  Dan Williams  <dcbw@redhat.com>
8883
8884         * libnm-util/nm-setting.h
8885           libnm-util/nm-setting.c
8886           libnm-util/nm-connection.c
8887           src/NetworkManagerPolicy.c
8888                 - 'info' settings object should be 'connection' says the spec
8889                 at NetworkManagerConfigurationSpecification
8890
8891 2007-08-29  Dan Williams  <dcbw@redhat.com>
8892
8893         * libnm-glib/nm-settings.c
8894           libnm-glib/nm-settings.h
8895                 - make the dbus path a property of the object, and autogenerate it.
8896                 It can't be composed of the 'id' field becuase that's not available
8897                 yet during the GObject creation in nm_connection_settings_init()
8898
8899 2007-08-29  Dan Williams  <dcbw@redhat.com>
8900
8901         * introspection/nm-settings-connection.xml
8902           introspection/nm-settings.xml
8903                 - Service name -> NetworkManagerUserSettings because two services
8904                 can't share part of the same path.  I'm not really sure how we'll use
8905                 the same code with the system-settings daemon...
8906
8907 2007-08-28  Dan Williams  <dcbw@redhat.com>
8908
8909         * src/nm-device-interface.c
8910           src/nm-device-interface.h
8911                 - Kill one more bit of NMData
8912
8913 2007-08-28  Dan Williams  <dcbw@redhat.com>
8914
8915         * src/NetworkManagerSystem.h
8916           src/nm-device.c
8917           src/nm-device.h
8918           src/nm-hal-manager.c
8919           src/NetworkManager.c
8920           src/nm-device-802-11-wireless.c
8921           src/nm-hal-manager.h
8922           src/nm-device-802-3-ethernet.c
8923           src/vpn-manager/nm-vpn-service.h
8924           src/vpn-manager/nm-vpn-manager.c
8925           src/vpn-manager/nm-vpn-manager.h
8926           src/vpn-manager/nm-vpn-service.c
8927           src/nm-device-802-11-wireless.h
8928           src/NetworkManagerMain.h
8929           src/nm-device-802-3-ethernet.h
8930           src/backends/NetworkManagerGentoo.c
8931           src/backends/NetworkManagerPaldo.c
8932           src/backends/NetworkManagerFrugalware.c
8933           src/backends/NetworkManagerRedHat.c
8934           src/backends/NetworkManagerSlackware.c
8935           src/backends/NetworkManagerGeneric.c
8936           src/backends/NetworkManagerArch.c
8937           src/backends/NetworkManagerSuSE.c
8938           src/backends/NetworkManagerGeneric.h
8939           src/backends/NetworkManagerDebian.c
8940                 - Kill NMData
8941
8942 2007-08-28  Dan Williams  <dcbw@redhat.com>
8943
8944         * src/NetworkManagerMain.h
8945           src/nm-device-802-11-wireless.c
8946           src/NetworkManager.c
8947                 - Remove invalid AP list from NMData; need to rework this somewhat, but
8948                 for now we should set the 'invalid' property on individual APs, and when
8949                 we need to invalidate a whole ESS, set the 'invalid' on every member of
8950                 that ESS
8951
8952 2007-08-28  Dan Williams  <dcbw@redhat.com>
8953
8954         * src/NetworkManagerAP.c
8955           src/NetworkManagerAP.h
8956                 - Remove 'fallback' tag, to be replaced by NMConnection/NMSettings
8957                         'autoconnect' property instead
8958
8959         * src/NetworkManager.c
8960           src/NetworkManagerMain.h
8961           src/NetworkManagerPolicy.c
8962           src/NetworkManagerPolicy.h
8963                 - Remove the 'allowed_ap_list', which should be replaced by 
8964                         NMConnection/NMSettings instead, since _those_ are the allowed
8965                         things that NM can connect to
8966
8967         * src/nm-device-802-11-wireless.c
8968                 - Remove both allowed_ap_list usage and 'fallback' checking
8969
8970 2007-08-28  Dan Williams  <dcbw@redhat.com>
8971
8972         * src/nm-device.c
8973           src/named-manager/nm-named-manager.c
8974           src/named-manager/nm-named-manager.h
8975           src/NetworkManager.c
8976           src/vpn-manager/nm-vpn-manager.c
8977           src/NetworkManagerMain.h
8978           src/NetworkManagerSystem.c
8979                 - Remove the named-manager object from NMData structure in preparation
8980                 for NMData's timely death.  Make the NMNamedManager the singleton that
8981                 it really is
8982
8983 2007-08-28  Dan Williams  <dcbw@redhat.com>
8984
8985         Remove NMAPSecurity objects, they are replaced with flags on the APs for
8986         each AP's capabilities, and by NMConnection/NMSettings objects for user
8987         defined connections.
8988
8989         * include/NetworkManager.h
8990                 - Redefine 802.11 security properties.  There are now device capabilities
8991                         and AP flags and AP security flags.  It was way to unclear before.
8992
8993         * src/Makefile.am
8994           src/nm-ap-security-leap.h
8995           src/nm-ap-security-leap.c
8996           src/nm-ap-security-wpa-eap.c
8997           src/nm-ap-security-wpa-eap.h
8998           src/nm-ap-security-private.h
8999           src/nm-ap-security-wpa-psk.c
9000           src/nm-ap-security-wpa-psk.h
9001           src/nm-ap-security-wep.c
9002           src/nm-ap-security-wep.h
9003           src/nm-ap-security.c
9004           src/nm-ap-security.h
9005                 - Removed, to be replaced with NMConnection/NMSettings objects
9006
9007         * src/nm-dbus-nmi.c
9008           src/nm-dbus-nmi.h
9009                 - Removed, to be replaced by code that talks to the new info daemon
9010                         interface and gets NMConnection/NMSettings objects
9011
9012         * src/backends/NetworkManagerSuSE.c
9013                 - Remove usage of NMAPSecurity; should be replaced by a system-level
9014                         info-daemon that does the same thing but talks the new info-daemon
9015                         D-Bus interface
9016
9017         * src/NetworkManagerAP.h
9018           src/NetworkManagerAP.c
9019           src/NetworkManagerAPList.c
9020           libnm-glib/libnm-glib-test.c
9021                 - Remove usage of NMAPSecurity objects and adjust to new flags for
9022                         WPA/RSN
9023
9024         * libnm-glib/nm-access-point.c
9025           libnm-glib/nm-access-point.h
9026           introspection/nm-access-point.xml
9027           test/nm-tool.c
9028                 - Adjust to new flags for AP security
9029
9030         * utils/nm-utils.c
9031           utils/nm-utils.h
9032           src/vpn-manager/nm-dbus-vpn.c
9033                 - Remove D-Bus pending call stuff from nm-utils and put it in the VPN
9034                         stuff which is the only place it's used
9035
9036         * src/nm-device-interface.c
9037           src/nm-device-interface.h
9038           introspection/nm-device.xml
9039           src/nm-activation-request.c
9040           src/nm-activation-request.h
9041           src/nm-device.c
9042                 - Add a new 'specific_object' argument that hints to NM what actual
9043                         AP or other device-specific thing the connection should apply to.
9044                         NMConnection objects can apply to more than one actual device/AP.
9045
9046         * libnm-util/nm-connection.c
9047         * libnm-util/nm-connection.h
9048                 - Add 'have_secrets" call stubs
9049
9050         * libnm-util/cipher.h
9051                 - Move NM_AUTH_TYPE_* defines here for now
9052
9053         * src/nm-device-802-11-wireless.c
9054                 - Remove usage of NMAPSecurity, to be replaced with NMConnection/
9055                         NMSettings objects
9056
9057         * src/NetworkManagerDbus.c
9058         * src/NetworkManagerPolicy.c
9059                 - Remove usage of update_allowed_networks, should be pushing data in
9060                         a different manner
9061
9062 2007-08-27  Tambet Ingo  <tambet@gmail.com>
9063
9064         * src/nm-manager.c (impl_manager_get_devices): Duplicate the device path, 
9065         dbus-glib frees it when the call is done.
9066
9067 2007-08-26  Dan Williams  <dcbw@redhat.com>
9068
9069         * introspection/nm-device.xml
9070                 - Add 'Index' property on NMDevice objects (forgot to do this earlier)
9071
9072 2007-08-26  Dan Williams  <dcbw@redhat.com>
9073
9074         * src/nm-device-802-3-ethernet.c
9075                 - (constructor): move connection of interface-connected/disconnected
9076                         signals here from real_bring_up().  Should be listening to netlink
9077                         for carrier events no matter what the initial state of the device
9078                         is.
9079
9080 2007-08-26  Dan Williams  <dcbw@redhat.com>
9081
9082         * src/nm-netlink-monitor.c
9083                 - (nm_netlink_monitor_class_init): fix marshalling types for
9084                         interface-connected/interface-disconnected
9085                 - (nm_netlink_monitor_event_handler): clean up carrier on/off
9086                         check
9087
9088 2007-08-26  Dan Williams  <dcbw@redhat.com>
9089
9090         Convert to using interface indexes as the primary method of identifying
9091         devices inside NetworkManager.  Indexes are (?) stable, but devices can
9092         be renamed at any time.  Device object paths now refer to the device
9093         index rather than the name, and you can map those two manually if you like
9094         by looking in the /sys/class/net/<name>/ifindex file.  Also moves most
9095         netlink-related code to nm-netlink.c, and cleans up nm-netlink-monitor.c
9096         to use interface indexes rather than names.
9097
9098 2007-08-26  Dan Williams  <dcbw@redhat.com>
9099
9100         * src/nm-netlink-monitor.h
9101                 - Remove one last bit of wireless-event signal
9102
9103 2007-08-26  Dan Williams  <dcbw@redhat.com>
9104
9105         * src/nm-netlink-monitor.c
9106                 - (nm_netlink_monitor_class_init, nm_netlink_monitor_event_handler):
9107                         don't need the 'wireless-event' signal anymore since that's all
9108                         handled by wpa_supplicant
9109
9110 2007-08-25  Dan Williams  <dcbw@redhat.com>
9111
9112         It's 2007. Remove support for drivers that don't support wireless scanning.
9113
9114         * test/nm-tool.c
9115           include/NetworkManager.h
9116           src/NetworkManagerUtils.c
9117           src/NetworkManagerPolicy.c
9118           src/nm-device-802-11-wireless.c
9119                 - Remove special handling for non-scanning devices and mark them
9120                         as unsupported/unhandled
9121
9122 2007-08-20  Dan Williams  <dcbw@redhat.com>
9123
9124         * src/nm-device-802-11-wireless.c
9125           src/nm-device-802-3-ethernet.c
9126                 - (real_is_up): move device-specific tests before generic IFF_UP test,
9127                         because when the card is pulled or the module removed, the device
9128                         is already !IFF_UP and then device-specific cleanup (removing
9129                         the supplicant interface, periodic checks, etc) never gets done
9130
9131 2007-08-20  Dan Williams  <dcbw@redhat.com>
9132
9133         * src/nm-manager.c
9134                 - (nm_manager_remove_device): bring device down before disconnecting
9135                         signal handlers, so that the 'state' signal will get broadcast when
9136                         the device enters the DOWN state
9137                 - (manager_device_state_changed): add NM_DEVICE_STATE_DOWN to the list
9138                         of states that cause the NMManager to recheck its state
9139
9140 2007-08-20  Dan Williams  <dcbw@redhat.com>
9141
9142         * src/supplicant-manager/nm-supplicant-interface.c
9143                 - (interface_disconnect_done): don't try to dispose of the net proxy
9144                         when it may already have been disposed of
9145
9146 2007-08-20  Dan Williams  <dcbw@redhat.com>
9147
9148         * src/nm-device-802-11-wireless.c
9149                 - (nm_device_802_11_wireless_get_ssid): don't traceback and die when
9150                         the SSID isn't available; this can happen when the card is pulled
9151                         or the module unloaded, during the post-removal deactivation
9152                         paths, when the ioctl returns ENODEV
9153
9154 2007-08-20  Dan Williams  <dcbw@redhat.com>
9155
9156         * src/nm-device-802-11-wireless.c
9157                 - (merge_scanned_ap): only merge the AP with another if the SSID, BSSID,
9158                         frequency, and mode match.  Applets are now responsible for grouping
9159                         access points
9160
9161 2007-08-20  Dan Williams  <dcbw@redhat.com>
9162
9163         * src/NetworkManagerAP.c
9164         * src/NetworkManagerAP.h
9165                 - (nm_ap_print_self): new function
9166
9167         * src/NetworkManagerAPList.c
9168                 - (nm_ap_list_print_members): call nm_ap_print_self() rather than trying
9169                         to do it all here
9170         
9171 2007-08-17  Dan Williams  <dcbw@redhat.com>
9172
9173         * src/nm-device-802-3-ethernet.c
9174                 - (real_bring_down): don't try to dispose of stuff that might not
9175                         exist
9176
9177 2007-08-17  Dan Williams  <dcbw@redhat.com>
9178
9179         * src/NetworkManagerAP.c
9180                 - (nm_ap_set_user_addresses): uppercase any BSSID passed in from the
9181                         applet.  This ensures that the case between the seen-bssids and
9182                         the bssids reported by the driver match.
9183
9184 2007-08-17  Dan Williams  <dcbw@redhat.com>
9185
9186         * src/nm-device-802-11-wireless.c
9187                 - (device_cleanup): disconnect the interface in wpa_supplicant before
9188                         we dispose of the interface proxy in NM
9189
9190 2007-08-16  Dan Williams  <dcbw@redhat.com>
9191
9192         * libnm-glib/nm-client.c
9193                 - (nm_client_init): create VPN connections hash table with key free
9194                         function
9195                 - (proxy_vpn_connection_added): VPN connections hash table key should
9196                         be a duplicated value, not the same memory address as the VPN
9197                         connection name.  This is because the VPN connection name could
9198                         potentially be freed and set to something else during the lifetime
9199                         of the NMVPNConnection object.
9200
9201 2007-08-16  Tambet Ingo  <tambet@gmail.com>
9202
9203         * src/ppp-manager/nm-ppp-manager.c (pppd_child_setup): Implement.
9204         (nm_ppp_manager_start): Use g_spawn_async() since we're not doing anything
9205         with the file descriptors. Send a child setup function to change the pppd
9206         progress group.
9207
9208 2007-08-15  Dan Williams  <dcbw@redhat.com>
9209
9210         * src/supplicant-manager/nm-supplicant-interface.c
9211                 - (try_remove_iface): new function, ask wpa_supplicant to remove
9212                         an interface
9213                 - (nm_supplicant_interface_dispose): call try_remove_iface() when
9214                         disposing of the NMSupplicantInterface.  Otherwise weird stuff
9215                         happens on hotplug if wpa_supplicant doesn't tear down and readd
9216                         the interface internally
9217
9218 2007-08-15  Dan Williams  <dcbw@redhat.com>
9219
9220         * src/nm-device-802-11-wireless.c
9221                 - (real_bring_down): move most of this function into device_cleanup()
9222                         so that it can be called from elsewhere
9223                 - (nm_device_802_11_wireless_dispose): clean up device periodic timers
9224                         and stuff on dispose.  These would normally get cleaned up when
9225                         the device is marked down and deactivated, but when the device is
9226                         hot-unplugged, it's already down and real_down() never gets run
9227
9228 2007-08-15  Dan Williams  <dcbw@redhat.com>
9229
9230         * src/nm-dbus-nmi.c
9231                 - (nm_dbus_get_user_key_for_network_cb): fix incorrect refcounting that
9232                         caused a reference leak on device for which NM requested a key
9233
9234 2007-08-15  Dan Williams  <dcbw@redhat.com>
9235
9236         * libnm-glib/nm-client.c
9237                 - (nm_client_get_best_vpn_state): fix leakage of the vpn connection list
9238
9239 2007-08-15  Tambet Ingo  <tambet@gmail.com>
9240
9241         * src/ppp-manager: Implement ppp-manager. It's sort of dead code for now since
9242         nothing is using it at the moment, but it'll be all useful and stuff later on.
9243
9244         * libnm-util/nm-setting.h: Define NMSettingPPP.
9245
9246         * libnm-util/nm-setting.c: Implement NMSettingPPP.
9247
9248         * libnm-util/nm-connection.c (register_default_creators): Register ppp setting.
9249
9250         * src/Makefile.am: Add ppp-manager to SUBDIRS.
9251
9252         * configure.in: Require ppp headers. Build Makefile for ppp-manager.
9253
9254         * introspection/Makefile.am: Add nm-manager-client.xml to EXTRA_DIST.
9255
9256 2007-08-14  Tambet Ingo  <tambet@gmail.com>
9257
9258         * libnm-glib/Makefile.am: Use nm-manager-client.xml to produce nm-client-bindings.
9259
9260         * introspection/nm-manager-client.xml: Add a horrible horrbile hack to work around
9261         an issue with dbus-glib bindings generator. The issue is, the generated C caller
9262         functions for dbus methods "Sleep(bool)" and "sleep()" both have the same function
9263         name and different arguments and it won't compile anymore. To fix this, we now have
9264         two copies of nm-manager.xml file. nm-manager.xml contains the actual interface,
9265         that is new API + compatibility API and used by the daemon. The other, 
9266         nm-manager-client.xml is only the new API without compatibility bits and is used
9267         by libnm-glib to make it compile.
9268
9269         * introspection/nm-manager.xml: Define compatibility methods (sleep, wake, state).
9270
9271         * src/nm-manager.c (impl_manager_legacy_sleep)
9272         (impl_manager_legacy_wake, impl_manager_legacy_state): Implement the compatibility
9273         interface functions for 0.6 branch.
9274
9275 2007-08-14  Dan Williams  <dcbw@redhat.com>
9276
9277         * src/NetworkManagerAP.c
9278                 - (nm_ap_new_from_properties): fix mistaken check of return value
9279                         from memcmp (should expect 0)
9280
9281 2007-08-14  Dan Williams  <dcbw@redhat.com>
9282
9283         (force-commit to fix wrong comment and partial commit of r2685; this
9284          commit actually applies to r2685)
9285
9286         * src/NetworkManagerUtils.c
9287                 - (nm_utils_same_ssid): add "ignore_trailing_null" parameter which
9288                         ignores trailing nulls in the SSID to work around mismatches in
9289                         expectations between WEXT and what the info-daemon passes back.  The
9290                         info-daemon would pass back the correct length, but due to the
9291                         ESSID length issues with WEXT 22 and greater and wpa_supplicant,
9292                         the device would always have an SSID + 1 depending on what versions
9293                         of wpa_supplicant, the kernel, and NM you have.  This was most often
9294                         visible by just quitting the applet and relaunching, which caused
9295                         NM to reassociated to the same network over again when reloading
9296                         the save networks.
9297
9298         * src/NetworkManagerPolicy.c
9299           src/NetworkManagerUtils.h
9300           src/nm-device-802-11-wireless.c
9301                 - Update for new parameter to nm_utils_same_ssid()
9302
9303 2007-08-14  Dan Williams  <dcbw@redhat.com>
9304
9305         * src/NetworkManagerAP.c
9306                 - (nm_ap_new_from_properties): ignore BSSs with invalid BSSIDs.  Today
9307                         I encountered a BSS that wasn't just hiding it's ESSID, it was
9308                         setting the BSSID to all 0s.  That confused the heck out of NM,
9309                         plus it's useless and probably out-of-spec.
9310
9311 2007-08-14  Dan Williams  <dcbw@redhat.com>
9312
9313         * callouts/Makefile.am
9314           src/dhcp-manager/nm-dhcp-manager.c
9315           src/dhcp-manager/nm-dhcp-manager.h
9316           src/dhcp-manager/Makefile.am
9317                 - Change install location of nm-dhcp-client.action to ${prefix}/libexec
9318
9319 2007-08-14  Dan Williams  <dcbw@redhat.com>
9320
9321         * src/dhcp-manager/nm-dhcp-manager.c
9322                 - (dhclient_run): don't pass -x to dhclient until we figure out if
9323                         it's really needed, get rid of unused xtra_args parameter
9324
9325 2007-08-14  Dan Williams  <dcbw@redhat.com>
9326
9327         * include/NetworkManagerVPN.h
9328           src/vpn-manager/nm-dbus-vpn.c
9329           src/vpn-manager/nm-dbus-vpn.h
9330           src/vpn-manager/nm-vpn-act-request.c
9331           src/vpn-manager/nm-vpn-act-request.h
9332           src/vpn-manager/nm-vpn-service.c
9333           src/vpn-manager/nm-vpn-service.h
9334           libnm-glib/nm-vpn-connection.c
9335           libnm-glib/nm-vpn-connection.h
9336           libnm-glib/nm-client.h
9337                 - Rename NM_VPN_STATE_* -> NM_VPN_SERVICE_STATE_* and NMVPNState -> 
9338                         NMVPNServiceState to clarify what they apply to
9339                 - Rename NM_VPN_ACT_STAGE_* -> NM_VPN_CONNECTION_STATE_* and
9340                         NMVPNActStage -> NMVPNConnectionState for the same reason
9341
9342         * libnm-glib/nm-client.c
9343                 - Constant + type renames from above
9344                 - Properly handle NameOwnerChanged/manager_running signals
9345                         for NM service; only emit when state really changes
9346                 - Use hash tables correctly so that the key (which was previously owned
9347                         by the D-Bus message) now has the same lifetime as the value, since
9348                         the key is now taken from the the NMVPNConnection itself.  This
9349                         really fixes the double-VPN names in the applet
9350
9351 2007-08-13  Dan Williams  <dcbw@redhat.com>
9352
9353         Patch from Michael Biebl <biebl@debian.org>
9354
9355         * po/POTFILES.in
9356           po/POTFILES.skip
9357                 - Update for vpn-properties move
9358
9359 2007-08-13  Dan Williams  <dcbw@redhat.com>
9360
9361         * libnm-glib/nm-client.c
9362                 - Convert internal VPN connection tracking from a list to a hash table
9363                         to easily avoid duplicates
9364                 - (nm_client_get_vpn_connections): now returns an allocated GSList that
9365                         must be freed by the caller, like nm_client_get_devices()
9366                 - (nm_client_remove_vpn_connection): don't let the removal signal
9367                         leak through for NMVPNConnection objects that aren't actually
9368                         tracked.
9369                 - (manager_running): throw away VPN connection list when NM goes away,
9370                         like with the device list
9371
9372 2007-08-13  Dan Williams  <dcbw@redhat.com>
9373
9374         * src/dhcp-manager/nm-dhcp-manager.c
9375                 - Stop any dhclient instance that might be already running for a
9376                         particular interface before starting an NM spawned dhclient.  Fixes
9377                         dhclient processes left over if NM crashes, stuff like that.
9378
9379 2007-08-13  Dan Williams  <dcbw@redhat.com>
9380
9381         * src/NetworkManagerAP.c
9382                 - (finalize): don't try to g_array_free (NULL, ...), which happened
9383                         when the AP wasn't broadcasting it's SSID
9384
9385 2007-08-13  Rodrigo Moya <rodrigo@gnome-db.org>
9386
9387         * include/NetworkManager.h: added DBus path for connection settings.
9388
9389         * libnm-glib/nm-settings.[ch] (nm_settings_signal_new_connection,
9390         nm_connection_settings_signal_updated,
9391         nm_connection_settings_signal_removed): new functions to wrap the
9392         objects' signals.
9393         (nm_connection_settings_init): register GObject with DBus.
9394         (nm_connection_settings_get_dbus_object_path): new function.
9395
9396         * libnm-glib/Makefile.am: added libnmutil to link flags.
9397
9398 2007-08-13  Tambet Ingo  <tambet@gmail.com>
9399
9400         * configure.in: Remove checks for dhcdbd as it's killed! killed! killed!
9401
9402         * gnome/*: Remove. The nm-vpn-properties directory is now part of nm-applet,
9403         libnm_glib directory got merged with libnm-glib/.
9404
9405         * libnm-glib/libnm-glib.pc.in: Rename to libnm_glib.pc.in.
9406
9407         * libnm-glib/Makefile.am: Add legacy libnm_glib.[ch] to the build.
9408         Rename the library from libnm-glib to libnm_glib to maintain the library API
9409         compatibility with 0.6 branch.
9410
9411         * Makefile.am: Remove gnome/ SUBDIR.
9412
9413         * gnome/libnm_glib/libnm_glib.[ch]: Move to libnm-glib/.
9414
9415         * src/Makefile.am: Remove the WPA_SUPPLICANT_BIN define.
9416
9417         * dispatcher-daemon/Makefile.am: Link the binary with libnm_glib.
9418
9419         * configure.in: Remove GNOME checks, NetworkManager does not need any of these
9420         anymore.
9421         Remove checks for wpa_supplicant binary, it's used over dbus.
9422         Remove gnome/ directory files form AC_OUTPUT, that directory is getting moved.
9423
9424         * test/Makefile.am: Remove define WPA_SUPPLICANT_BIN.
9425         Link the binaries with libnm_glib.la.
9426
9427 2007-08-12  Dan Williams  <dcbw@redhat.com>
9428
9429         * src/NetworkManagerPolicy.c
9430                 - (nm_policy_device_change_check): fix policy to deactivate old device
9431                         before activating new one, at least until the multiple active
9432                         device support lands
9433
9434 2007-08-12  Dan Williams  <dcbw@redhat.com>
9435
9436         * src/NetworkManagerPolicy.c
9437                 - (nm_policy_new): hook up to connection-added / connection-removed
9438                         signals instead of connections-changed
9439
9440 2007-08-12  Dan Williams  <dcbw@redhat.com>
9441
9442         Kill dhcdbd until it's dead, dead, dead.  Based on a patch from
9443         Robert Frank <rfrank@redhat.com>
9444
9445         * src/dhcp-manager/nm-dhcp-manager.c
9446           src/dhcp-manager/nm-dhcp-manager.c
9447           src/nm-device.c
9448                 - Spawn and communicate with dhclient directly, through means of a
9449                 custom dhclient callout script.  Process callout D-Bus signals
9450                 with dbus-glib instead of hand-rolled dbus.  DHCP timeouts are now
9451                 sent via gobject signals rather than being driven by the dhcp manager
9452                 directly.
9453
9454 2007-08-12  Dan Williams  <dcbw@redhat.com>
9455
9456         * callouts/nm-dhcp-client-action.c
9457                 - (build_message): ignore non-DHCP-related environment variables
9458
9459 2007-08-12  Dan Williams  <dcbw@redhat.com>
9460
9461         * Makefile.am
9462           configure.in
9463           callouts/Makefile.am
9464           callouts/nm-dhcp-client-action.c
9465           callouts/nm-dhcp-client.conf
9466                 - Add dhclient-executed callout that takes the place of dhclient-script
9467                 and dhcdbd, pushing DHCP options out to the system bus as a signal that
9468                 NM then listens for
9469
9470 2007-08-09  Tambet Ingo  <tambet@gmail.com>
9471
9472         [Based on patch by Helmut Schaa <hschaa@suse.de>]
9473
9474         * libnm-glib/nm-client.h:
9475         * libnm-glib/nm-object.h:
9476         * libnm-glib/nm-vpn-connection.h:
9477         * libnm-glib/nm-settings.h:
9478         * libnm-glib/nm-device.h:
9479         * libnm-glib/nm-ip4-config.h:
9480         * libnm-glib/nm-access-point.h:
9481         * libnm-glib/nm-device-802-3-ethernet.h:
9482         * libnm-util/nm-setting.h: 
9483         * libnm-util/nm-connection.h: Add G_BEGIN_DECLS / G_END_DECLS to support C++.
9484
9485         * libnm-glib/nm-object.c (nm_object_get_byte_property): Implement.
9486
9487         * libnm-glib/nm-access-point.c: Strength has type char.
9488
9489         * gnome/vpn-properties/Makefile.am: Remove GNOME_DISABLE_DEPRECTATED for now
9490         to fix build. GnomeDruid is deprecated in recent libgnomeui.
9491
9492         * introspection/nm-access-point.xml: Strength property is char, not int.
9493
9494         * src/NetworkManagerAP.c (set_property): Set strength from char.
9495         (get_property): Handle hidden APs (with empty SSID).
9496         Get strength value from char.
9497         (nm_ap_class_init): Strength property has char type.
9498
9499 2007-08-03  Rodrigo Moya <rodrigo@gnome-db.org>
9500
9501         * introspection/Makefile.am:
9502         * introspection/nm-settings.xml:
9503         * introspection/nm-settings-connection.xml: added Settings interfaces.
9504
9505         * libnm-glib/nm-settings.[ch]:
9506         * libnm-glib/Makefile.am: added abstract class for Settings interfaces
9507         containing the DBus implementation.
9508
9509 2007-07-26  Dan Williams  <dcbw@redhat.com>
9510
9511         Patch from Bernhard Miklautz <bernhard.miklautz@shacknet.at>
9512
9513         * src/NetworkManagerSystem.c
9514                 - (nm_system_device_set_ip4_route): don't add the route if it's on the
9515                         same subnet (#437396)
9516
9517 2007-07-26  Dan Williams  <dcbw@redhat.com>
9518
9519         Patch from Kelemen Gábor <kelemeng@gnome.hu>
9520
9521         * gnome/vpn-properties/nm-vpn-properties.c
9522                 - Fix translatable strings (#445865)
9523
9524 2007-07-26  Dan Williams  <dcbw@redhat.com>
9525
9526         Patch from Andreas Hanke <andreas.hanke@gmx-topmail.de>
9527
9528         * configure.in
9529                 - Remove useless junk (#412530)
9530
9531 2007-07-10  Christopher Aillon  <caillon@redhat.com>
9532
9533         Patch from Robert Buchholz <rbu@gentoo.org>:
9534
9535         * configure.in:
9536         * Makefile.am:
9537         * introspection/Makefile.am:
9538         Make make distcheck work again.
9539
9540 2007-06-27  Dan Williams  <dcbw@redhat.com>
9541
9542         * Make SSIDs GByteArrays everywhere
9543         * Rename "essid" -> "ssid" everywhere that's appropriate
9544         * Refcount activation_ap member of the 802.11 wireless device class
9545
9546 2007-06-27  Tambet Ingo  <tambet@ximian.com>
9547
9548         * libnm-glib/nm-object.[ch]: Add these to the SVN, oops.
9549
9550 2007-06-22  Tambet Ingo  <tambet@ximian.com>
9551
9552         * src/nm-device-802-11-wireless.c (merge_scanned_ap): Don't advertise constantly
9553         that we got a new AP when we just update existing AP properties.
9554
9555 2007-06-21  Tambet Ingo  <tambet@ximian.com>
9556
9557         * libnm-glib/Makefile.am: Add NMObject to build, remove nm-utils.[ch].
9558
9559         * nm-utils.[ch]: Remove.
9560
9561         * libnm-glib/nm-object.c: Implement a base class for all libnm-glib dbus-aware
9562         objects for easy property access and dbus connection handling.
9563
9564         * libnm-glib/nm-client.c: Derive from NMObject.
9565
9566         * libnm-glib/nm-device.c: Ditto.
9567
9568         * libnm-glib/nm-device-802-3-ethernet.c: Changes for being based on NMObject.
9569
9570         * libnm-glib/nm-device-802-11-wireless.c: Ditto.
9571
9572         * libnm-glib/nm-ip4-config.c: Ditto.
9573
9574         * libnm-glib/nm-access-point.c: Ditto.
9575
9576         * libnm-util/nm-connection.c (nm_connection_compare): Add a stub for connection
9577         comparision. Currently used by the device activation code to determine if the new
9578         activation is the same as the old one.
9579
9580         * src/nm-dbus-nmi.c (nm_dbus_get_user_key_for_network): Don't use the obsolete and
9581         wrong way of getting the dbus path for AP. Fixes the issue where the applet isn't
9582         able to ask password for the AP.
9583
9584         * src/nm-device.c (nm_device_activate): Change the logic here - instead of giving
9585         up if the device is already connected, tear down it's connection (if it isn't the
9586         same as new one) and start the activation.
9587
9588         * src/nm-manager.c: Add the beginnings of NMConnection storage and signals.
9589
9590         * src/NetworkManagerAP.c (nm_ap_init): Set the default values to AP memebers, fixes
9591         the issue where all APs are always listed as encrypted.
9592
9593         * src/NetworkManagerDbus.c (nm_dbus_get_object_path_for_network): Remove. APs have
9594         their own registered paths.
9595
9596         * test/nm-tool.c (detail_device): Don't try to get active network from wireless
9597         device if it's not connected - dbus-glib will happily crash trying to marshal NULL.
9598
9599 2007-06-13  Tambet Ingo  <tambet@ximian.com>
9600
9601         * src/NetworkManagerAP.c (foreach_property_cb): Set WEP capabilities too!
9602         (0 & 0 == 0, doh)
9603
9604         * src/nm-device.c (nm_device_state_changed): Emit the signal before handling it
9605         because the handling code will cause the next state change and signal listeners
9606         get the signals in wrong order.
9607
9608         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Get the "old_dev"
9609         correctly in case of pending activation.
9610
9611         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_set_activation_ap):
9612         Convert the essid byte array to string correctly, including the terminating NULL.
9613
9614         * src/NetworkManagerPolicy.c (create_connection): Create wireless ssid and
9615         mode with correct types.
9616
9617         * src/nm-dbus-nmi.c (nm_dbus_get_user_key_for_network): Fix a typo, pass the
9618         constructed info to dbus call instead of the activation request.
9619
9620 2007-06-11  Christopher Aillon  <caillon@redhat.com>
9621
9622         Patch from Christian Persch <chpe@gnome.org>
9623
9624         * libnm-glib/Makefile.am:
9625         * dispatcher-daemon/Makefile.am:
9626         Use the correct variables, the correct paths, and correct ordering. (446315)
9627
9628 2007-06-11  Tambet Ingo  <tambet@ximian.com>
9629
9630         * src/nm-device.c: Make the activation stage virtual functions take NMDevice
9631         argument. The activation request is easy to retrieve.
9632
9633         * src/nm-activation-request.c: Convert to GObject. Do not include half of NM headers
9634         just to be a convenient location for devices to store random stuff.
9635
9636 2007-06-11  Christopher Aillon  <caillon@redhat.com>
9637
9638         Patch from Alex Smith <alex@alex-smith.me.uk>
9639
9640         * src/backends/NetworkManagerFrugalware.c:
9641         Update the FrugalWare backend to fix a few segfaults. (#392642)
9642
9643 2007-06-08  Tambet Ingo  <tambet@ximian.com>
9644
9645         * libnm-util/nm-setting.c: Implement NMSettingWirelessSecurity.
9646
9647         * libnm-util/nm-connection.c (register_default_creators): Register wireless security
9648         setting.
9649         (gvalue_to_string): Recognize G_TYPE_UCHAR and GSList.
9650
9651 2007-06-06  Tambet Ingo  <tambet@ximian.com>
9652
9653         * libnm-util/nm-setting.c: Get rid of dump virtual functions, that can happen
9654         automagically.
9655         Implement NMSettingIP4Config.
9656         Finish NMSettingWired by adding all known members.
9657         (setting_wired_verify): Implement.
9658         Finish NMSettingWireless by adding all known members.
9659         (setting_wireless_verify): Implement.
9660
9661         * libnm-util/nm-connection.c: Register "ipv4" setting.
9662         (nm_connection_dump): Implement. Instead of requiring every NMSetting to implement
9663         dump function, we can introspect the GHashTable which is used for sending connections
9664         over dbus.
9665
9666         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_set_activation_ap):
9667         Take GByteArray for essid, it's really not a string.
9668
9669         * src/nm-device.c (real_act_stage3_ip_config_start): Get information from NMSettings.
9670         Start DHCP request if setting is not passed or if it states that DHCP should be used.
9671         (real_act_stage4_get_ip4_config): If settings are provided, use them, even if it
9672         means overriding the values we got from DHCP.
9673         (real_activation_cancel_handler): Cancel DHCP transaction only if it has started, doh.
9674         (nm_device_deactivate_quickly): Ditto.
9675
9676         * src/nm-device-interface.c (impl_device_activate): Dump the connection structure
9677         for debugging.
9678
9679 2007-05-07  Tambet Ingo  <tambet@ximian.com>
9680
9681         * libnm-glib/Makefile.am: Link with libnm-util to gain access to
9682         NMConnection.
9683
9684         * libnm-glib/nm-device-802-11-wireless.c:
9685         (nm_device_802_3_ethernet_activate): Remove.
9686
9687         * libnm-glib/nm-device-802-3-ethernet.c
9688         (nm_device_802_3_ethernet_activate): Remove.
9689
9690         * libnm-glib/nm-device.c (nm_device_activate): Implement.
9691
9692         * src/nm-device-802-3-ethernet.c: Implement the new activation using
9693         NMConnection.
9694
9695         * src/nm-device-802-11-wireless.c: Store an activation AP once the
9696         activation has started.
9697         Implement the new activation using NMConnection.
9698
9699         * src/nm-activation-request.c: Store a generic connection object instead
9700         of a wireless-specific AP.
9701
9702         * src/NetworkManagerPolicy.c (create_connection): Implement. Depending
9703         on device type, create a device specific connection object suitable for
9704         device activation.
9705
9706         * src/nm-device.c (nm_device_activate): Re-implement. Call the device
9707         specific check to validate the connection and on success start the
9708         activation.
9709
9710         * src/nm-device-interface.h: Add a activate virtual function to the
9711         interface definition.
9712
9713         * src/nm-device-interface.c (nm_device_interface_activate): Implement.
9714         (impl_device_activate): Implement.
9715
9716         * introspection/nm-device.xml: Add a generic device activation interface
9717         that accepts an abstract NMConnection structure that has device-specific
9718         information in it.
9719
9720         * introspection/nm-device-802-3-ethernet.xml: Remove the wired-specific
9721         activation interface.
9722
9723         * introspection/nm-device-802-11-wireless.xml: Remove the wireless-specific
9724         activation interface.
9725
9726         * libnm-util/nm-connection.c: 
9727         * libnm-util/nm-connection.h: 
9728         * libnm-util/nm-setting.c:
9729         * libnm-util/nm-setting.h: Add.
9730
9731         * libnm-util/Makefile.am: Build the added files.
9732
9733         * src/nm-dbus-manager.c
9734         (proxy_name_owner_changed, nm_dbus_manager_class_init): Remove the
9735         DbusConnection argument from 'name-owner-changed' signal. The manager
9736         is already passed as a first argument to the signal and the connection
9737         is easy enough to get from it.
9738
9739         * src/vpn-manager/nm-vpn-service.c (nm_vpn_service_name_owner_changed):
9740         Update the signature of the function.
9741
9742         * src/vpn-manager/nm-vpn-manager.c (nm_name_owner_changed_handler):
9743         Ditto.
9744
9745         * src/NetworkManager.c: Ditto.
9746
9747         * src/named-manager/nm-named-manager.c
9748         (nm_named_manager_name_owner_changed): Ditto.
9749
9750         * src/supplicant-manager/nm-supplicant-manager.c
9751         (nm_supplicant_manager_name_owner_changed): Ditto.
9752
9753         * src/nm-hal-manager.c (name_owner_changed): Ditto.
9754
9755         * src/dhcp-manager/nm-dhcp-manager.c
9756         (nm_dhcp_manager_name_owner_changed): Ditto.
9757
9758         * src/nm-hal-manager.c: Add a list of device detectors and creators
9759         to make it easier to add new devices. Each device type has it's own
9760         entry in the table so adding new device types is only a matter of
9761         implementing a couple of functions, one for device detection and the
9762         other for device creation.
9763
9764 2007-04-25  Dan Williams  <dcbw@redhat.com>
9765
9766         * initscript/RedHat/NetworkManager.in: remove trailing backslash
9767                 (gnome.org #432401)
9768
9769 2007-03-30  Dan Williams  <dcbw@redhat.com>
9770
9771         * src/NetworkManagerSystem.c
9772                 - (nm_system_device_set_ip4_route): clean up and fix argument
9773                         to nm_dev_sock_open()
9774
9775 2007-03-28  Tambet Ingo  <tambet@ximian.com>
9776
9777         * src/supplicant-manager/nm-supplicant-config.c (get_hash_cb): Marshal the
9778         data to correct types instead of always using string.
9779
9780         * src/NetworkManagerAP.c (get_property): AP is encrypted if capabilities does
9781         _not_ have NM_802_11_CAP_PROTO_NONE.
9782         (foreach_property_cb): Set AP capabilities if it's not set or if the protocol
9783         is not set.
9784
9785 2007-03-27  Tambet Ingo  <tambet@ximian.com>
9786
9787         * libnm-glib/Makefile.am: Fix the build issue.
9788
9789 2007-03-26  Tambet Ingo  <tambet@ximian.com>
9790
9791         * libnm-glib/nm-vpn-connection.h: 
9792         * libnm-glib/nm-vpn-connection.c: Implement.
9793
9794         * libnm-glib/nm-client.c: Add VPN support.
9795
9796         * src/vpn-manager/nm-dbus-vpn.c (dbus_message_handler): Implement DBUS message
9797         handler for VPN.
9798
9799         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_new): Register VPN interface
9800         on DBUS again.
9801
9802 2007-03-26  Dan Williams  <dcbw@redhat.com>
9803
9804         * src/NetworkManagerAPList.c
9805         * src/nm-device-802-11-wireless.c
9806         * src/NetworkManagerAP.c:
9807                 - Store last seen as glong instead of GTimeVal.
9808                 - Fix the upper bound of capabilities, it's a bitfield.
9809
9810 2007-03-16  Tambet Ingo  <tambet@ximian.com>
9811
9812         * libnm-glib/nm-device.c (nm_device_get_description): Implement.
9813
9814         * libnm-glib/nm-client.c (nm_client_manager_is_running): Implement. Also add a
9815         "manager-running" signal that notifies the appearance/disappearance of NM.
9816         (nm_client_sleep): Implement.
9817
9818         * libnm-glib/nm-device.c:
9819         * libnm-glib/nm-device-802-11-wireless.c: 
9820         * libnm-glib/nm-device-802-3-ethernet.c: 
9821
9822         Don't inherit from DBusGProxy, add a proxy to private
9823         data. The reason is, classes inherited from NMDevice wouldn't get any dbus signals
9824         for anything but their own dbus interface. DBusGProxy objects support only one
9825         interfaces and to work around this, NMDevice has spearate proxy for each dbus
9826         interface. The nice side effect of this change is that we do not create a new
9827         DBusGProxy object for each property access.
9828
9829 2007-03-15  Tambet Ingo  <tambet@ximian.com>
9830
9831         * src/nm-device-802-11-wireless.c (constructor): Initialize the iw_ext structures
9832         with zeroes before passing them to functions - the functions never do that and
9833         reading the values back may produce wrong values.
9834         (real_bring_up): Store the signal handler id ...
9835         (real_bring_down): ... So that it can be removed here.
9836         Disconnect the supplicant interface here as well.
9837         (nm_device_802_11_wireless_ap_list_get_ap_by_obj_path): Use the dbus object path
9838         from the access point instead of old $device/Networks/$essid.
9839
9840         * src/nm-manager.c (nm_manager_get_state): Return NM_STATE_CONNECTED when the
9841         device state is connected (instead of just having link/carrier).
9842
9843         * src/nm-activation-request.c: Don't store NMData in activation request, it's
9844         already easily accessible through the device.
9845
9846         * src/NetworkManagerAP.c (nm_ap_init): Construct the dbus object path here and
9847         store it within the object.
9848         (nm_ap_get_dbus_path): Export it to public as well.
9849
9850         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get): Keep the ownership
9851         of the singleton.
9852
9853 2007-03-12  Dan Williams  <dcbw@redhat.com>
9854
9855         Get rid of 2 second poll of sysfs 'carrier' file for wired devices.  Useless
9856         for non-carrier-detect capable devices, and useless for carrier-detect
9857         devices since we get notifications from netlink about carrier status anyway.
9858
9859         * src/nm-device-802-3-ethernet.c
9860                 - remove 'link_source_id' member from private data
9861                 - (probe_link): remove and collapse into real_update_link()
9862                 - (nm_device_802_3_periodic_update): remove
9863                 - (real_is_up): check for sup_iface rather than link_source_id
9864                 - (real_bring_up): return gboolean for success/fail; require that
9865                         sup_iface be valid for device bringup to succeed
9866                 - (real_bring_down): zero out link signal ids
9867
9868         * src/nm-device.c
9869                 - (nm_device_activate_stage2_device_config): fail activation if device
9870                         bringup fails
9871                 - (real_act_stage4_get_ip4_config): fail activation if device bringup
9872                         fails
9873                 - (nm_device_bring_up): return success/fail
9874
9875         * src/nm-device.h
9876                 - bring_up now returns success/fail
9877
9878         * src/nm-device-802-11-wireless.c
9879                 - (real_bring_up): return success from bringup
9880
9881 2007-03-07  Dan Williams  <dcbw@redhat.com>
9882
9883         Patch from Simon Geard <delgarde@ihug.co.nz>  (Gnome.org #394956)
9884         * src/nm-ap-security-wpa-psk.c
9885                 - (real_write_supplicant_config): work with PSKs that may contain
9886                         zeros in the binary format rather than treating it as a string
9887
9888 2007-03-02  Tambet Ingo  <tambet@ximian.com>
9889
9890         * libnm-glib/nm-device-802-11-wireless.c
9891         (nm_device_802_11_wireless_get_capabilities): Implement.
9892
9893         * libnm-glib/nm-device.c (nm_device_get_capabilities): Implement.
9894
9895         * src/nm-device-802-11-wireless.c: Add "WirelessCapabilities" property.
9896
9897         * src/named-manager/nm-named-manager.c (remove_one_zone_from_named): Unref the
9898         reply only if it's not NULL. Not sure why this started happening right now.
9899
9900         * src/nm-manager.c (device_stop_and_free): Remove. No need to have different
9901         code paths for when devices get removed on shutdown or when a device is just
9902         removed.
9903         (finalize): Don't use a g_slist_foreach() when removing devices, the list data
9904         gets freed so any signal from a device (disconnected for instance) would invoke
9905         NMState update which would crash.
9906         (nm_manager_remove_device): Bring the device down when it gets removed.
9907
9908         * src/NetworkManagerPolicy.c (nm_policy_auto_get_best_device): Remove
9909         the unused dev_type.
9910
9911         * src/nm-hal-manager.c (create_device_and_add_to_list): Don't keep the
9912         reference to the added device, NMManager will own it (if it wants).
9913
9914         * test/nm-tool.c: Rewrite using libnm-glib.
9915
9916         * libnm-glib/nm-device-802-11-wireless.c: Cache networks (bssids) list.
9917         We get signalled when it changes.
9918
9919         * libnm-glib/nm-client.c: Cache NMState and device list, we get signalled
9920         when it changes.
9921
9922         * libnm-glib/nm-device.c: Cache the device state property.
9923
9924         * libnm-glib/nm-access-point.c: Cache the strength property.
9925
9926         * src/nm-device-802-11-wireless.c: Fix wireless device scanning scheduler.
9927         The new algorithm is to start from SCAN_INTERVAL_MIN (currently defined as 0)
9928         and add a SCAN_INTERVAL_STEP (currently 20 seconds) with each successful scan
9929         until SCAN_INTERVAL_MAX (currently 120 seconds) is reached. Do not scan while
9930         the device is down, activating, or activated (in case of A/B/G cards).
9931         Remove some old dead ifdef'ed out code that used to configure wireless devices,
9932         it's all done through supplicant now.
9933
9934         * src/supplicant-manager/nm-supplicant-interface.c: Fix the reference
9935         counting issues with pending calls which caused leaks and crashes when
9936         interface was removed (now that the interface actually gets removed).
9937
9938         * src/nm-call-store.c: Make a copy of data before running a foreach
9939         with user callback on it - The most common usage pattern is to cancel
9940         (and thus remove) all pending calls with foreach which would modify
9941         the hash table we're iterating over.
9942
9943         * src/nm-manager.c: When a device is added, make sure it is "up". When
9944         it's removed or disabled due to disabling wireless or networking, bring
9945         it down.
9946
9947         * include/NetworkManager.h: Add new device state NM_DEVICE_STATE_DOWN.
9948
9949         * src/nm-device-802-11-wireless.c: 
9950         * src/nm-device-802-3-ethernet.c: 
9951         * src/nm-device.c:
9952                 - Remove "init" virtual function, all gobjects have a place for that
9953                   already (constructor).
9954                 - Replace "start" virtual function with "bring_up", devices can be
9955                   brought up and down more than just on startup now.
9956                 - Add "is_up" virtual function.
9957                 - Implement one way to bring a device down instead of previous 4 different
9958                   ways, each of witch did something different.
9959
9960         * src/NetworkManagerUtils.c (nm_dev_sock_open): This doesn't need an NMDevice,
9961         all it needs is the device interface.
9962
9963         Get rid of NMData.dev_list (3 members to go).
9964         Get rif of NMData in a lot of places.
9965
9966         * gnome/libnm_glib/libnm_glib.c: Make it compile again.
9967
9968 2007-02-23  Dan Williams  <dcbw@redhat.com>
9969
9970         Patch from Andy Whitcroft <apw@shadowen.org> (Gnome.org #410426)
9971
9972         * src/NetworkManagerAP.c
9973                 - (add_capabilities_from_cipher): fix addition of WEP capabilities by
9974                         OR-ing rather than AND-ing
9975
9976 2007-02-20  Tambet Ingo  <tambet@ximian.com>
9977
9978         * libnm-glib/nm-device-802-11-wireless.c: Add "network-added" and
9979         "network-removed" signals.
9980
9981         * libnm-glib/libnm-glib.pc.in: Require NetworkManager >= 0.7.0.
9982
9983         * libnm-glib/nm-access-point.c: Add "strength-changed" signal, emit it
9984         when receiving the signal from dbus.
9985
9986         * src/nm-device-802-11-wireless.c (get_property): Fix PROP_ACTIVE_NETWORK
9987         property.
9988
9989         * src/NetworkManagerPolicy.c (state_changed): Fix a typo to make the
9990         deactivation of the previously activated device working again.
9991
9992         * src/nm-activation-request.c: Remove NMActStage property and it's getter
9993         and setter.
9994
9995         * src/nm-device.c (nm_device_is_activated): Remove.
9996         state == NM_DEVICE_STATE_ACTIVATED is just as easy to use.
9997
9998         * include/NetworkManager.h: Remove NM_DBUS_NO_DEVICES_ERROR,
9999         NM_DBUS_NO_DIALUP_ERROR, NM_DBUS_NO_NETWORKS_ERROR,
10000         NM_DBUS_NO_ACTIVE_DEVICE_ERROR, NM_DBUS_NO_ACTIVE_NET_ERROR errors and
10001         NM_DBUS_SIGNAL_STATE_CHANGE signal.
10002         Remove NMNetworkStatus and NMActStage enums.
10003
10004 2007-02-19  Tambet Ingo  <tambet@ximian.com>
10005
10006         * src/vpn-manager/nm-vpn-manager.c: Handle the DBUS state changes itself.
10007         Handle device state changes and disconnect VPN if it's device deactivates.
10008
10009         * src/nm-dbus-nm.c: 
10010         * src/nm-dbus-nm.h: 
10011         * src/nm-dbus-device.c: 
10012         * src/nm-dbus-device.c: 
10013         * src/nm-dbus-net.c: 
10014         * src/nm-dbus-net.h: Remove. All of it is implemented byt the new dbus API.
10015
10016         * src/NetworkManagerMain.h: Get rid of all but 3 properties of NMData.
10017
10018         * src/nm-device.c (nm_device_get_by_udi):
10019         (nm_device_get_by_iface): Remove. This doesn't belong here and is already
10020         implemented in the correct location (NMManager).
10021         Rip out all the test_device stuff.
10022
10023         * src/NetworkManagerPolicy.c: Remove the leftover activation success and
10024         failure handlers, it's all done by NMDevice already.
10025
10026         * src/NetworkManager.c: Move the signal handling here from nm-logging.c
10027         Remove the iochannel hack to route the unix signals to the main thread since
10028         we're not threaded anymore.
10029
10030         * src/NetworkManagerAP.c: Implement HWAddress property.
10031
10032         * src/NetworkManagerDbus.c: Remove the dbus signal sending code, it happens
10033         automatically with dbus-glib.
10034
10035         * src/nm-netlink-monitor.c: 
10036         * src/nm-netlink-monitor.h:
10037                 - Move it low in the class hierarchy, don't reference any NM types.
10038                 - Remove private data from the header.
10039                 - Use type safe checks in public API methods.
10040                 - Make it a singleton so we don't have to pass the single reference around.
10041
10042 2007-02-16  Tambet Ingo  <tambet@ximian.com>
10043
10044         * introspection/nm-ip4-config.xml: Implement.
10045
10046         * libnm-glib/libnm-glib-test.c: Use new DBUS API in tests.
10047
10048         * libnm-glib/nm-ip4-config.c:
10049         * libnm-glib/nm-ip4-config.c: Implement.
10050
10051         * src/nm-ap-security[-*]: Remove circular dependencies between APs and AP
10052         securities. APs reference security.
10053
10054         * src/nm-device-802-11-wireless.c: Implement missing properties that need to
10055         be exported over DBUS.
10056
10057         * src/nm-device-802-3-ethernet.c: Ditto.
10058
10059         * src/NetworkManagerAP.c:
10060         * src/NetworkManagerAP.h:
10061                 - Convert to GObject, export over DBUS.
10062
10063         * src/nm-ip4-config.h:
10064         * src/nm-ip4-config.h:
10065                 - Convert to GObject, export over DBUS.
10066
10067 2007-02-12  Dan Williams  <dcbw@redhat.com>
10068
10069         Patch from Helmut Schaa <hschaa@suse.de>
10070
10071         * vpn-daemons/pptp/configure.in
10072           vpn-daemons/pptp/Makefile.am
10073           vpn-daemons/openvpn/configure.in
10074           vpn-daemons/openvpn/Makefile.am
10075           vpn-daemons/vpnc/configure.in
10076           vpn-daemons/vpnc/Makefile.am
10077                 - Add --without-gnome switch which disables building gnome bits
10078
10079 2007-02-12  Tambet Ingo  <tambet@ximian.com>
10080
10081         * libnm-glib/nm-device.c (nm_device_get_use_dhcp): Remove.
10082
10083         * libnm-glib/nm-access-point.c (nm_access_point_is_broadcast): Remove.
10084
10085         * introspection/nm-device-802-3-ethernet.xml: Rename 'Address' property to
10086         'HwAddress'.
10087
10088         * introspection/nm-device.xml: Remove 'UseDhcp' property.
10089
10090         * introspection/nm-access-point.xml: Remove 'Broadcast' property.
10091
10092         Totally break NetworkManager. Please use 0.6 branch until futher notice.
10093
10094         * src/:
10095                 - Remove old low-level dbus interface implementations and replace them
10096                   with dbus-glib one.
10097
10098         * configure.in:
10099                 - Require dbus-glib >= 0.72.
10100                 - Plug in new sources to build.
10101
10102         * libnm-glib/:
10103                 - Implement GObject wrappers on top of DBUS glib auto-generated bindings
10104                   to make it more convenient to use from GObject based programs.
10105
10106         * introspection/:
10107                 - Implement DBUS XML introspection files, used by both NM and libnm-glib.
10108
10109 2007-02-09  Tambet Ingo  <tambet@ximian.com>
10110
10111         * src/nm-device-802-11-wireless.c:
10112                 - Add "network-added" and "network-removed" signals.
10113                 - Use gobject boilerplate macros to define the GObject.
10114                 - Implement wireless device activation.
10115                 - Remove activation_failure_handler and activation_success_handler
10116                   and instead listen on state-changed signals and run the same code
10117                   from there.
10118
10119         * src/nm-device.c:
10120                 - Implment NMDeviceInterface::deactivate.
10121                 - Remove activation_failure_handler and activation_success_handler
10122                   virtual methods. Each device which is interested in these events
10123                   can just listen on it's state changed signals.
10124
10125         * src/NetworkManagerPolicy.c:
10126                 - Move a bit more NMData usage to NMManager.
10127                 - Remove activation scheduling bits.
10128                 - Add listeners for wireless device's "network-added" and
10129                   "network-removed" signals.
10130                 - Listen device changed signals and deactivate currently activated
10131                   device when another device start activating (for now).
10132                 - Remove (nm_policy_schedule_device_change_check): There's never a need
10133                   for calling this, the policy code knows exactly when this should happen,
10134                   by listening on events from NMManager and NMDevices.
10135
10136         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_activate):
10137         Implement.
10138
10139         * src/nm-dbus-nm.c (nm_dbus_nm_set_active_device): Call the activation
10140         method on the specific device instead of going to through policy code
10141         and determining the device type by passed in AP's existance.
10142
10143         * src/nm-device-interface.c (nm_device_interface_deactivate): Implement the
10144         abstract NMDevice deactivation.
10145
10146 2007-02-08  Tambet Ingo  <tambet@ximian.com>
10147
10148         * src/NetworkManager.c:
10149                 - Set up all the shiny new managers.
10150
10151         * src/NetworkManagerPolicy.c:
10152                 - Add the beginnings of new NMPolicy code. Instead of requireing all
10153                   classes to call into policy code, make the policy code kind of like
10154                   a supervisor that monitors what's going on and drives the whole NM.
10155
10156         * src/nm-hal-manager.c: 
10157         * src/nm-hal-manager.h:
10158                 - Collect all libhal code scattered around NM to this one class.
10159                 - Listen libhal and NMManager events and add/remove devices to
10160                   NMManager.
10161
10162         * src/nm-manager.c:
10163         * src/nm-manager.h:
10164                 - Implment a replacement for NMData. NMData is now officially
10165                 deprecated.
10166
10167 2007-02-05  Tambet Ingo  <tambet@ximian.com>
10168
10169         * src/nm-device-802-11-wireless.c (supplicant_iface_scan_result_cb): 
10170         * src/supplicant-manager/nm-supplicant-interface.h
10171         * src/supplicant-manager/nm-supplicant-interface.c
10172         (nm_supplicant_interface_class_init): Change the "scan-result" signal's
10173         argument to boolean from enum.
10174
10175         Make NMDevice abstract class, remove almost all references to it's
10176         subclasses (the last place gets removed with new policy manager). Add
10177         NMDeviceInterface (which NMDevice implements) so that when we have
10178         NMDevice exported over DBUS, there's a common NMDevice interface which
10179         all instances have, plus there's a device specific interface for each
10180         specific type.
10181         Remove functions (nm_device_is_802_3_ethernet) and
10182         (nm_device_is_802_11_wireless). There are already standard GObject macros
10183         for type safe checks.
10184         Use the updated supplican manager API.
10185
10186         * src/nm-device-interface.h: 
10187         * src/nm-device-interface.c: 
10188         * src/nm-call-store.h: 
10189         * src/nm-call-store.c: Implement.
10190
10191         * src/supplicant-manager/nm-supplicant-interface.c:
10192         * src/supplicant-manager/nm-supplicant-interface.h:
10193         * src/supplicant-manager/nm-supplicant-manager.c:
10194         * src/supplicant-manager/nm-supplicant-manager.h:
10195                 - Remove all private data type references from public header files.
10196                 - Remove all references to other NM classes, this class is just a
10197                   proxy between wpa_supplicant and NM so it doesn't have to know
10198                   any internals.
10199                 - Convert to dbus-glib bindings.
10200                 - Type safe checks for public methods' arguments.
10201                 - Store pending DBUS call ids to NMCallStore.
10202
10203         * src/supplicant-manager/nm-supplicant-config.c:
10204                 - Store config values in a GHashTable instead of GSList.
10205
10206         * src/NetworkManagerMain.h: Remove all references to DHCP manager.
10207
10208         * src/NetworkManager.c: Don't initialize the DHCP manager, it's a
10209         singleton now.
10210
10211         * src/nm-device.c: Use the new DHCP manager API.
10212
10213         * src/nm-activation-request.c:
10214         * src/nm-activation-request.h:
10215                 - Remove all dhcp related properties and methods.
10216
10217         * src/dhcp-manager/nm-dhcp-marshal-main.c: Add.
10218
10219         * src/dhcp-manager/nm-dhcp-marshal.list: Add.
10220
10221         * src/dhcp-manager/nm-dhcp-manager.c:
10222         * src/dhcp-manager/nm-dhcp-manager.h:
10223                 - Convert it to GObject since we need to signal state changes.
10224                 - Remove all references to other NM classes, this class is one
10225                   of the lowest classes in our hierarchy.
10226                 - One less class to use NMActRequest.
10227                 - Make it singleton, one less user of NMData.
10228                 - Remove a couple of sleep() calls.
10229                 - Convert a bunch of low-level dbus API calls to dbus-glib calls.
10230                   One less class to use the NM's custom tailored signal handlig.
10231
10232         * Makefile.am: Generate marshallers, add them to build.
10233
10234 2007-02-02  Dan Williams  <dcbw@redhat.com>
10235
10236         * configure.in
10237           gnome/Makefile.am
10238           nm-applet.desktop
10239           Makefile.am
10240                 - Remove last bits referencing gnome applet
10241
10242 2007-02-02  Dan Williams  <dcbw@redhat.com>
10243
10244         * src/vpn-manager/nm-vpn-service.c
10245                 - (nm_vpn_service_stage4_ip4_config_get): use uint32 arrays for DNS
10246                         and NBNS server addresses
10247
10248 2007-02-02  Tambet Ingo  <tambet@ximian.com>
10249
10250         * src/nm-dbus-manager.c:
10251         * src/nm-dbus-manager.h:
10252                 - Convert all internal DBUS code to use dbus-glib bindings.
10253                 - Remove GObject properties, we don't need them here.
10254                 - Don't explicitly set things to NULL after freeing, glib is
10255                   happy to do it if asked nicely (G_DEBUG=gc-friendly).
10256                 - Make public API argument checks type safe.
10257                 - Remove unnecessary (and wrong) cast to GObject for the first
10258                   argument to g_signal_* calls - The first argument is a gpointer.
10259                 - Export DBusGConnection to other cool classes that (are going to)
10260                   use dbus-glib.
10261
10262 2007-01-26  Dan Williams  <dcbw@redhat.com>
10263
10264         * libnm-util/dbus-dict-helpers.c
10265           libnm-util/dbus-dict-helpers.h
10266                 - Coordinate style with wpa_supplicant version to minimize diff
10267                 - Add uint32 array support
10268                 - (nmu_dbus_dict_append_uint32_array): new function
10269                 - (nmu_dbus_dict_begin_string_array, nmu_dbus_dict_string_array_add_element,
10270                    nmu_dbus_dict_end_string_array): bring over from wpa_supplicant
10271                         version; allow adding string array elements individually
10272
10273         * test/libnm-util/test-dbus-dict-helpers.c
10274                 - Test uint32 arrays
10275
10276 2007-01-27  Jürg Billeter  <j@bitron.ch>
10277
10278         * src/backends/NetworkManagerPaldo.c
10279                 - (nm_system_update_dns): clear nscd hosts cache
10280
10281 2007-01-04  Dan Williams  <dcbw@redhat.com>
10282
10283         Threading removal related cleanups:
10284
10285         - Use the glib default main context.  Remove the device main context
10286                 member from NMDevice, and the main_context member from NMData.  Change
10287                 all the idle and timeout scheduler functions to use plain
10288                 g_idle_add() and g_timeout_add().
10289
10290         - As a side-effect of the first change, nm_dbus_manager_get() no longer
10291                 takes an argument; fix that up too.
10292
10293         - Remove all locking, which is useless since we no longer use threads.  For
10294                 example, nm_get_device_by_iface_locked() has been removed.  The global
10295                 device list lock, the AP List lock, and all static locks in
10296                 NetworkManagerPolicy.c have been removed.  The locking utility functions
10297                 in NetworkManagerUtils.c have also been removed.
10298
10299         - Other cleanups in spacing and code style
10300
10301 2007-01-01  Dan Williams  <dcbw@redhat.com>
10302
10303         Found by Bill Moss:
10304
10305         * src/supplicant-manager/nm-supplicant-interface.c
10306                 - (nm_supplicant_interface_disconnect): fix cleanup logic when
10307                         the supplicant interface wasn't already disconnected.  Always
10308                         call removeNetwork and disconnect unless the supplicant interface
10309                         is in the DISCONNECTED or INACTIVE state.
10310
10311 2006-12-28  Dan Williams  <dcbw@redhat.com>
10312
10313         Use a single thread for everything.  With the move to wpa_supplicant
10314         and communication over D-Bus, there's no reason for multiple threads.
10315         Almost all of the blocking code has been removed, with one exception in
10316         the DHCP manager and a few in the VPN manager.  This commit removes the
10317         per-device worker thread and fixes activation cancellation in the absence
10318         of threads.  Further removal of thread-related code would be removing
10319         any locking code (like the device list lock) and simplification of logic
10320         around areas of code or data structures that are currently locked.
10321
10322         * autoip.c
10323           dhcp-manager/nm-dhcp-manager.c 
10324           nm-device-802-11-wireless.c
10325           nm-device-802-3-ethernet.c
10326           nm-device.c
10327           nm-device.h
10328                 - Remove usage of multiple threads
10329
10330 2006-12-19  Dan Williams  <dcbw@redhat.com>
10331
10332         Big wpa_supplicant + dbus update; need latest wpa_supplicant from CVS
10333         plus a few other patches from wpa_supplicant bugzilla.
10334
10335         * src/Makefile.am
10336           src/NetworkManagerPolicy.c
10337           src/NetworkManagerUtils.c
10338           src/NetworkManagerUtils.h
10339           src/nm-ap-security-leap.c
10340           src/nm-ap-security-wep.c
10341           src/nm-ap-security-wpa-eap.c
10342           src/nm-ap-security-wpa-psk.c
10343           src/nm-ap-security.c
10344           src/nm-ap-security.h
10345           src/nm-device-802-11-wireless.c
10346           src/nm-device-802-11-wireless.h
10347           src/supplicant-manager/nm-supplicant-config.c
10348           src/supplicant-manager/nm-supplicant-config.h
10349           src/supplicant-manager/nm-supplicant-interface.c
10350           src/supplicant-manager/nm-supplicant-interface.h
10351           src/supplicant-manager/nm-supplicant-marshal.list
10352           src/supplicant-manager/nm-supplicant-settings-verify.c
10353           src/supplicant-manager/nm-supplicant-settings-verify.h
10354                 - Move all connection management and association handling to
10355                         wpa_supplicant over dbus, rather than spawning a private copy
10356
10357 2006-12-19  Dan Williams  <dcbw@redhat.com>
10358
10359         * src/NetworkManagerPolicy.c
10360                 - (nm_policy_device_change_check, nm_policy_schedule_device_change_check):
10361                         better locking of the device change check handler ID.  Incorrect
10362                         locking was causing lost device change requests
10363
10364 2006-12-18  Dan Williams  <dcbw@redhat.com>
10365
10366         * libnm-util/dbus-dict-helpers.c
10367                 - (_nmu_dbus_dict_entry_get_array, _nmu_dbus_dict_entry_get_string_array,
10368                    _nmu_dbus_dict_entry_get_byte_array): replace usage of
10369                    dbus_message_iter_get_array_len()  (Gnome.org #382898)
10370
10371 2006-12-18  Dan Williams  <dcbw@redhat.com>
10372
10373         * gnome/libnm_glib/libnm_glib.c
10374                 - Change dbus_connection_close() -> dbus_connection_unref()
10375
10376 2006-12-11  Dan Williams  <dcbw@redhat.com>
10377
10378         * src/supplicant-manager/nm-supplicant-interface.c
10379                 - (iface_state_cb, wpas_iface_get_state): new functions; query initial
10380                         wpa_supplicant interface state
10381                 - (nm_supplicant_interface_add_cb): query initial wpa_supplicant interface
10382                         state before transitioning to READY state
10383
10384 2006-12-04  Dan Williams  <dcbw@redhat.com>
10385
10386         * src/nm-device-802-11-wireless.c
10387                 - (supplicant_iface_scanned_ap_cb): fix parsing of hidden APs due to
10388                         odd length of ESSID returned from ieee80211 stack-based drivers
10389
10390 2006-12-04  Dan Williams  <dcbw@redhat.com>
10391
10392         * src/nm-device-802-11-wireless.c
10393                 - (supplicant_iface_scanned_ap_cb): remove erroneous & from WPA & RSN
10394                         IE handling blocks that cause mis-parsing of the IE
10395
10396 2006-12-04  Dan Williams  <dcbw@redhat.com>
10397
10398         * src/nm-device-802-11-wireless.c
10399                 - (init_supplicant_interface): new function; pull supplicant interface
10400                         setup code out into standalone function since it must be called from
10401                         two different places
10402                 - (real_init): sup_mgr is now in private object data; get and track
10403                         the supplicant manager object over the NMDevice subclass' lifetime
10404                         and register a signal handler for its state signals; only try to
10405                         initialize the supplicant interface if the supplicant manager is in
10406                         the IDLE state (and therefore is ready for requests)
10407                 - (request_wireless_scan): reschedule the scan request if (a) there is
10408                         no supplicant interface yet (meaning wpa_supplicant isn't running
10409                         or isn't ready yet), or (b) if the supplicant interface isn't ready
10410                         for requests yet
10411                 - (supplicant_iface_connection_state_cb): new function; stub for
10412                         handling supplicant interface connection state signals
10413                 - (supplicant_mgr_state_cb): do the right thing when wpa_supplicant
10414                         comes and goes
10415                 - (nm_device_802_11_wireless_dispose): clean up spacing; release the
10416                         supplicant manager object that's being tracked starting with this
10417                         commit
10418
10419 2006-12-04  Dan Williams  <dcbw@redhat.com>
10420
10421         * src/supplicant-manager/nm-supplicant-interface.c
10422                 - (nm_supplicant_interface_set_property): track signal handler ID
10423                 - (nm_supplicant_interface_dispose): remove signal handler on dispose
10424
10425 2006-12-04  Dan Williams  <dcbw@redhat.com>
10426
10427         * src/supplicant-manager/nm-supplicant-interface.[ch]
10428                 - (nm_supplicant_interface_get_state): new function
10429
10430 2006-12-04  Dan Williams  <dcbw@redhat.com>
10431
10432         * src/supplicant-manager/nm-supplicant-interface.c
10433                 - (bssid_properties_cb): don't treat DBus errors as valid
10434                         scanned AP messages
10435
10436 2006-12-04  Dan Williams  <dcbw@redhat.com>
10437
10438         * src/supplicant-manager/nm-supplicant-interface.[ch]
10439                 - (nm_supplicant_interface_get_connection_state): new function
10440                 - define new supplicant connection states
10441                 - send a signal when the supplicant connection state changes
10442
10443 2006-12-03  Dan Williams  <dcbw@redhat.com>
10444
10445         * src/supplicant-manager/Makefile.am
10446           src/supplicant-manager/nm-supplicant-connection.h
10447           src/supplicant-manager/nm-supplicant-connection.c
10448           src/supplicant-manager/nm-supplicant-config.h
10449           src/supplicant-manager/nm-supplicant-config.c
10450           src/supplicant-manager/nm-supplicant-types.h
10451           src/supplicant-manager/nm-supplicant-interface.h
10452           src/supplicant-manager/nm-supplicant-interface.c
10453                 - Rename NMSupplicantConnection -> NMSupplicantConfig
10454
10455 2006-12-03  Dan Williams  <dcbw@redhat.com>
10456
10457         Patch from Gabor Kelemen <kelemeng@gnome.hu>  (Gnome.org #381890)
10458
10459         * po/POTFILES.in
10460           po/POTFILES.skip
10461                 - Move VPN-related translatables to .skip
10462
10463         * vpn-daemons/pptp/po/POTFILES.in
10464                 - Update with new translatables
10465
10466 2006-12-02  Dan Williams  <dcbw@redhat.com>
10467
10468         Patch from Christian Persch <chpe@gnome.org>
10469
10470         * gnome/applet/Makefile.am
10471           gnome/applet/applet-dbus-devices.c
10472           gnome/applet/applet-notifications.c
10473           gnome/applet/applet.c
10474           gnome/applet/applet.h
10475           gnome/applet/main.c
10476                 - Be a GtkStatusIcon on GTK+ >= 2.10
10477
10478 2006-12-02  Dan Williams  <dcbw@redhat.com>
10479
10480         * gnome/applet/applet.c
10481                 - (nma_update_info): fix two unecessary allocations
10482
10483 2006-12-02  Dan Williams  <dcbw@redhat.com>
10484
10485         Patch from Michael Biebl <biebl@teco.edu>
10486         * configure.in
10487           man/NetworkManager.1.in
10488           man/NetworkManagerDispatcher.1.in
10489           man/NetworkManager.8.in
10490           man/NetworkManagerDispatcher.8.in
10491                 - Add .SH NAME stanzas
10492                 - Move NM & NM Dispatcher manpages to section 8 (admin)
10493
10494 2006-12-02  Dan Williams  <dcbw@redhat.com>
10495
10496         Patch from Christian Persch <chpe@gnome.org>
10497
10498         * configure.in
10499                 - Check for GTK+ 2.10 in preparation for GtkStatusIcon patch
10500
10501 2006-11-29  Tambet Ingo  <tambet@ximian.com>
10502
10503         Patch by Timo Hoenig <thoenig@suse.de>:
10504         * src/nm-dbus-manager.c (nm_dbus_manager_start_service): Make it work with
10505         DBUS-1.0.
10506
10507         * src/supplicant-manager/Makefile.am: Add nm-supplicant-marshal here, since
10508         we can't use the one from the main source directory.
10509
10510 2006-11-27  Dan Williams  <dcbw@redhat.com>
10511
10512         Patch from Christian Persch <chpe@gnome.org>
10513
10514         * gnome/applet/applet-dbus-devices.c
10515                 - (hal_info_product_cb): fix memleak; free duped string.
10516                         Gnome.org #379908
10517
10518 2006-11-27  Dan Williams  <dcbw@redhat.com>
10519
10520         Patch from Christian Persch <chpe@gnome.org>
10521
10522         * gnome/applet/menu-items.c
10523                 - (network_menu_item_update): use gtk_progress_bar_set_fraction()
10524                         as gtk_progress_set_percentage is deprecated.  Should
10525                         work as far back as GTK+ 2.4.  Gnome.org #379780
10526
10527 2006-11-26  Dan Williams  <dcbw@redhat.com>
10528
10529         Scan using wpa_supplicant over DBus.
10530
10531         * src/nm-device-802-11-wireless.c
10532                 - remove wireless extensions netlink event handler bits
10533                         (wireless_event_helper, nm_device_802_11_wireless_event)
10534                 - remove wireless extensions scan event handler bits
10535                         (process_scan_results, add_new_ap_to_device_list, hexstr2bin,
10536                         hex2byte, hex2num, request_and_convert_scan_results,
10537                         free_process_scan_cb_data, scan_results_timeout,
10538                         schedule_scan_results_timeout, cancel_scan_results_timeout)
10539                 - Rename nm_device_802_11_wireless_scan() -> request_wireless_scan()
10540                         and request scans from the supplicant interface rather than directly
10541                 - Move functionality of convert_scan_results() to cull_scan_list() and
10542                         supplicant_iface_scanned_ap_cb()
10543                 - (supplicant_iface_scan_result_cb): new function; schedule a new scan
10544                         at the scan interval when the current scan has finished
10545                 - (supplicant_iface_state_cb): start scanning when the supplicant
10546                         interface enters the READY state, and stop scanning when it
10547                         enters the DOWN state
10548                 - (cull_scan_list): weed out old access points from the scan list
10549                 - (supplicant_iface_scanned_ap_cb): convert a supplicant scanned access
10550                         point into an NMAccessPoint and merge it into the device's scan list
10551
10552         * src/supplicant-manager/nm-supplicant-interface.c
10553           src/supplicant-manager/nm-supplicant-interface.h
10554                 - Add a new signal "scan-result" which is issued when the supplicant
10555                         notifies NM that a scan has completed
10556                 - Add a new signal "scanned-ap" that notifies listeners of a new access
10557                         point found in the scan.  Called once for each access point that
10558                         the supplicant interface object receives from the supplicant as a
10559                         result of the "scanResults" method call
10560                 - (wpas_iface_query_scan_results): don't wait 4s before querying
10561                         for the initial scan results
10562                 - (scan_request_cb): new function; send listeners the result
10563                         (success, error) of a wireless scan request
10564                 - (nm_supplicant_interface_request_scan): new function; ask the
10565                         supplicant to perform an immediate wireless scan
10566
10567 2006-11-25  Dan Williams  <dcbw@redhat.com>
10568
10569         * src/supplicant-manager/Makefile.am
10570                 - Since we're including NetworkManagerMain.h in nm-supplicant-interface.c,
10571                         add HAL cflags/includes and named-manager includes directory
10572
10573         * src/supplicant-manager/nm-supplicant-interface.h
10574                 - New state STARTING to handle transition from INIT to READY where
10575                         the addInterface pending call is still outstanding
10576
10577         * src/supplicant-manager/nm-supplicant-interface.c
10578                 - track pending calls differently since we may have more than one
10579                         going on at any given time
10580                 - request scan results from wpa_supplicant; but don't do it more often
10581                         than every 4 seconds.  Drivers that do background scanning
10582                         (like the 'ipw' drivers) send a continuous stream of scan completion
10583                         notifications, so we don't want to hammer the supplicant or dbus
10584                         with requests for all scan results every time we get a completion
10585                         notification.
10586
10587 2006-11-25  Dan Williams  <dcbw@redhat.com>
10588
10589         * src/supplicant-manager/nm-supplicant-types.h
10590                 - new file; move all supplicant manager object typedefs here for
10591                         #include sanity
10592
10593         * src/supplicant-manager/nm-supplicant-interface.c
10594           src/supplicant-manager/nm-supplicant-interface.h
10595                 - new file; an object that interfaces an NMDevice object to the
10596                         supplicant and handles signals from the supplicant.  This object
10597                         does all necessary DBus communication with wpa_supplicant.
10598
10599         * src/supplicant-manager/nm-supplicant-manager.c
10600           src/supplicant-manager/nm-supplicant-manager.h
10601                 - Actually do something.  Track the state of the wpa_supplicant service
10602                         and deal with its comings & goings.  Handle life events of
10603                         supplicant interfaces too.
10604                 - Move NMSupplicantManager typedef to nm-supplicant-types.h
10605
10606         * src/supplicant-manager/nm-supplicant-connection.h
10607                 - Move NMSupplicantConnection typedef to nm-supplicant-types.h
10608
10609         * src/supplicant-manager/Makefile.am
10610                 - Add new files to build, and add libnm-util to includes
10611
10612         * src/nm-marshal.list
10613                 - New marshaler type: VOID:UINT,UINT
10614
10615         * src/nm-device-802-3-ethernet.c
10616                 - (real_init): grab a supplicant interface
10617                 - (nm_device_802_3_ethernet_dispose): release the supplicant interface
10618                 - (supplicant_iface_state_cb): new function, stub for handling
10619                         supplicant interface state changes
10620
10621         * src/nm-device-802-11-wireless.c
10622                 - (real_init): grab a supplicant interface
10623                 - (nm_device_802_11_wireless_dispose): release the supplicant interface
10624                 - (supplicant_iface_state_cb): new function, stub for handling
10625                         supplicant interface state changes
10626
10627         * src/NetworkManager.c
10628                 - (main): create and keep the supplicant manager around for the lifetime
10629                         of NetworkManager
10630
10631         * src/Makefile.am
10632                 - Link to the supplicant manager sub-library and use the supplicant
10633                         manager includes
10634
10635 2006-11-25  Dan Williams  <dcbw@redhat.com>
10636
10637         Rework DBus manager signal handling to be more flexible.  Previously,
10638         only one signal handler could be registered for a particular interface.
10639         The DBus manager now reference counts DBus bus matches and allows multiple
10640         clients to register signal handlers for the same interface and sender.
10641
10642         * src/NetworkManager.c
10643                 - (main): track NMI signal handler ID and remove it when we quit
10644
10645         * src/NetworkManagerMain.h
10646                 - Keep track of NMI signal handler ID
10647
10648         * src/nm-dbus-manager.c
10649           src/nm-dbus-manager.h
10650                 - rework signal handling; each signal handler references one signal
10651                         match, but a signal match may be referenced by one or more
10652                         signal handlers.  Matches are refcounted and are destroyed when the
10653                         last signal handler that references the match is removed.  This is
10654                         necessary because two signal handlers may end up requiring the same
10655                         dbus bus match, so the match must live until the last signal handler
10656                         is destroyed (for example, with the wpa_supplicant network interface
10657                         dbus interface).
10658
10659         * src/dhcp-manager/nm-dhcp-manager.c
10660                 - (nm_dhcp_manager_new): track DHCP signal handler id
10661                 - (nm_dhcp_manager_dispose): remove DHCP signal handler
10662
10663         * src/vpn-manager/nm-vpn-service.c
10664                 - (nm_vpn_service_add_watch): track VPN service signal handler id
10665                 - (nm_vpn_service_remove_watch): remove VPN service signal handler
10666
10667 2006-11-25  Dan Williams  <dcbw@redhat.com>
10668
10669         Suggested by Helmut Schaa <hschaa@suse.de>
10670
10671         * src/vpn-daemons/nm-vpn-service.c
10672                 - (supplicant_child_setup): new function
10673                 - (supplicant_exec): make child process use a new process group id
10674
10675         * src/nm-device-802-11-wireless.c
10676                 - (nm_vpn_service_child_setup): new function
10677                 - (nm_vpn_service_stage1_daemon_exec): make child process use a new
10678                         process group id
10679
10680 2006-11-19  Dan Williams  <dcbw@redhat.com>
10681
10682         Patch from Dan Berrange <dan@berrange.com>  Gnome.org #377262
10683         * gnome/vpn-properties/nm-vpn-properties.c
10684                 - clean up after renamed VPN connection
10685
10686 2006-11-19  Dan Williams  <dcbw@redhat.com>
10687
10688         Patch from Dan Berrange <dan@berrange.com>  Gnome.org #377205
10689         * gnome/applet/applet-dbus-vpn.c
10690                 - (nma_dbus_vpn_properties_cb): sort VPN connections
10691
10692         * gnome/vpn-properties/nm-vpn-properties.c
10693                 - (init_app): sort VPN connections
10694
10695 2006-11-09  Dan Williams  <dcbw@redhat.com>
10696
10697         * src/NetworkManagerAPList.c
10698                 - (nm_ap_list_copy_one_essid_by_address): fix bug due to previous
10699                 code cleanup in revision 1.56; the split of the !nm_ap_get_essid()
10700                 from the nm_ap_list_get_ap_by_address() call was incorrect and
10701                 broke hidden SSID matching.  Found by Bill Moss.
10702
10703 2006-10-25  Dan Williams  <dcbw@redhat.com>
10704
10705         * src/nm-dbus-nm.c
10706                 - (nm_dbus_nm_set_active_device): return an empty success message on
10707                         success, rather than falling through to the error case.
10708
10709 2006-10-25  Dan Williams  <dcbw@redhat.com>
10710
10711         * src/NetworkManagerUtils.c
10712                 - (nm_utils_supplicant_request_with_check): suppress messages for the
10713                         "SCAN" command
10714
10715 2006-10-24  Dan Williams  <dcbw@redhat.com>
10716
10717         Reduce the number of times the Gnome applet wakes up, especially when
10718         it's doing absolutely nothing and is hidden.  Initial patch by
10719         Chris Aillon.
10720
10721         * gnome/applet/applet-dbus.c
10722                 - (nma_dbus_filter): when NM isn't around, or when it goes away,
10723                         kill the redraw timeout.  When NM starts up, start the redraw
10724                         timeout.  Also, if we get kicked off the bus for some reason,
10725                         start the reconnection timeout if one's not already running.
10726                 - (nma_dbus_init): better handling of error conditions, don't leak
10727                         a half-initialized dbus connection
10728                 - (nma_dbus_connection_watcher): consolidate places we reinitialize
10729                         the applet's data, just call nm_dbus_init_helper()
10730                 - (nma_start_dbus_connection_watch): new function, starts a periodic
10731                         timeout that calls nma_dbus_connection_watcher()
10732                 - (nma_dbus_init_helper): if we get a successful connection, kill the
10733                         reconnection timeout, and don't start the reconnection timeout
10734                         unconditionally anymore
10735
10736         * gnome/applet/applet-dbus.h
10737                 - Expose nma_start_dbus_connection_watch()
10738
10739         * gnome/applet/applet.c
10740                 - (nma_update_state): no longer static, called from applet-dbus.c for
10741                         immediate UI updates on certain events
10742                 - (nma_set_running): new function; take over setting applet->running,
10743                         when not running (ie, NM is not active), don't activate the redraw
10744                         timeout because we're not showing the applet anyway.  When we are
10745                         running (ie, NM is active), and only when we're running, start the
10746                         redraw timeout.
10747                 - (nma_destroy): kill the redraw timeout by setting 'not running', and
10748                         kill any reconnection timeout
10749                 - (nma_get_instance): move one-off dbus initialization code here since
10750                         nm_dbus_init_helper() gets called more than once, possibly by the
10751                         reconnection timeout function too.  And, when we start up, if we
10752                         can't get a connection to the bus, start the reconnection timeout.
10753                         But don't start the redraw timeout yet, only do that when we get
10754                         NM's state and find out if it's running or not.
10755
10756         * gnome/applet/applet.h
10757                 - Add the reconnection GSource ID
10758                 - Add prototypes for nma_set_running() and the no-longer-static
10759                         nma_update_state()
10760
10761 2006-10-24  Dan Williams  <dcbw@redhat.com>
10762
10763         * src/vpn-daemons/nm-dbus-vpnc.c
10764                 - (nm_dbus_vpn_update_one_connection_cb): unregister pending call in
10765                         pending call tracker
10766                 - (nm_dbus_vpn_connections_update_cb): unregister pending call in
10767                         pending call tracker; register one-vpn-connection update pending
10768                         call in pending call tracker
10769                 - (nm_dbus_vpn_update_one_vpn_connection): register one-vpn-connection
10770                         update pending call in pending call tracker
10771                 - (nm_dbus_vpn_connections_update_from_nmi): register vpn-connections
10772                         update pending call in pending call tracker; don't block waiting
10773                         for call to return
10774
10775 2006-10-19  Robert Love  <rml@novell.com>
10776
10777         * src/backends/NetworkManagerSuSE.c: Don't ever restart nscd; just
10778           refresh the cache.
10779
10780 2006-10-14  Dan Williams  <dcbw@redhat.com>
10781
10782         * src/dhcp-manager/nm-dhcp-manager.c
10783                 - (get_ip4_string, get_ip4_uint32s): have the caller pass
10784                 the dbus connection and the device object path rather than
10785                 constructing it inside both functions.  Saves a bit of memory
10786                 and clarifies a failure path.
10787                 - (nm_dhcp_manager_get_ip4_config): grab the dbus connection
10788                 and allocate device path here rather than each of the two
10789                 functions above.
10790
10791 2006-10-13  Dan Williams  <dcbw@redhat.com>
10792
10793         * src/NetworkManager.c
10794                 - (nm_name_owner_changed_handler): handle NMI coming and going,
10795                 this somehow droppout in the refactor
10796
10797 2006-10-13  Dan Williams  <dcbw@redhat.com>
10798
10799         * Huge DBus refactor:
10800                 - Create a "DBus Manager" object which manages the connection and
10801                 sends signals on NameOwnerChanged and connection/disconnection events,
10802                 handles reconnection to the bus if NM gets kicked off, and abstracts
10803                 signal handling
10804                 - Remove DBusConnection members from places where they are no
10805                 longer needed due to the refactor, like the dbus-connection
10806                 property of the named manager, and from NMData
10807                 - Reformats a bunch of the code to gnome style
10808                 (8-space tabs, braces on same line as statement, 80-col width).
10809                 Consider it open season to reformat any bits to gnome style.
10810                 style that aren't already.
10811
10812 2006-10-13  Dan Williams  <dcbw@redhat.com>
10813
10814         * src/supplicant-manager/Makefile.am
10815                 - Add new files
10816
10817         * src/supplicant-manager/nm-supplicant-manager.[ch]:
10818                 - Make it a minimal GObject
10819
10820         * src/supplicant-manager/nm-supplicant-settings-verify.[ch]:    
10821                 - Verify settings destined for wpa_supplicant
10822
10823         * src/supplicant-manager/nm-supplicant-connection.[ch]: 
10824                 - Minimal GObject to track wpa_supplicant controlled device
10825                 connections
10826
10827 2006-10-13  Wouter Bolsterlee  <wbolster@gnome.org>
10828
10829         * gnome/applet/applet.c: (nma_update_info),
10830         (nma_act_stage_to_pixbuf), (nma_update_state):
10831         Mark missing strings for translation. Fixes bug #343306.
10832
10833 2006-10-01  Dan Williams  <dcbw@redhat.com>
10834
10835         * src/vpn-manager/nm-vpn-manager.c
10836                 - (nm_vpn_manager_load_services): split and clean up
10837                 for readability and correctness.  Restrict VPN service
10838                 files to ending in ".name", as was meant from the
10839                 beginning (but not coded in).  Better error reporting.
10840
10841 2006-10-01  Dan Williams  <dcbw@redhat.com>
10842
10843         * utils/nm-utils.h
10844                 - Clean up formatting of debug/info/warning log messages
10845
10846 2006-09-27  Robert Love  <rml@novell.com>
10847
10848         Patch by Tambet Ingo <tambet@ximian.com>:
10849         * gnome/vpn-properties/nm-vpn-properties.c: Make Renaming a VPN entry
10850           actually work.
10851
10852 2006-09-07  Dan Williams <dcbw@redhat.com>
10853
10854         * test/Makefile.am
10855           test/libnm-util/Makefile.am
10856           test/nm-supplicant-test.c
10857                 - Add test program emulating the way NM drives wpa_supplicant
10858                 to help debug supplicant issues
10859
10860 2006-08-24  Dan Williams <dcbw@redhat.com>
10861
10862         * configure.in
10863           src/Makefile.am
10864           src/supplicant-manager/Makefile.am
10865           src/supplicant-manager/nm-supplicant-manager.c
10866           src/supplicant-manager/nm-supplicant-manager.h
10867                 - Add skeleton bits of the wpa_supplicant manager
10868
10869 2006-08-24  Dan Williams <dcbw@redhat.com>
10870
10871         Patch from Ed Catmur:
10872         * src/NetworkManagerUtils.c
10873                 - (nm_utils_ip4_netmask_to_prefix): don't infinitely loop
10874                 if netmask is 0 (Gnome #352634)
10875
10876 2006-08-17  Robert Love  <rml@novell.com>
10877
10878         * src/backends/NetworkManagerSuSE.c: Do not restart ypbind; our ypbind
10879           package is now DBUS-enabled and listens for the NM signals.
10880
10881 2006-08-14  Dan Williams  <dcbw@redhat.com>
10882
10883         * Patch from Christian Persch <chpe gnome org>
10884         * configure.in
10885           po/LINGUAS
10886           vpn-daemons/openvpn/po/LINGUAS
10887           vpn-daemons/openvpn/configure.in
10888           vpn-daemons/pptp/po/LINGUAS
10889           vpn-daemons/pptp/configure.in
10890           vpn-daemons/vpnc/po/LINGUAS
10891           vpn-daemons/vpnc/configure.in
10892                 - Convert to LINGUAS method so translators don't have to modify
10893                 configure.in, just stuff in po/.  Gnome #343132, requires intltool
10894                 0.35 or higher
10895
10896 2006-08-14  Dan Williams  <dcbw@redhat.com>
10897
10898         Patch from Alex Smith <alex.extreme2@gmail.com>
10899         * configure.in
10900           src/backends/Makefile.am
10901           src/backends/NetworkManagerFrugalware.c
10902                 - Add support for Frugalware
10903
10904 2006-08-13  Dan Williams  <dcbw@redhat.com>
10905
10906         Patch from Valentine Sinitsyn <e_val@inbox.ru>
10907         * src/nm-device-802-11-wireless.c
10908                 - (supplicant_exec): spawn wpa_supplicant without debug spew
10909                 Gnome #346875
10910
10911 2006-08-13  Dan Williams  <dcbw@redhat.com>
10912
10913         Patch from Valentine Sinitsyn <e_val@inbox.ru>
10914         * src/nm-ap-security.c
10915           src/nm-ap-security.h
10916                 - Add authentication_required bits for subclasses to specify whether
10917                 or not real authentication is required for connections, i.e. whether
10918                 the AP rejects us when an encryption key is wrong or not.
10919
10920         * src/nm-ap-security-wep.c
10921           src/nm-ap-security-wpa-eap.c
10922           src/nm-ap-security-wpa-psk.c
10923           src/nm-ap-security-leap.c
10924                 - Implement authentication_required appropriately for each method
10925
10926         * src/nm-device-802-11-wireless.c
10927                 - Be smarter about when to request a key; for example, using a wrong key
10928                 in WEP shared key mode previously just timed out and did not request
10929                 a new key
10930
10931 2006-08-13  Dan Williams  <dcbw@redhat.com>
10932
10933         * gnome/libnm_glib/libnm_glib.c
10934                 - dbus_connection_disconnect() -> dbus_connection_close() for
10935                 dbus >= 0.90
10936
10937 2006-08-07  Dan Williams  <dcbw@redhat.com>
10938
10939         Patch from Antony J Mee <A.J.Mee@ncl.ac.uk>
10940         * src/NetworkManagerSystem.c
10941                 - Respect specified MTU.  Gnome #344967
10942
10943 2006-08-07  Dan Williams  <dcbw@redhat.com>
10944
10945         * src/vpn-manager/nm-vpn-service.c
10946                 - Simplify print_vpn_config() arguments
10947
10948         Patch from Antony J Mee <A.J.Mee@ncl.ac.uk>
10949         * src/vpn-manager/Makefile.am
10950           src/vpn-manager/nm-vpn-service.c
10951                 - Add new API for passing VPN config options as a dict. Gnome #344967
10952
10953 2006-08-06  Dan Williams  <dcbw@redhat.com>
10954
10955         * gnome/applet/applet-dbus-devices.c
10956           gnome/applet/applet-dbus-vpn.c
10957           gnome/applet/applet-dbus.c
10958           gnome/applet/applet-dbus.h
10959           src/nm-dbus-nmi.c
10960           utils/nm-utils.c
10961           utils/nm-utils.h
10962                 - Make pending call tracking code generic,
10963                 so we can use it in NM as well as the applet
10964
10965 2006-08-06  Dan Williams  <dcbw@redhat.com>
10966
10967         * src/nm-activation-request.c
10968                 - Refcount pending call objects
10969
10970 2006-08-06  Dan Williams  <dcbw@redhat.com>
10971
10972         Patch from Christan Chiesa <christanc@gmail.com>
10973         * configure.in
10974                 - Tell sha1.c to use bigendian mode on PPC
10975
10976 2006-08-04  Robert Love  <rml@novell.com>
10977
10978         Glib Memory Slices!
10979         * configure.in: Require glib 2.10 or later.
10980         * src/NetworkManager.c, src/NetworkManagerAP.c, src/nm-ip4-config.c,
10981           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
10982           src/NetworkManagerDbusUtils.c, src/nm-dbus-nmi.c, src/wpa.c,
10983           src/nm-device-802-11-wireless.c: Convert applicable g_malloc and
10984           g_new calls to g_slice_new.  Likewise for g_free to g_slice_free.
10985           Memory Slices are the greatest thing since bread slices.
10986         * src/NetworkManagerAP.c: Also, fix memory leak.
10987
10988 2006-08-01  Robert Love  <rml@novell.com>
10989
10990         * gnome/applet/main.c: Shutdown all VPN connections on logout.
10991
10992 2006-07-31  Robert Love  <rml@novell.com>
10993
10994         * src/backends/interface_parser.c: Declarations must begin the block.
10995
10996 2006-07-24  Dan Williams  <dcbw@redhat.com>
10997
10998         Patch from Timothée Lecomte <timothee.lecomte@ens.fr>
10999         * src/backends/Makefile.am
11000           src/backends/NetworkManagerArch.c
11001           src/backends/NetworkManagerDebian.c
11002           src/backends/NetworkManagerGeneric.c
11003           src/backends/NetworkManagerGeneric.h
11004           src/backends/NetworkManagerGentoo.c
11005           src/backends/NetworkManagerPaldo.c
11006           src/backends/NetworkManagerRedHat.c
11007           src/backends/NetworkManagerSlackware.c
11008           src/backends/NetworkManagerSuSE.c
11009                 - Genericize common backend functions
11010
11011 2006-07-18  Robert Love  <rml@novell.com>
11012
11013         * configure.in: Add "--with-notify" option to allow disabling of
11014           libnotify support.
11015
11016 2006-07-13  Dan Williams  <dcbw@redhat.com>
11017
11018         Patch from Thiago Bauermann <thiago.bauermann@gmail.com>
11019         * gnome/applet/applet.glade
11020           gnome/applet/Makefile.am
11021           gnome/applet/nm-gconf-wso.c
11022           gnome/applet/nm-gconf-wso-leap.c
11023           gnome/applet/nm-gconf-wso-leap.h
11024           gnome/applet/wireless-security-manager.c
11025           gnome/applet/wso-leap.c
11026           gnome/applet/wso-leap.h
11027           include/NetworkManager.h
11028           libnm-util/dbus-helpers.c
11029           libnm-util/dbus-helpers.h
11030           src/Makefile.am
11031           src/NetworkManagerAP.c
11032           src/nm-ap-security.c
11033           src/nm-ap-security-leap.c
11034           src/nm-ap-security-leap.h
11035                 - Add LEAP authentication support
11036
11037 2006-07-13  Dan Williams  <dcbw@redhat.com>
11038
11039         Patch from Timothée Lecomte <timothee.lecomte@ens.fr>
11040         * configure.in
11041           src/backends/NetworkManagerArch.c
11042           src/backends/NetworkManagerDebian.c
11043           src/backends/NetworkManagerGentoo.c
11044           src/backends/NetworkManagerPaldo.c
11045           src/backends/NetworkManagerRedHat.c
11046           src/backends/NetworkManagerSlackware.c
11047           src/backends/NetworkManagerSuSE.c
11048                 - Convert hardcoding of 'ip' path to configure-time
11049                         detected one
11050
11051 2006-07-12  Leonid Kanter <leon@asplinux.ru>
11052
11053         * configure.in: added ru to ALL_LINGUAS
11054
11055 2006-07-10  Dan Williams  <dcbw@redhat.com>
11056
11057         Patch from Valentine Sinitsyn <e_val@inbox.ru>
11058         * src/nm-device.c
11059                 - (real_act_stage3_ip_config_start): don't infinite loop when
11060                         dhcdbd isn't running (Gnome #346845)
11061
11062 2006-07-09  Dan Williams  <dcbw@redhat.com>
11063
11064         * gnome/applet/applet.c
11065                 - (nma_destroy): don't pass NULL to notify_notification_close
11066                         (RH #197917)
11067
11068 2006-07-09  Dan Williams  <dcbw@redhat.com>
11069
11070         * gnome/applet/applet.c
11071                 - (nma_about_cb): remove empty documenters tab (Gnome #341324)
11072
11073 2006-07-04  Tor Krill  <tor@krill.nu>
11074
11075         Patch from Valentine Sinitsyn <e_val@inbox.ru>
11076         * src/backends/NetworkManagerArch.c: (nm_system_update_dns),
11077         (nm_system_restart_mdns_responder), (ArchReadConfig),
11078         (nm_system_device_get_system_config):
11079                 - Explicitly check for DHCP configuration
11080                 - Check if daemons are running before starting them
11081
11082 2006-06-25  Dan Williams  <dcbw@redhat.com>
11083
11084         * libnm-util/dbus-dict-helpers.[ch]
11085           test/libnm-util/test-dbus-dict-helpers.c
11086                 - Add string array support
11087
11088 2006-06-24  Dan Williams  <dcbw@redhat.com>
11089
11090         * src/dhcp-manager/nm-dhcp-manager.c
11091                 - (nm_dhcp_manager_process_signal): clean up spacing
11092
11093 2006-06-21  Dan Williams  <dcbw@redhat.com>
11094
11095         * src/nm-dbus-device.c
11096                 - (nm_dbus_device_get_driver): don't try to stuff a NULL
11097                         through dbus
11098
11099 2006-06-21  Raivis Dejus  <orvils@gmail.com>
11100
11101         * configure.in: Added 'lv' to ALL_LINGUAS
11102
11103 2006-06-19  Dan Williams  <dcbw@redhat.com>
11104
11105         * src/NetworkManagerAP.c
11106                 - Clarify usage of user_created
11107
11108         * src/nm-ap-security-wep.c
11109           src/nm-ap-security-wpa-eap.c
11110           src/nm-ap-security-wpa-psk.c
11111           src/nm-ap-security.c
11112           src/nm-ap-security.h
11113                 - s/user_created/adhoc, because we really do mean adhoc
11114
11115         Patch from Bernard Blackham <bernard@blackham.com.au>
11116         * src/nm-device-802-11-wireless.c         
11117                 - (supplicant_send_network_config): instead of user_created,
11118                         use adhoc, and do AP_SCAN 2 for adhoc networks
11119
11120 2006-06-18  Robert Love  <rml@novell.com>
11121
11122         * gnome/applet/nm-gconf-wso-wpa-eap.c: Don't set the Gconf keys unless
11123           we have a value to set.  Gconf generates a warning if `val' is NULL.
11124         * src/nm-ap-security-wpa-eap.c: Don't set the key for an Enterprise AP
11125           unless we actually received a valid private key file passphrase or
11126           password.  Otherwise, we don't know to later ask the applet to pull
11127           the key from the keyring.
11128
11129 2006-06-17  Dan Williams  <dcbw@redhat.com>
11130
11131         * libnm-util/dbus-dict-helpers.[ch]
11132           test/libnm-util/test-dbus-dict-helpers.c
11133                 - Fixes for zero-length byte arrays
11134                 - Replace return values of 0 with FALSE for clarity
11135                 - Test zero-length byte arrays
11136
11137 2006-06-17  Dan Williams  <dcbw@redhat.com>
11138
11139         * libnm-util/dbus-dict-helpers.[ch]
11140           test/libnm-util/test-dbus-dict-helpers.c
11141                 - Add helpers for byte arrays
11142                 - Rework bits of the testcase
11143
11144 2006-06-16  Dan Williams  <dcbw@redhat.com>
11145
11146         * libnm-util/Makefile.am
11147         * libnm-util/dbus-dict-helpers.[ch]
11148                 - Add some helpers to take the pain out of using dict types in
11149                         dbus.
11150
11151         * test/libnm-util/Makefile.am
11152         * test/libnm-util/test-dbus-dict-helpers.c
11153                 - Test cases for the dict helper functions
11154
11155 2006-06-15  Robert Love  <rml@novell.com>
11156
11157         * gnome/applet/nm-gconf-wso-wpa-eap.c: Don't set the key unless there
11158           is a non-empty key to set.  Elsewhere, pass an empty string via DBUS
11159           if there is no key to pass.
11160         * libnm-util/dbus-helpers.c: Given the above, we can trust always
11161           receiving a non-NULL key.
11162
11163 2006-06-14  Robert Love  <rml@novell.com>
11164
11165         * src/nm-ap-security-wpa-eap.c: In real_copy_constructor(), actually
11166           copy the strings.
11167
11168
11169 2006-06-14  Dan Williams  <dcbw@redhat.com>
11170
11171         Patch from Lorenzo Colitti <lorenzo@colitti.com>  gnome.org #344825
11172         * src/nm-device-802-11-wireless.c
11173                 - (nm_device_802_11_wireless_set_essid): only wait for orinoco cards
11174                         or ones where the driver is unknown
11175                 - (supplicant_exec): don't wait for supplicant startup here
11176                 - (supplicant_interface_init): finer grained polling for supplicant
11177                         startup
11178
11179 2006-06-13  Robert Love  <rml@novell.com>
11180
11181         * gnome/applet/applet-dbus-info.c: Don't set the fallback bit to FALSE
11182           if it is currently set to TRUE.  Otherwise, we will reset the value
11183           when we connect normally.
11184         * src/nm-device-802-11-wireless.c: For the roaming code, make sure that
11185           the old BSSID is valid, too.  The recently added ESSID check may not be
11186           sufficient (we can remove it?).  What we really want to catch is the
11187           case of going from all-zeros to the BSSID of some other network, which
11188           happens on failure.
11189
11190 2006-06-09  Dan Williams  <dcbw@redhat.com>
11191
11192         * src/NetworkManagerSystem.[ch]
11193                 - (nm_system_device_set_up_down_with_iface): remove 'dev' argument,
11194                         it was unused and pointless
11195                 - (nm_system_vpn_device_set_from_iface, nm_system_device_set_up_down):
11196                         fix for set_up_down_with_iface change
11197
11198         * src/vpn-manager/nm-vpn-connection.c
11199                 - (nm_vpn_connection_deactivate): fix for set_up_down_with_iface change
11200
11201         * src/backends/NetworkManagerPaldo.c
11202           src/backends/NetworkManagerRedHat.c
11203           src/backends/NetworkManagerSuSE.c
11204           src/backends/NetworkManagerArch.c
11205           src/backends/NetworkManagerDebian.c
11206           src/backends/NetworkManagerGentoo.c
11207                 - (nm_system_enable_loopback): use set_up_down_with_iface where
11208                         appropriate
11209                 - (nm_system_flush_loopback_routes): use flush_routes_with_iface
11210                         where appropriate
11211
11212 2006-06-09  Dan Williams  <dcbw@redhat.com>
11213
11214         Patch from Peter Jones:
11215         * src/nm-device-802-11-wireless.c
11216                 - (nm_device_802_11_wireless_update_bssid): make sure that the
11217                         SSID hasn't changed from what we expect before automatically
11218                         updating the saved BSSID from a new AP
11219
11220 2006-06-08  Robert Love  <rml@novell.com>
11221
11222         Add 'fallback' support.  NetworkManager will attempt to brute-force
11223         connect to networks marked as fallback if there are no better wireless
11224         connections available.  This is useful as a method of last resort, to
11225         work around driver problems, and for use with hidden networks.
11226         * gnome/applet/applet-dbus-devices.c,
11227           gnome/applet/applet-dbus-devices.h: Add fallback parameter.
11228         * gnome/applet/applet-dbus-info.c: Retrieve fallback bit from Gconf and
11229           pass it on via DBUS.
11230         * gnome/applet/applet.c: No fallback by default.
11231         * gnome/applet/applet.glade, gnome/applet/other-network-dialog.c:
11232           Update other-network-dialog to add UI checkbox toggling fallback.
11233         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Remove "trusted"
11234           propery from AP object.  Add "fallback" property to AP object.
11235         * src/nm-dbus-nm.c: Grab the fallback parameter via DBUS.
11236         * src/nm-dbus-nmi.c: Grab the fallback parameter via DBUS.
11237         * src/nm-device-802-11-wireless.c: Break out blacklist logic into
11238           separate function.  Add get_best_fallback_ap() for returning an AP
11239           on which to attempt fallback.
11240         * src/backends/NetworkManagerSuSE.c: Set stored network as fallback.
11241         * test/nm-set-fallback: New file.  Sets a given network as fallback.
11242
11243 2006-06-07  Robert Love  <rml@novell.com>
11244
11245         * gnome/applet/gconf-helpers.c: Bug fix: nm_gconf_helper_get_bool()
11246           checked that the return type was GCONF_VALUE_STRING, not the correct
11247           GCONF_VALUE_BOOL, and thus it never worked.
11248         * src/NetworkManagerAPList.c: Before concluding that two networks are
11249           identical based on their BSSID, make sure that the BSSID in question
11250           is actually valid.  Specifically, an empty or all zero BSSID does not
11251           cut it.
11252         * gnome/applet/applet-dbus-info.c, gnome/applet/other-network-dialog.c,
11253           src/nm-dbus-nmi.c, src/nm-device-802-11-wireless.c: White space and
11254           similar invariant clean up.
11255
11256 2006-06-02  Robert Love  <rml@novell.com>
11257
11258         * gnome/applet/applet.c: Update copyright years.  Add Novell.
11259
11260 2006-05-28  Dan Williams  <dcbw@redhat.com>
11261
11262         * gnome/applet/applet.glade
11263           gnome/vpn-properties/nm-vpn-properties.glade
11264                 - Set window icons on dialogs  (Gnome.org #333420)
11265
11266 2006-05-28  Christian Persch  <chpe@cvs.gnome.org>
11267
11268         * gnome/vpn-properties/nm-vpn-properties.glade:
11269         * vpn-daemons/openvpn/properties/nm-openvpn-dialog.glade:
11270         * vpn-daemons/pptp/properties/nm-pptp-dialog.glade:
11271         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade:
11272                 - Make the VPN properties pages prettier and more HIG
11273                   compliant. Gnome Bug #336913.
11274
11275 2006-05-28  Dan Williams  <dcbw@redhat.com>
11276
11277         Patch from Christian Persch <chpe@gnome.org>
11278         * gnome/vpn-properties/nm-vpn-properties.c
11279         * gnome/vpn-properties/nm-vpn-properties.glade
11280                 - HIG-ification love  (Gnome.org #336846)
11281
11282 2006-05-28  Dan Williams  <dcbw@redhat.com>
11283
11284         Patch from Christian Persch <chpe@gnome.org>
11285         * configure.in
11286           gnome/vpn-properties/nm-vpn-properties.c
11287                 - (main): Fix option parsing.  Gnome.org #336847
11288
11289 2006-05-28  Dan Williams  <dcbw@redhat.com>
11290
11291         * gnome/vpn-properties/nm-vpn-properties.c
11292                 - (find_vpn_ui_by_service_name): protect against NULL service names
11293                 - (update_edit_del_sensitivity): protect against NULL service names
11294                         Gnome.org #341306
11295
11296 2006-05-28  Dan Williams  <dcbw@redhat.com>
11297
11298         Patch from Chris Fuller <crf@grandecom.net>:
11299         * src/nm-device-802-11-wireless.c
11300                 - (nm_device_802_11_wireless_dispose): add a is_initialized member and
11301                         don't dispose of wireless-specific stuff unless it is actually
11302                         initialized.  Gnome.org #341263
11303
11304 2006-05-28  Dan Williams  <dcbw@redhat.com>
11305
11306         * src/NetworkManagerPolicy.c
11307                 - (nm_policy_device_change_check): don't switch devices if the "best"
11308                         AP is essentially the same as the current activation request, but
11309                         the current activation request isn't done activating yet.  Fixes
11310                         multiple requests for keyring password on startup for Gnome applet.
11311                         Gnome.org #341297
11312
11313 2006-05-26  Nicolas Trangez  <eikke@eikke.com>
11314
11315         * src/NetworkManager.c: use GOptions instead of getopt
11316         * configure.in: bump glib required version to >= 2.6 for GOption
11317           support
11318
11319 2006-05-25  Robert Love  <rml@novell.com>
11320
11321         * src/nm-device.h: Introduce nm_ioctl_info(), which defines to
11322           nm_info() if IOCTL_DEBUG is set and a no-op if not.  We can use this
11323           instead of dumping ifdef's throughout the code.
11324         * src/NetworkManagerSystem.c, src/nm-device-802-11-wireless.c,
11325           src/nm-device-802-3-ethernet.c, src/nm-device.c: Remove ifdef's and
11326           use nm_ioctl_info() in lieu.
11327
11328 2006-05-25  Robert Love  <rml@novell.com>
11329
11330         Patch Valentine Sinitsyn <e_val@inbox.ru> to fix GNOME bug #342400:
11331         * libnm-util/Makefile.am: Only build gnome-keyring-md5.{c,h} if we are
11332           not using gcrypt.  Otherwise, we get a linker error.
11333
11334 2006-05-25  Robert Love  <rml@novell.com>
11335
11336         Patch Valentine Sinitsyn <e_val@inbox.ru> to fix GNOME bug #342398:
11337         * configure.in, gnome/Makefile.am, Makefile.am: Add "--without-gnome"
11338           configure flag to disable building of the GNOME-based applet.
11339
11340 2006-05-25  Robert Love  <rml@novell.com>
11341
11342         * gnome/applet/nm-device.c, gnome/applet/nm-device.h: Rename function
11343           parameter from link, because it shadows a global variable with some
11344           older versions of glibc.  Yes, glibc is now fixed and, yes, glibc
11345           should never have exported to the entire system a common four letter
11346           word.  But we here at NetworkManager are team players.  Fixes
11347           GNOME bug #336532.
11348
11349 2006-05-25  Arangel Angov <ufo@linux.net.mk>
11350
11351         * configure.in: Added mk.po, Macedonian translation.
11352
11353 2006-05-24  Robert Love  <rml@novell.com>
11354
11355         * examples/python/systray/eggtrayicon.c, gnome/applet/eggtrayicon.c,
11356           gnome/applet/passphrase-dialog.c, gnome/applet/vpn-password-dialog.c,
11357           src/NetworkManager.c: Include <glib/gi18n.h> and not <libintl.h>.
11358
11359 2006-05-24  Robert Love  <rml@novell.com>
11360
11361         * gnome/applet/Makefile.am, gnome/vpn-properties/Makefile.am,
11362           libnm-util/Makefile.am, src/Makefile.am,
11363           vpn-daemons/openvpn/auth-dialog/Makefile.am,
11364           vpn-daemons/openvpn/properties/Makefile.am,
11365           vpn-daemons/pptp/auth-dialog/Makefile.am,
11366           vpn-daemons/pptp/properties/Makefile.am,
11367           vpn-daemons/vpnc/auth-dialog/Makefile.am,
11368           vpn-daemons/vpnc/properties/Makefile.am: Do not override what the
11369           user passed for --datadir, if anything, when setting the GNOME locale
11370           directory.  It should be a function of the specified datadir and not
11371           the prefix.
11372
11373 2006-05-24  Robert Love  <rml@novell.com>
11374
11375         * gnome/applet/main.c, gnome/vpn-properties/nm-vpn-properties.c,
11376           src/NetworkManager.c: Take care to call bindtextdomain with the
11377           location of msgid files.
11378         * src/Makefile.am: Set GNOMELOCALEDIR to the location of GNOME mo
11379           files.
11380
11381 2006-05-22  Robert Love  <rml@novell.com>
11382
11383         * src/nm-device-802-11-wireless.c: Don't chain up to the parent's
11384           stage4_timeout on failure unless the wireless network is Ad-Hoc.
11385           99% of the time there is a real problem with wireless, and a
11386           seemingly successful connection via Zeroconf just confuses the user.
11387           And that 1% of the time the network is probably Ad-Hoc, anyhow.
11388
11389 2006-05-22  Robert Love  <rml@novell.com>
11390
11391         * src/backends/NetworkManagerSuSE.c: Reload, do not restart, ypbind and
11392           autofs on interface up if NIS is configured.  On interface down, do
11393           nothing.
11394
11395 2006-05-22  Robert Love  <rml@novell.com>
11396
11397         * gnome/applet/applet.c: Zero out the icon pointers before we set them,
11398           to avoid calling g_object_unref() on stale pointers on error in
11399           nma_icons_free().  This happens because we short-circuit loaded the
11400           icons on the first failure but then free all icons.  Normally we have
11401           no issue because the icons were zero'ed out malloc, but we have stale
11402           pointer data after nma_icon_theme_changed().
11403         * gnome/applet/main.c: Return error code if nma_new() failed.
11404
11405 2060-05-21  Dan Williams  <dcbw@redhat.com>
11406
11407         * initscript/NetworkManager.in
11408                 - Ensure both dhcdbd and named are started before NM
11409
11410 2006-05-21  Dan Williams  <dcbw@redhat.com>
11411
11412         * configure.in
11413                 - Bump version to 0.7 to signify we are in 0.7 development
11414
11415 2006-05-21  Dan Williams  <dcbw@redhat.com>
11416
11417         Patch from Adam Schreiber <sadam@clemson.edu>
11418         * gnome/vpn-properties/nm-vpn-properties.c
11419                 - (main): correct Gnome program name  (gnome.org #342498)
11420
11421 2006-05-21  Dan Williams  <dcbw@redhat.com>
11422
11423         Fix gnome.org #330832 based on patch from Crispin Flowerday <crispin@gnome.org>
11424
11425         * src/NetworkManagerDbus.[ch]
11426                 - nm_dbus_get_device_from_object_path -> nm_dbus_get_device_from_escaped_object_path:
11427                         clarify that function's argument should be an escaped dbus object
11428                         path, and look for path segment end before returning a match
11429         * src/nm-dbus-nm.c:
11430                 - Fix up users of nm_dbus_get_device_from_escaped_object_path()
11431
11432 2006-05-17  Robert Love  <rml@novell.com>
11433
11434         Functionality to differentiate Ad-Hoc networks from infrastructure
11435         networks in the applet, by displaying a special icon:
11436         * gnome/applet/applet-dbus-devices.c: Set the mode for new networks.
11437         * gnome/applet/applet.c: Pass 'applet' to network_menu_item_update().
11438         * gnome/applet/menu-items.c: Set a special icon in the scan list for
11439           ad-hoc networks.  TODO: Add a third icon representing "encrypted and
11440           Ad-Hoc".  Right now, we display the same icon for all Ad-Hoc wireless
11441           networks, encrypted or not.
11442         * gnome/applet/wireless-network.c, gnome/applet/wireless-network.h: New
11443           accessor functions to get and set the mode of a given network,
11444           wireless_network_get_mode() and wireless_network_set_mode().
11445
11446 2006-05-17  Robert Love  <rml@novell.com>
11447
11448         Functionality to automatically add BSSIDs to the allowed-MAC list as
11449         one roams from access point to access point on a given network:
11450         * src/NetworkManagerUtils.c: Add nm_ethernet_addresses_are_equal(),
11451           helper function to compare two ether_addr structures and return TRUE
11452           if they contain the same MAC address.
11453         * src/NetworkManagerUtils.h: Add nm_ethernet_addresses_are_equal()
11454           prototype.
11455         * src/nm-device-802-11-wireless.c: New function to update the BSSID
11456           stored with the current AP.  If the BSSID has indeed changed, we
11457           send it out to the applet, allowing the allowed-MAC list to grow
11458           automatically in response to roaming.
11459
11460 2006-05-16  Robert Love  <rml@novell.com>
11461
11462         * src/backends/NetworkManagerSuSE.c: Don't touch ypbind or autofs
11463           unless dhcp:DHCLIENT_MODIFY_NIS_CONF is set to "yes".
11464
11465 2006-05-13  Dan Williams  <dcbw@redhat.com>
11466
11467         * src/nm-device-802-3-ethernet.c
11468                 - (real_get_generic_capabilities): Don't ignore devices that can't do
11469                         carrier detect (Debian bug #366373)
11470
11471 2006-05-11  Dan Williams  <dcbw@redhat.com>
11472
11473         Patch from Michael Biebl <biebl@teco.edu>
11474         * src/backends/NetworkManagerDebian.c
11475                 - Debian backend fixups
11476
11477 2006-05-10  Robert Love  <rml@novell.com>
11478
11479         * src/backends/NetworkManagerSuSE.c: Fix double free (Novell #173442).
11480
11481 2006-05-09  Robert Love  <rml@novell.com>
11482
11483         * gnome/applet/nm-gconf-wso-wpa-eap.c: Fix FIXME: Save the WPA EAP
11484           private certificate passphrase, if any, in the GNOME Keyring.
11485         * libnm-utils/dbus-helpers.c: Update.
11486
11487 2006-05-05  Dan Williams  <dcbw@redhat.com>
11488
11489         * src/nm-device-802-11-wireless.c
11490                 - (nm_device_802_11_wireless_set_wep_enc_key): convert to
11491                         nm_device_802_11_wireless_disable_encryption() since that's all
11492                         we use it for anymore; we don't ever set WEP keys ourselves.
11493                 - (real_deactivate_quickly): reset SSID and encryption keys
11494                 - (real_deactivate): move SSID and encryption key reset to
11495                         real_deactivate_quickly(), which gets run before us anyway
11496
11497 2006-05-05  Robert Love  <rml@novell.com>
11498
11499         * src/NetworkManager.c: Set the umask to 0022 when daemonizing, in case
11500           root has a wacky default of its own (or, more common, a user has a
11501           bad umask and uses su/sudo to restart NetworkManager).  Anything
11502           other than 0022 does not do what we want with, for example,
11503           resolv.conf.  This problem is amplified by our judicious use of
11504           fopen(), which uses mode 0666 -- implying that the only way to get
11505           the permissions we want is with a umask of 0022.
11506
11507 2006-05-05  Dan Williams  <dcbw@redhat.com>
11508
11509         * gnome/libnm_glib/libnm_glib.c
11510                 - Don't suck CPU when dbus isn't around by scheduling idle handlers
11511                         to reconnect; instead wait a bit more with each reconnect attempt
11512                         up to a max of one minute.
11513
11514 2006-05-04  Ryan Lortie  <desrt@desrt.ca>
11515
11516         * gnome/applet/passphrase-dialog.c (update_button_cb): Get the SSID of
11517           the WirelessNetwork structure using the proper function instead of
11518           just casting it directly to (const char *) (gnome.org #336991)
11519
11520 2006-05-03  Robert Love  <rml@novell.com>
11521
11522         * src/backends/NetworkManagerSuSE.c: Respect the variable
11523           dhcp:DHCLIENT_MODIFY_RESOLV_CONF, not
11524           config:MODIFY_RESOLV_CONF_DYNAMICALLY, when deciding whether or not
11525           to dynamically update /etc/resolv.conf.
11526
11527 2006-05-02  Peter Jones  <pjones@redhat.com>
11528
11529         * vpn-daemons/vpnc/src/nm-vpnc-service.c: Allow rekeying.
11530
11531 2006-05-02  Robert Love  <rml@novell.com>
11532
11533         Patch by Timo Hoenig;
11534         * tests/nm-online.c: Print pretty status indicator as timeout winds
11535           down.  Also fix possible race between DBUS startup and failure
11536           return.
11537
11538 2006-05-01  Robert Love  <rml@novell.com>
11539
11540         * gnome/applet/applet-compat.c: Warn if the returned escaped ESSID is
11541           empty, too.
11542
11543 2006-04-27  Jeremy Katz  <katzj@redhat.com>
11544
11545         * src/nm-device.c (discover_device_type): Actually use the hal
11546         device type instead of ioctl poking
11547
11548 2006-04-26  Robert Love  <rml@novell.com>
11549
11550         * tests/nm-online.c: New file.  Simple utility that returns exit status
11551           noting whether the connection is offline or online.  If offline on
11552           start, it waits 30 seconds (or a command-line given value) for an
11553           online signal.  If it times out, it again returns offline.  This is
11554           useful for scripts that want to wait for network connections.
11555
11556 2006-04-25  Robert Love  <rml@novell.com>
11557
11558         * src/nm-ap-security-wep.c: Bug fix: We stopped setting the
11559           key mode (the authentication algorithm), e.g. open or shared, when we
11560           moved to using wpa_supplicant.  wpa_supplicant defaults to open, so
11561           only shared was broken.  If the user specified a shared key, set it
11562           explicitly, otherwise let wpa_supplicant go with the default.
11563
11564 2006-04-24  Dan Williams  <dcbw@redhat.com>
11565
11566         * src/nm-device-802-11-wireless.c
11567                 - (nm_device_802_11_wireless_set_essid): fix setting of "any" essid
11568
11569 2006-04-24  Dan Williams  <dcbw@redhat.com>
11570
11571         Commit the async scanning patch
11572
11573         * src/nm-device-802-11-wireless.c
11574                 - get rid of scan_mutex
11575                 - (wireless_event_helper): act on wireless scan events
11576                 - (real_start): schedule a pending scan
11577                 - (link_to_specific_ap): fake the link to the AP during a scan
11578                 - (nm_device_802_11_wireless_update_signal_strength): ignore signal
11579                         strength during scans
11580                 - (nm_device_get_frequency, nm_device_set_frequency, nm_device_get_bitrate,
11581                         nm_device_set_bitrate): unused with new scanning code, disable
11582                 - (nm_device_wireless_schedule_scan): removed
11583                 - (nm_device_wireless_process_scan_results): renamed to convert_scan_results()
11584                 - (request_and_convert_scan_results): new function; retrieve scan
11585                         results from the driver and schedule the processing function
11586                 - (scan_results_timeout): timeout triggered when card doesn't send
11587                         a scan results wireless event during a certain interval
11588                 - (schedule_scan_results_timeout): new function; schedule the scan
11589                         results timeout
11590                 - (cancel_scan_results_timeout): new function; cancel the scan
11591                         results timeout
11592                 - (nm_device_802_11_wireless_scan): if wpa_supplicant is running, ask it
11593                         to do the scanning.  Otherwise, just request a scan but don't
11594                         grab results here; instead schedule a timeout for scan results and
11595                         let netlink notify us of scan completion events
11596                 - (nm_device_wireless_schedule_scan): new function; schedule a wireless scan
11597                 - (cancel_pending_scan): new function; cancel a pending wireless scan
11598                 - (supplicant_status_cb): ignore disconnect events while scanning
11599                 - (supplicant_exec): wait a bit longer for the supplicant to start up
11600                 - (nm_device_802_11_wireless_dispose): cancel pending scans and results
11601                         timeouts
11602                 - (get_scan_results): removed; folded into request_and_convert_scan_results()
11603
11604 2006-04-24  Dan Williams  <dcbw@redhat.com>
11605
11606         * gnome/applet/applet-dbus.c
11607                 - Disable the pending call debug stuff, seems under control now
11608
11609 2006-04-20  Robert Love  <rml@novell.com>
11610
11611         Fix bug where hidden ESSID's would not show up in the applet, even
11612         if NMI provided a BSSID -> ESSID mapping from Gconf.  This occurred
11613         because nm_policy_device_list_update_from_allowed_list() would merge
11614         the data, putting a name to the hidden networks, but never notify NMI
11615         of the changes.  Simple fix is to invoke the function
11616         nm_dbus_signal_wireless_network_change() if we make a mapping.
11617         * src/NetworkManagerAPList.c: Call the function
11618           nm_dbus_signal_wireless_network_change() if we made a successful
11619           BSSID to ESSID mapping, notifying the applet of the "new" network.
11620         * src/NetworkManagerAPList.h: Update the prototypes for both
11621           nm_ap_list_copy_essids_by_address() and
11622           nm_ap_list_copy_one_essid_by_address().
11623
11624 2006-04-20  Robert Love  <rml@novell.com>
11625
11626         * gnome/applet/applet-dbus-info.c: Don't bail out if the timestamp is
11627           not set.  Just return zero.
11628
11629 2006-04-20  Robert Love  <rml@novell.com>
11630
11631         * gnome/vpn-properties/nm-vpn-properties.c: Satisfy TODO: Ensure that
11632           only one copy of nm-vpn-properties is running at a time via the 'ol
11633           X selection trick.  This prevents the user from opening two "VPN
11634           Connections" windows from within the applet, which leads to mass
11635           hysteria.
11636         * clipboard.c: New file, implementing simple X selection logic.
11637         * clipboard.h: New file.
11638         * gnome/vpn-properties/Makefile.am: Add clipboard.{c,h}
11639
11640 2006-04-18  Nicolas Trangez  <eikke@eikke.com>
11641
11642         * backends/NetworkManagerGentoo.c: Small cleanups and enhancements
11643         * configure.in
11644           initscript/Gentoo/Makefile.am
11645           initscript/Gentoo/NetworkManagerDispatcher.in
11646                 - New script
11647         * initscript/Gentoo/NetworkManager.in: small dependency fixup from
11648           Gentopia
11649
11650 2006-04-16  Dan Williams  <dcbw@redhat.com>
11651
11652         Patch from Paul Blazejowski <paulb@blazebox.homeip.net>
11653         * configure.in
11654           initscript/Slackware/Makefile.am
11655           initscript/Slackware/rc.networkmanager-dispatcher.in
11656           initscript/Slackware/rc.networkmanager.in
11657                 - Update slackware initscripts
11658
11659 2006-04-10  Robert Love  <rml@novell.com>
11660
11661         * gnome/vpn-properties/nm-vpn-properties.c: Intercept and short-circuit
11662           the "delete_event" signal on the druid's parent window and handle it
11663           our way, lest using the WM to close the druid results in a series of
11664           bloody and ultimately lethal errors.
11665
11666 2006-04-10  Robert Love  <rml@novell.com>
11667
11668         * gnome/vpn-properties/nm-vpn-properties.c: Validate VPN settings on
11669           'Back' too or else the 'Forward' option is initially disabled despite
11670           valid input.
11671
11672 2006-04-06  Robert Love  <rml@novell.com>
11673
11674         Fix bad but simple bug where an active modem connection did not update
11675         NM's connection state, breaking any app that did online/offline:
11676         * src/NetworkManagerMain.h: Add 'modem_active' member to NMData,
11677           represented whether a dial up connection is active, or not.
11678         * src/nm-dbus-nm.c: Set and unset 'modem_active' in response
11679           to modem activation and deactivation.
11680         * src/NetworkManagerDbus.c: When asked our state, do not return
11681           disconnected if the modem is active.
11682
11683 2006-04-04  Robert Love  <rml@novell.com>
11684
11685         * gnome/applet/applet.c: Remove the 'Remove' option that I added to the
11686           applet.  It just confuses the crap out of people and does not make a
11687           lot of sense, as the daemon still runs.
11688
11689 2006-04-02  Tor Krill  <tor@krill.nu>
11690
11691         * initscript/Arch/networkmanager.in: Added checks for HAL and dhcdbd
11692           in start of service.
11693         * src/backends/NetworkManagerArch.c: (nm_system_get_mtu): Added to
11694           get Archlinux backend up to date.
11695
11696 2006-03-29  Robert Love  <rml@novell.com>
11697
11698         Patch by Vinay R <rvinay@novell.com> and Robert Love <rml@novell.com>,
11699         to add support for per-route MSS and improve support for per-interface
11700         MTU:
11701         * src/NetworkManagerSystem.c: Modify nm_system_device_set_ip4_route to
11702           optionally take an MSS parameter and set it for the given route.
11703           Remove nm_system_device_set_ip4_route_with_iface.  Pass in the
11704           NMIP4Config's stored MSS, if any.
11705         * src/nm-ip4-config.c: Add 'mtu' and 'mss' to NMIP4Config, representing
11706           the interface's MTU and the route's MSS, respectively.  Add functions
11707           nm_ip4_config_get_mtu, nm_ip4_config_set_mtu, nm_ip4_config_get_mss,
11708           and nm_ip4_config_set_mss for retrieving and setting the MTU and the
11709           MSS.
11710         * src/nm-ip4-config.h: Add prototypes for nm_ip4_config_get_mtu,
11711           nm_ip4_config_set_mtu, nm_ip4_config_get_mss, and
11712           nm_ip4_config_set_mss.
11713         * src/vpn-manager/nm-vpn-service.c: Modify to receive the MSS from the
11714           VPN daemon.
11715         * src/backends/NetworkManager{Arch,Debian,Gentoo,RedHat,Slackware,SUSE}.c:
11716           Change the retval of nm_system_get_mtu to guint32.
11717         * src/dhcp-manager/nm-dhcp-manager.c: Set the MTU on the new DHCP-given
11718           NMIP4Config to the MTU provided by the system, if any.  TODO: If DHCP
11719           servers can specify MTU's, we should set it here if the MTU was not
11720           provided.
11721
11722 2006-03-27  Jürg Billeter  <j@bitron.ch>
11723
11724         * configure.in:
11725         * initscript/Makefile.am:
11726         * initscript/paldo/Makefile.am:
11727         * initscript/paldo/NetworkManager.in:
11728         * initscript/paldo/NetworkManagerDispatcher.in:
11729         * src/backends/Makefile.am:
11730         * src/backends/NetworkManagerPaldo.c:
11731                 - Add paldo support
11732
11733 2006-03-27  Dan Williams  <dcbw@redhat.com>
11734
11735         Patch from Christian Persch <chpe@gnome.org>
11736         * gnome/applet/applet.glade
11737                 - HIG fixes; mostly for spacing and borders (gnome.org #336220)
11738
11739 2006-03-27  Dan Williams  <dcbw@redhat.com>
11740
11741         Patch from Diffe <diffie@blazebox.homeip.net>
11742         * src/backends/NetworkManagerSlackware.c
11743                 - Don't restart howl, since it's been replaced by Avahi
11744                         in most distributions
11745
11746 2006-03-27  Dan Williams  <dcbw@redhat.com>
11747
11748         Patch from Tor Krill <bugzilla@krill.nu>
11749         * configure.in
11750           initscript/Makefile.am
11751           src/backends/Makefile.am
11752           src/backends/NetworkManagerArch.c
11753           initscript/Arch/Makefile.am
11754           initscript/Arch/networkmanager-dispatcher.in
11755           initscript/Arch/networkmanager.in
11756                 - Add Arch Linux support, fixes gnome.org #335147
11757
11758 2006-03-27  Dan Williams  <dcbw@redhat.com>
11759
11760         Patch from Diffe <diffie@blazebox.homeip.net>
11761      * initscript/Slackware/rc.networkmanager
11762         - update, fixed gnome.org #333368
11763
11764 2006-03-27  Robert Love  <rml@novell.com>
11765
11766         * gnome/applet/other-network-dialog.c: Do not allow the user to try to
11767           create WPA-EAP Ad-Hoc networks because such an action makes no sense.
11768
11769 2006-03-27  Robert Love  <rml@novell.com>
11770
11771         Patch by Jürg Billeter <j@bitron.ch>:
11772         * src/nm-logging.c: Add printf modifier to fix warning on 64-bit
11773           systems.
11774         * src/nm-netlink-monitor.c: Include <net/if.h> instead of <linux/if.h>
11775           as we prefer glibc over kernel headers, if possible.
11776
11777 2006-03-27  Robert Love  <rml@novell.com>
11778
11779         Patch by Jon Escombe <list@dresco.co.uk>:
11780         * gnome/applet/nm-gconf-wso.c: Add missing NM_AUTH_TYPE_WPA_EAP case.
11781         * gnome/applet/nm-gconf-wso-wpa-eap.c: If retrieving the gconf values
11782           fail, don't bail out.  We don't expect all of the various WPA-EAP
11783           values to be present.
11784         * src/nm-ap-security.c: We need to match all capabilities for each
11785           encryption type, not any one of them.
11786
11787 2006-03-27  Robert Love  <rml@novell.com>
11788
11789         * src/backends/NetworkManagerSuSE.c: Revert 2006-03-17 commit and again
11790           restart, not reload, ypbind.  Unfortunately there is no superior
11791           solution.
11792
11793 2006-03-24  Christopher Aillon  <caillon@redhat.com>
11794
11795         * gnome/applet/applet-notifications.c:
11796         When displaying a notification, make sure to get rid of the
11797         previous notification so as to not have competing bubbles,
11798         and stop leaking the old one.
11799
11800         * gnome/applet/applet.c:
11801         * gnome/applet/applet.h:
11802         Add a new 'notification' member to the applet, and zero it out
11803         and free it appropriately.
11804
11805 2006-03-23  Robert Love  <rml@novell.com>
11806
11807         Patch by j <j@bootlab.org>:
11808         * gnome/applet/applet.glade: Don't set the invisible_char property,
11809           which simply overrides the GTK default.  By and by, this behavior
11810           ought to be fixed in Glade.
11811
11812 2006-03-22  Robert Love  <rml@novell.com>
11813
11814         * src/dhcp-manager/nm-dhcp-manager.c: Bump timeout to 45 seconds.
11815
11816 2006-03-22  Robert Love  <rml@novell.com>
11817
11818         Bug fix by Timo Hoenig <thoenig@suse.de>:
11819         * gnome/applet/applet-dbus.c: Let the applet reconnect to DBUS on
11820           disconnect.  Otherwise, we have the daemon surviving DBUS restarts
11821           and the applet going AWOL.
11822
11823 2006-03-22  Robert Love  <rml@novell.com>
11824
11825         * src/dhcp-manager/nm-dhcp-manager.c: Create NM_DHCP_TIMEOUT
11826           preprocessor define and use it instead of open-coded the DHCP
11827           timeout, which is currently 25 seconds, everywhere.
11828
11829 2006-03-22  Robert Love  <rml@novell.com>
11830
11831         Implement "Dynamic WEP", which is basically WPA authentication and WEP
11832         key exchange via WPA, ostensibly providing good security without
11833         requiring hardware that supports full WPA.  Also, add UI elements to
11834         allow the user to select the pairwise & group cipher for WPA Enterprise
11835         networks, too:
11836         * gnome/applet/applet.glade: Update glade file.
11837         * gnome/applet/nm-gconf-wso-wpa-eap.c: Serialize and deserialize the
11838           key type, too, to and from gconf.
11839         * gnome/applet/wireless-security-option.c: Add "wpa_eap" parameter to
11840           wso_wpa_create_key_type_model(), noting whether we are handling PSK
11841           or EAP configuration, and in the latter case add in "Dynamic WEP" if
11842           the capabilities match.
11843         * gnome/applet/wso-private.h: Update wso_wpa_create_key_type_model()'s
11844           prototype.
11845         * gnome/applet/wso-wpa-eap.c: Manage UI elements for the key type and
11846           serialize from UI to DBUS.
11847         * gnome/applet/wso-wpa-psk.c: Cannot fail and always returns at least
11848           one element.
11849         * libnm-util/dbus-helpers.c: Update nmu_security_serialize_wpa_eap(),
11850           nmu_security_serialize_wpa_eap_with_cipher(), and
11851           nmu_security_deserialize_wpa_eap() to take a "key_type" parameter and
11852           serialize/deserialize the key type via DBUS as the new third DBUS
11853           parameter.
11854         * libnm-util/dbus-helpers.h: Update prototypes.
11855         * src/nm-ap-security-wpa-eap.c: Deserialize the key type from DBUS,
11856           too.  If the key type is WEP104, do Dynamic WEP, which means
11857           "IEEE8021X" for "key_mgmt".  Also add support for user-specified
11858           pairwise and group ciphers (fixes a FIXME).
11859
11860 2006-03-21  Robert Love  <rml@novell.com>
11861
11862         * src/NetworkManagerSystem.c, src/NetworkManagerSystem.h: Add
11863           nm_system_get_mtu(), which returns a user-provided or system-mandated
11864           MTU value for a given device, if any, or zero if no such value
11865           exists.  Add nm_system_set_mtu() to set the MTU for a given device
11866           if we have a provided value.
11867         * src/nm-device.c: Set the MTU of devices.
11868         * src/backends/NetworkManagerSuSE.c: Read MTU, if any, from sysconfig.
11869         * src/backends/NetworkManagerDebian.c,
11870           src/backends/NetworkManagerGentoo.c,
11871           src/backends/NetworkManagerRedHat.c,
11872           src/backends/NetworkManagerSlackware.c: Implement stub functions.
11873
11874 2006-03-21  Robert Love  <rml@novell.com>
11875
11876         * src/backends/NetworkManagerSuSE.c: Strip hypens from hex key in
11877           configuration file.
11878
11879 2006-03-17  Robert Love  <rml@novell.com>
11880
11881         * src/backends/NetworkManagerSuSE.c: Do "rcypbind reload" to send the
11882           signal SIGHUP to ypbind, not "rcypbind restart" to physically restart
11883           it, in case it is not running in the first place.  We just want its
11884           configuration reloaded.  Also, do not "rcypbind stop" on device down.
11885
11886 2006-03-15  Robert Love  <rml@novell.com>
11887
11888         * gnome/applet/applet.glade, gnome/applet/wso-wep-ascii.c,
11889           gnome/applet/wso-wep-hex.c, gnome/applet/wso-wep-passphrase.c: The
11890           label "WEP 40/128-bit" is inconsistent because the physical key size
11891           is 40 or 104-bits, to which a 24-bit initialisation vector is
11892           appended, forming a 64 or 128-bit traffic key.  Thus, the label ought
11893           to read "40/104" or "64/128".  I do not care much which, but most
11894           users think of "silver" and "gold" encryption as 64 and 128-bits, so
11895           let's stick with that.  Thus, s/"40/128"/"64/128"/g.  Also, since our
11896           WEP passphrase support only handles 128-bit keys, and any future
11897           64-bit passphrase support will require a new option (no way to auto-
11898           detect the target key size), explicitly label our passphrase support
11899           "WEP 128-bit Passphrase".
11900
11901 2006-03-15  Robert Love  <rml@novell.com>
11902
11903         * src/dhcp-manager/nm-dhcp-manager.c: Do not start dhcdbd, but rely on
11904           the system init scripts (or some other mechanism) starting it (or a
11905           compatible DBUS service) before NetworkManager runs.  This means that
11906           distributions might need to update their init scripts.  This fixes
11907           possible races and is quite a bit cleaner.
11908         * initscript/SUSE/networkmanager.in: Update to start dhcdbd before
11909           starting the NetworkManager daemon.
11910
11911
11912 2006-03-14  Robert Love  <rml@novell.com>
11913
11914         * src/backends/NetworkManagerSuSE.c: Check that we have a valid AP
11915           before adding anything.
11916
11917 2006-03-13  Robert Love  <rml@novell.com>
11918
11919         * gnome/vpn-properties/nm-vpn-properties.c: Hide the next page's
11920           widgets, too, if they exist, in case the user hit the back button.
11921           Fixes a bug where the details page contains the widgets of multiple
11922           VPN modules (Novell bug #157048).
11923
11924 2006-03-13  Robert Love  <rml@novell.com>
11925
11926         Patch by Timo Hoenig <thoenig@suse.de>:
11927         * dispatcher-daemon/NetworkManagerDispatcher.c: Let the dispatcher
11928           daemon survive DBUS restarts, too.
11929
11930 2006-03-10  Robert Love  <rml@novell.com>
11931
11932         * gnome/applet/applet.glade: Add toggles to show/obfuscate the
11933           passphrase or key.
11934         * gnome/applet/wso-wep-ascii.c, gnome/applet/wso-wep-hex.c,
11935           gnome/applet/wso-wep-passphrase.c, gnome/applet/wso-wpa-eap.c,
11936           gnome/applet/wso-wpa-psk.c: Show and obfuscate passphrases and keys
11937           in response to "toggled" signal on new toggle.
11938
11939 2006-03-10  Robert Love  <rml@novell.com>
11940
11941         * src/nm-ap-security-wpa-eap.c: Pass fake empty strings for
11942           serialization if strings are NULL, lest DBUS get angry.
11943
11944 2006-03-10  Robert Love  <rml@novell.com>
11945
11946         * src/nm-ap-security-wpa-eap.c: Don't log the password.
11947
11948 2006-03-09  Robert Love  <rml@novell.com>
11949
11950         * src/backends/NetworkManagerSuSE.c: Read in WEP and WPA static
11951           configurations.
11952
11953 2006-03-09  Dan Williams  <dcbw@redhat.com>
11954
11955         Track pending call requests in the applet, and report how many are
11956         outstanding, and how long each completed one takes.
11957         
11958         * gnome/applet/applet-dbus-devices.c
11959           gnome/applet/applet-dbus-vpn.c
11960                 - Track pending calls
11961
11962         * gnome/applet/applet-dbus.[ch]
11963                 - Remove some unused enums
11964                 - (nma_dbus_send_with_callback, nma_dbus_send_with_callback_replied):
11965                         new functions to track dbus pending calls and spit out some
11966                         statistics about them
11967
11968 2006-03-09  Robert Love  <rml@novell.com>
11969
11970         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Have the function
11971           nm_ap_set_timestamp() take the second and micro-second parameters as
11972           direct arguments, which avoids both a dynamic memory allocation and a
11973           structure-to-structure copy!  Add a new interface, the aptly named
11974           nm_ap_set_timestamp_via_timestamp(), to set the timestamp from an
11975           existing GTimeVal, as nm_ap_set_timestamp() once did, for use with
11976           the return from nm_ap_get_timestamp().  New users should use the new
11977           nm_ap_set_timestamp(), not nm_ap_set_timestamp_via_timestamp(), for
11978           the extreme benefit to performance.
11979         * src/NetworkManagerAPList.c, src/nm-dbus-nmi.c,
11980           src/backends/NetworkManagerSuSE.c: Use the new functions as needed.
11981
11982 2006-03-08  Robert Love  <rml@novell.com>
11983
11984         * gnome/applet/applet.glade: Hide the password entry text with
11985           asterisks.
11986
11987 2006-03-08  Robert Love  <rml@novell.com>
11988
11989         * src/NetworkManagerSystem.h, src/nm-device.c, NetworkManagerDebian.c,
11990           NetworkManagerRedHat.c, NetworkManagerGentoo.c,
11991           NetworkManagerSlackware.c: Pass nm_system_device_get_system_config()
11992           a second argument, NMData.
11993         * src/nm-ap-security.h, src/nm-ap-security.c: Export nm_ap_security_new.
11994         * src/backends/NetworkManagerSuSE.c: Add wireless networks from ifcfg-*
11995           config files as trusted.
11996
11997 2006-03-06  Robert Love  <rml@novell.com>
11998
11999         * gnome/applet/Makefile.am: Define AUTOSTARTDIR.
12000         * gnome/applet/applet.c: Add 'Remove' option to the right click menu,
12001           to exit the applet.  As a sweet side-effect, idea courtesy of Chris
12002           Rivera, detect if the applet was auto-started.  If so, ask the user
12003           if he or she would like to stop automatically running the applet on
12004           login.  If so, disable autostart.
12005
12006 2006-03-06  Robert Love  <rml@novell.com>
12007
12008         * NetworkManager.pc.in:  Provide an -I to the NetworkManager include
12009           directory in CFLAGS so developers can actually use NetworkManager.h.
12010
12011 2006-03-06  Robert Love  <rml@novell.com>
12012
12013         * src/dhcp-manager/nm-dhcp-manager.c: Use preprocessor defines and not
12014           open-coded integer constants.  Add state_to_string() to map a given
12015           state to a textual description, and provide that when notifying of
12016           state change.
12017         * src/dhcp-manager/nm-dhcp-manager.h: Provide defines for the dhcdbd
12018           states, copied and cleaned up from dhcdbd.d.  Ideally, we would use
12019           this header directly, but it is currently not installed on most
12020           systems.
12021
12022 2006-03-05  Dan Williams  <dcbw@redhat.com>
12023
12024         Process netlink messages in device subclasses rather than in
12025         NetworkManager.c.  Also add support for recognizing Wireless Events.
12026         
12027         * configure.in
12028                 - Find GLIB_GENMARSHAL
12029
12030         * src/Makefile.am
12031                 - Since we're marshalling custom types for wireless event signals,
12032                         we get to create our own marshallers using GLIB_GENMARSHAL
12033
12034         * src/NetworkManager.c
12035                 - (nm_monitor_wired_link_state): renamed to nm_monitor_setup
12036                 - (nm_monitor_setup): renamed from nm_monitor_wired_link_state, and
12037                         cut down somewhat.  We no longer process signals here.
12038                 - (nm_data_new): create the netlink monitor here, and remove a
12039                         useless call to nm_policy_schedule_device_change_check()
12040                 - (nm_data_free): get rid of the netlink monitor here
12041                 - (nm_device_link_activated, nm_device_link_deactivated): removed
12042                 - (main): don't create the netlink monitor here, let nm_data_new
12043                         do that.  Call nm_policy_schedule_device_change_check() right
12044                         before we jump to the mainloop to figure out which device
12045                         to use first
12046
12047         * src/NetworkManagerSystem.[ch]
12048                 - (nm_system_get_rtnl_index_from_iface, nm_system_get_iface_from_rtnl_index):
12049                         convert back and forth from interface names to interface
12050                         indexes
12051
12052         * src/nm-device-802-11-wireless.c
12053                 - (real_init): connect to wireless-event signals from the netlink
12054                         monitor object
12055                 - (nm_device_802_11_wireless_event): new function, schedule handler
12056                         for wireless event signals from the netlink monitor object.  We
12057                         want the handler to run in the device's context
12058                 - (wireless_event_helper): handle wireless-event signals from netlink
12059                 - (nm_device_802_11_wireless_dispose): disconnect wireless-event
12060                         signal handler
12061
12062         * src/nm-device-802-11-wireless.h
12063                 - remove unused prototype for nm_device_802_11_wireless_new
12064
12065         * src/nm-device-802-3-ethernet.c
12066                 - (real_init): new function; set up signal handlers for link events
12067                 - (nm_device_802_3_ethernet_link_activated): new function, schedule
12068                         handler for netlink link activated events on device's main loop
12069                 - (link_activated_helper): when we get a link activated event, set
12070                         the device's link to be active
12071                 - (nm_device_802_3_ethernet_link_deactivated): new function; schedule
12072                         handler for netlink link deactivated events on device's main loop
12073                 - (link_deactivated_helper): when we get a link deactivated event, set
12074                         the device's link to be inactive
12075                 - (nm_device_802_3_ethernet_dispose): disconnect signal handler on
12076                         dispose
12077
12078         * src/nm-device-802-3-ethernet.h
12079                 - remove unused prototype for nm_device_802_3_ethernet_new
12080
12081         * src/nm-device.[ch]
12082                 - (nm_get_device_by_iface_locked): variant of nm_get_device_by_iface
12083                         but locks the device list
12084                 - (nm_device_set_active_link): a little bit of cleanup and de-indenting
12085
12086         * src/nm-netlink-monitor.[ch]
12087                 - (nm_netlink_monitor_class_install_signals): New signal
12088                         "wireless-event"
12089                 - (nm_netlink_monitor_new): keep reference to NMData so we can get
12090                         at the device list
12091                 - (nm_netlink_monitor_event_handler): expand for wireless events too
12092
12093         * src/nm-marshal-main.c
12094                 - Include generated nm-marshal.c and nm-marshal.h
12095
12096         * src/nm-marshal.list
12097                 - List of custom marshal functions
12098
12099 2006-03-05  Dan Williams  <dcbw@redhat.com>
12100
12101         * gnome/applet/applet-notifications.h
12102                 - Protect prototype of nma_send_event_notification() because it
12103                         includes libnotify-specific types
12104                 - Include libnotify/libnotify.h too, since we technically need it
12105
12106         * gnome/applet/applet.c
12107                 - (nma_show_vpn_failure_dialog): fix usage of g_return_if_fail
12108                 - (nma_show_vpn_login_banner_dialog): add some error checking
12109
12110 2006-03-04  Dan Williams  <dcbw@redhat.com>
12111
12112         Clean up activation cancellation.  Should be a lot faster now.  Observed
12113         an issue with wireless devices between stage 2 and 3 of activation, where
12114         activation would be cancelled, but the device thread wouldn't notice until
12115         the supplicant association timed out.  Reorganize activation such that
12116         a cancellation handler gets immediately scheduled in the device's thread,
12117         and devices have a chance to perform any custom cleanup too.
12118
12119         * src/nm-device.[ch]
12120                 - (activation_cancel_handler): new device-type-specific function
12121                         for cleaning up device-type-specific stuff on cancellation
12122                 - (cancel_activation): removed
12123                 - (nm_device_activation_cancel): subsume functionality of
12124                         real_cancel_activation, but instead of doing anything, punt
12125                         operation to a handler that's run in device-thread context
12126                 - (nm_device_schedule_activation_handle_cancel): fix spelling of
12127                         a warning message
12128                 - (activation_handle_cancel_helper): cancellation handler run in
12129                         device-thread context, calls device-type-specific cancelation,
12130                         then tears down the activation request
12131                 - (real_activation_cancel_handler): generic cancellation handler,
12132                         deals with cancelling any in-process DHCP request
12133                 - (nm_device_activate_stage1_device_prepare,
12134                    nm_device_activate_stage2_device_config,
12135                    nm_device_activate_stage3_ip_config_start,
12136                    nm_device_activate_stage4_ip_config_get,
12137                    nm_device_activate_stage4_ip_config_timeout,
12138                    nm_device_activate_stage5_ip_commit): don't call
12139                         nm_device_schedule_activation_handle_cancel() any more, since
12140                         cancellation will have been already scheduled for us by
12141                         nm_device_activation_cancel().  Just exit the function and
12142                         assume that the cancel handler will be called next.
12143
12144         * src/nm-device-802-3-ethernet.c
12145                 - (real_act_stage2_config): remove; didn't do anything anyway
12146
12147         * src/nm-device-802-11-wireless.c
12148                 - (supplicant_status_cb): ensure we don't do anything if the activation
12149                         got cancelled
12150                 - (real_activation_cancel_handler): implement; cancel user key request
12151                         on activation cancellation
12152
12153 2006-03-04  Dan Williams  <dcbw@redhat.com>
12154
12155         * src/nm-device-802-11-wireless.c
12156                 - (supplicant_send_network_config): assume that drivers that don't
12157                         support WPA pretty much suck, and can't handle NM scanning
12158                         along with wpa_supplicant.
12159
12160 2006-03-03  Robert Love  <rml@novell.com>
12161
12162         * configure.in: Bump version to 0.6.0.
12163         * NEWS: Update.
12164
12165 2006-03-03  Robert Love  <rml@novell.com>
12166
12167         * configure.in: Require DBUS 0.60 or later.
12168
12169 2006-03-03  Dan Williams  <dcbw@redhat.com>
12170
12171         Fix a crash if an "Other wireless network" was chosen, failed, then
12172         chosen again from the applet's menu.  If the other network wasn't
12173         noticed in a scan, it wouldn't have any capabilities, but would still
12174         be listed because the user forced the network.  To fix this, we set
12175         sensible capabilities on the forced network, which will get overwritten
12176         with the correct ones if the network shows up later in a scan.
12177         
12178         * src/nm-ap-security.h
12179                 - Add a new "get_default_capabilities_func" member to the
12180                         NMAPSecurity class
12181
12182         * src/nm-ap-security.c
12183                 - (nm_ap_security_get_default_capabilities): new function
12184
12185         * src/nm-ap-security.c
12186           src/nm-ap-security-wep.c
12187           src/nm-ap-security-wpa-psk.c
12188           src/nm-ap-security-wpa-eap.c
12189                 - Implement get_default_capabilities_func() for all, which
12190                         uses the information contained in a specific NMAPSecurity
12191                         object to determine default AP capabilites necessary
12192                         to support that object
12193
12194         As a secondary measure, we now prune artificial access points that fail
12195         to be activated right away.  The thing failed, and we have no scan data for
12196         it, so it's pretty much useless since security information is only saved
12197         in the applets when a connection is successful.
12198
12199         * src/NetworkManagerAPList.c
12200                 - (nm_ap_list_merge_scanned_ap): mark any ap noticed in a scan
12201                         not artificial.  If we see it, it's no longer a figment of the
12202                         user's imagination :)
12203
12204         * src/NetworkManagerPolicy.c
12205                 - (nm_policy_activation_failed): send along the failed AP if we
12206                         have it
12207
12208         * src/nm-device-802-11-wireless.c
12209                 - (real_activation_failure_handler): remove artificial APs from
12210                         the device list, because activation failed
12211
12212 2006-03-02  Robert Love  <rml@novell.com>
12213
12214         Add support for retrieving both the per-device speed and the
12215         per-network maximum supported rate.  Then change the getProperties
12216         DBUS API for both networks and devices to report this informaiton.
12217         Finally, display the information via both nm-applet and nm-tool:
12218         * gnome/applet/applet-dbus-devices.c: Grab the speed from getProperties
12219           and set it.
12220         * gnome/applet/applet.c: Display the device's speed in the 'Connection
12221           Information' dialog.
12222         * gnome/applet/applet.glade: Update the UI to show per-device speed.
12223         * gnome/applet/nm-device.c, gnome/applet/nm-device.h: Add interfaces
12224           network_device_get_speed() and network_device_set_speed() for
12225           retrieving and setting, respectively, a network device's current
12226           speed.
12227         * src/nm-dbus-device.c: Send the device's speed on getProperties.
12228         * src/nm-device-802-11-wireless.c: Return the rate in Mb/s, not Kb/s,
12229           in the function nm_device_802_11_wireless_get_bitrate() -- it does
12230           not matter (yet) what the units are, because we only feed it its own
12231           output.  Implement SIOCGIRATE and set the per-network maximum
12232           supported rate during scanning.
12233         * src/nm-device-802-11-wireless.h: Export the function
12234           nm_device_802_11_wireless_get_bitrate().
12235         * src/nm-device-802-3-ethernet.c, src/nm-device-802-3-ethernet.h: Add
12236           function nm_device_802_3_ethernet_get_speed() for returning an
12237           802.3's current speed, in Mb/s.
12238         * test/nm-tool.c: Display the per-device current speed, if available,
12239           and the per-network maximum rate.
12240
12241 2006-03-02  Dan Williams  <dcbw@redhat.com>
12242
12243         * src/nm-device-802-11-wireless.c
12244                 - (nm_device_802_11_wireless_set_scan_interval): don't scan-spam the
12245                         card when it gets initialized.  Since devices don't get added to
12246                         the scan list until they are initialized, this function wasn't
12247                         setting the intitial scan interval correctly, and was leaving
12248                         it at 0.  This caused cards to get many scan requests in a short
12249                         amount of time when they were initialized
12250
12251 2006-03-02  Robert Love  <rml@novell.com>
12252
12253         * gnome/applet/applet.c: Do not set the pixbuf if we don't have an
12254           active device.  But do not do what we used to do and override the
12255           state, which caused the dreaded icon race of '05.
12256
12257 2006-03-02  Robert Love  <rml@novell.com>
12258
12259         Commit Dan's update of my previous commit:
12260         * src/nm-device-802-11-wireless.c: Always set the mode, because the
12261           set_mode() function itself does the check.  But do only set the
12262           frequency if in Ad-Hoc mode.
12263
12264 2006-03-02  Robert Love  <rml@novell.com>
12265
12266         Patch by Brian Magnuson <magnuson@rcn.com>:
12267         * src/nm-device-802-11-wireless.c: During scanning, only set the
12268           wireless mode to infrastructure if it is not currently in
12269           infrastructure mode.  For some driver, setting the mode is a costly
12270           operation, apparently.
12271
12272 2006-03-01  Rodrigo Moya <rodrigo@novell.com>
12273
12274         * Makefile.am: use the correct dir for autostart mechanism.
12275
12276 2006-02-28  Dan Williams  <dcbw@redhat.com>
12277
12278         Patch from Brian Magnuson <magnuson@rcn.com>
12279         * gnome/applet/applet.c
12280                 - (nma_show_vpn_failure_dialog): fix errors left over from
12281                         libnotify support changes
12282
12283 2006-02-28  Dan Williams  <dcbw@redhat.com>
12284
12285         * src/vpn-manager/nm-vpn-act-request.[ch]
12286                 - (nm_vpn_act_request_is_activated): don't use a switch/case for
12287                         just one value
12288                 - (nm_vpn_act_request_is_failed): new function; return whether or
12289                         not the vpn activation request has failed
12290
12291         * src/vpn-manager/nm-vpn-manager.c 
12292                 - (nm_vpn_manager_deactivate_vpn_connection): tell the vpn service
12293                         daemon to kill the connection when the activation request fails.
12294                         Fixes issue where NM would get confused if the VPN activation
12295                         request timed out, and would not allow further VPN connections
12296                         on that service.
12297
12298 2006-02-28  Dan Williams  <dcbw@redhat.com>
12299
12300         * gnome/applet/applet.c
12301                 - (nma_menu_add_vpn_menu): until the NM VPN manager can deal with
12302                         overlapping connection requests, disable all VPN menu items
12303                         but the active VPN connection
12304
12305 2006-02-28  Dan Williams  <dcbw@redhat.com>
12306
12307         * src/vpn-manager/nm-vpn-connection.c
12308                 - (nm_vpn_connection_set_parent_device): fix C&P error which
12309                         called g_object_unref() on the connection's parent device
12310                         when it should have been ref-ed instead.  Fixes crash with
12311                         repeated vpn connect requests
12312
12313 2006-02-28  Christopher Aillon  <caillon@redhat.com>
12314
12315         * gnome/applet/applet.glade:
12316         Mark a few strings non-translatable, since they shouldn't be.
12317
12318 2006-02-28  Dan Williams  <dcbw@redhat.com>
12319
12320         * src/vpn-manager/nm-vpn-service.c
12321                 - (nm_vpn_service_start_connection): if the vpn service daemon is
12322                         already running, don't blindly ask it to connect, but wait until
12323                         it's in the STOPPED state first.  Fixes an assertion when user
12324                         starts a second vpn connection without stopping the first.
12325                 - (nm_vpn_service_stage2_daemon_wait): ensure the vpn service's
12326                         dbus service exists before continuing with the connection
12327                         process, and reduce latency while waiting for it to become
12328                         available
12329                 - (nm_vpn_service_schedule_stage2_daemon_wait): reduce latency
12330                         waiting for the vpn service daemon to become available
12331                 - General log message cleanups; show progress via "Stage x of 4"
12332                         rather than not telling anyone how many stages there are
12333
12334 2006-02-28  Robert Love  <rml@novell.com>
12335
12336         * src/NetworkManagerSystem.h: Add nm_system_should_modify_resolv_conf.
12337         * src/backends/NetworkManagerSuSE.c: Implement the interface
12338           nm_system_should_modify_resolv_conf() for SUSE.
12339         * src/backends/NetworkManagerDebian.c,
12340           src/backends/NetworkManagerGentoo.c,
12341           src/backends/NetworkManagerRedHat.c,
12342           src/backends/NetworkManagerSlackware.c: Add stub.
12343         * src/named-manager/Makefile.am: Grab includes from src.
12344         * src/named-manager/nm-named-manager.c: Allow backends to disable the
12345           automatic updating of resolv.conf.  This is useful for testing,
12346           broken static configurations, and administrator lock-down.
12347
12348 2006-02-28  Dan Williams  <dcbw@redhat.com>
12349
12350         * src/nm-device-802-11-wireless.c
12351                 - Move all the wpa_supplicant-related management stuff into its
12352                         own struct, just for oranization's sake
12353                 - (supplicant_exec): when exec-ing wpa_supplicant, connect its stdout
12354                         to a GIOChannel/GSource
12355                 - (supplicant_log_stdout): new function; grab output from the
12356                         wpa_supplicant stdout pipe and write it to our logs.
12357
12358 2006-02-27  Christopher Aillon  <caillon@redhat.com>
12359
12360         * src/nm-device-802-11-wireless.c:
12361         Err, fix thinko in my previous commit.
12362
12363 2006-02-28  Robert Love  <rml@novell.com>
12364
12365         * gnome/applet/wso-wpa-eap.c: Fix misc. FIXME statements.
12366
12367 2006-02-28  Robert Love  <rml@novell.com>
12368
12369         * libnm-util/dbus-helpers.c, src/nm-ap-security-wpa-eap.c,
12370           src/nm-ap-security-wpa-psk.c, gnome/applet/nm-gconf-wso-wpa-eap.c,
12371           gnome/applet/nm-gconf-wso-wpa-eap.c: Fix FIXMEs: Callers of the DBUS
12372           deserializers are responsible for freeing the returned DBUS strings.
12373
12374 2006-02-27  Christopher Aillon  <caillon@redhat.com>
12375
12376         * src/nm-device-802-11-wireless.c:
12377         The scan list is being pruned prematurely.  We should prune after
12378         the device has gone MIA for three scans, not one.  Split out the
12379         interval to realtime seconds function to better serve this.
12380
12381 2006-02-27  Robert Love  <rml@novell.com>
12382
12383         * dispatcher-daemon/NetworkManagerDispatcher.c, src/NetworkManager.c:
12384           Open the pid file O_TRUNC, so if it already exists we truncate it to
12385           zero length.  Also, be more verbose about warnings generated during
12386           writing out the pid file.  Finally, always write out the pid file if
12387           in daemon mode.  Use "--pid-file" to override the default.
12388
12389 2006-02-27  Robert Love  <rml@novell.com>
12390
12391         Patch by R. Vinay <rvinay@novell.com>:
12392         * gnome/vpn-properties/nm-vpn-properties.c: Remove the gconf key
12393           'last_attempt_success' when removing a VPN connection, too.  (Fixes
12394           Novell bug #153628).
12395           
12396 2006-02-27  Robert Love  <rml@novell.com>
12397
12398         * gnome/applet/applet.glade: Set "activates_default" on passphrase
12399           entry so user can hit <ENTER> after entering passphrase (Novell bug
12400           #153738).
12401
12402 2006-02-27  Dan Williams  <dcbw@redhat.com>
12403
12404         * gnome/applet/*
12405                 - Mass search/replace of:
12406                         nmwa -> nma
12407                         NMWirelessApplet -> NMApplet
12408                         NM_*_WIRELESS_APPLET -> NM_*_APPLET
12409                    (it ain't just for wireless anymore, ma!)
12410                 - Fix duplicate function name printing when using nm_warning
12411                 - wireless-applet.glade -> applet.glade
12412
12413 2006-02-27  Dan Williams  <dcbw@redhat.com>
12414
12415         * dispatcher-daemon/NetworkManagerDispatcher.c
12416                 - Accept --pid-file with a path to a pidfile, write it out on
12417                         startup, and delete it on shutdown
12418
12419         * src/NetworkManager.c
12420                 - Accept --pid-file with a path to a pidfile, write it out on
12421                         startup, and delete it on shutdown
12422                 - Move nm_print_usage() lower
12423
12424         * initscripts/RedHat/NetworkManager.in
12425                 - Use new --pid-file option
12426                 - Fix service stopping to wait a bit for NM to quit
12427
12428         * initscripts/RedHat/NetworkManagerDispatcher.in
12429                 - Use new --pid-file option
12430
12431 2006-02-26  Dan Williams  <dcbw@redhat.com>
12432
12433         * src/Makefile.am
12434                 - make and install nm-crash-logger
12435
12436         * src/nm-logging.[ch]
12437                 - New files; consolidate logging and crash handling
12438
12439         * src/nm-crash-logger.c
12440           src/gdb-cmd
12441                 - Standalong crashlogger for NM, grab a backtrace
12442                         using GDB
12443
12444         * src/NetworkManager.[ch]
12445                 - Remove signal handling and put it into nm-logging.c
12446
12447 2006-02-26  Dan Williams  <dcbw@redhat.com>
12448
12449         * configure.in
12450           gnome/applet/Makefile.am
12451                 - Conditionalize all the notify stuff
12452
12453         Merge most of Chris Aillon's notification patch:
12454         
12455         * gnome/applet/applet-notifications.[ch]
12456                 - New files; show a notification
12457         
12458         * gnome/applet/applet-dbus-devices.[ch]
12459                 - (nmwa_dbus_device_activated, nmwa_dbus_device_activated_cb,
12460                    nmwa_dbus_device_deactivated, nmwa_dbus_device_deactivated_cb):
12461                         new functions, do the right thing when a device change occurs
12462
12463         * gnome/applet/applet-dbus.c
12464                 - (nmwa_dbus_filter): Split out DeviceNowActive and DeviceNoLongerActive
12465                         signals, so we can handle them specially
12466
12467         * gnome/applet/applet.[ch]
12468                 - nmwa_schedule_vpn_login_banner -> nmwa_show_vpn_login_banner
12469                 - nmwa_schedule_vpn_failure_alert -> nmwa_show_vpn_failure_alert
12470                 - (nmwa_notify_state): remove
12471                 - (nmwa_update_state); remove call to nmwa_notify_state, since the
12472                         notification work is now done when the appropriate dbus signals
12473                         are received.
12474                 - (nmwa_show_vpn_login_banner, nmwa_show_vpn_failure_alert): don't
12475                         defer execution of the notification/dialog stuff.  That was an
12476                         artifact of the previous multi-threaded nature of the applet
12477                         and is now pointless.
12478                 - (nmwa_notify_vpn_failure, nmwa_notify_vpn_login_banner): remove,
12479                         no longer needed.  Function folded into applet-notifications.c
12480
12481         * src/NetworkManagerPolicy.c
12482                 - (nm_policy_activation_finish): send the AP along with the device
12483                         status change signal, if the connection is wireless.  Should
12484                         fix the race where applet would show a connection to "unknown"
12485
12486 2006-02-25  Robert Love  <rml@novell.com>
12487
12488         Add WPA Enterprise support:
12489         * gnome/applet/Makefile.am: Build the files nm-gconf-wso-wpa-eap.c and
12490           nm-gconf-wso-wpa-eap.h.
12491         * gnome/applet/nm-gconf-wso-wpa-eap.c,
12492           gnome/applet/nm-gconf-wso-wpa-eap.h:  Add WPA Enterprise Gconf
12493           serialization and deserialization.
12494         * gnome/applet/nm-gconf-wso-wpa-psk.c, gnome/applet/nm-gconf-wso.c,
12495           gnome/applet/wireless-security-option.c, gnome/applet/wso-wpa-psk.c,
12496           gnome/applet/wso-wpa-psk.h: Clean up, support new defines.
12497         * gnome/applet/wireless-applet.glade: Add UI for configurating security
12498           settings related to WPA Enterprise.
12499         * gnome/applet/wireless-security-manager.c: Invoke wso_wpa_eap_new() to
12500           instantiate WPA Enterprise wireless-security-option.
12501         * gnome/applet/wso-wpa-eap.c, gnome/applet/wso-wpa-eap.h: New files.
12502           Implement WPA Enterprise wireless-security-option object.
12503         * include/NetworkManager.h: Add new NM_AUTH_TYPE_* and NM_EAP_METHOD_*
12504           defines.  Cleanup.
12505         * libnm-util/cipher-wpa-psk-hex.c,
12506           libnm-util/cipher-wpa-psk-passphrase.c: Cleanup.
12507         * libnm-util/dbus-helpers.c, libnm-util/dbus-helpers.h: Add
12508           nmu_security_serialize_wpa_eap() to serialize input to DBUS method,
12509           nmu_security_serialize_wpa_eap_with_cipher() to serialize input
12510           including the cipher to DBUS method, and
12511           nmu_security_deserialize_wpa_eap() to deserialize from DBUS return
12512           to output.
12513         * src/Makefile.am: Build the files nm-ap-security-wpa-eap.c and
12514           nm-ap-security-wpa-eap.h
12515         * src/NetworkManagerAP.c: Add NM_AUTH_TYPE_WPA_EAP to
12516           NM_802_11_CAP_KEY_MGMT_802_1X cipher to capability mapping.
12517         * src/nm-ap-security-wpa-eap.c, src/nm-ap-security-wpa-eap.h: New
12518           files.  Implement NMAPSecurityWPA_EAP object.
12519         * src/nm-ap-security-wpa-psk.c: Cleanup.
12520         * src/nm-ap-security.c: Support NM_AUTH_TYPE_EAP cipher and instantiate
12521           an NMAPSecurityWPA_EAP object via the method
12522           nm_ap_security_wpa_eap_new_deserialize().
12523         * src/nm-dbus-nm.c: Cleanup.
12524         * test/nm-tool.c: Display "Enterprise" for wireless networks providing
12525           WPA Enterprise support.
12526
12527 2006-02-24  Robert Love  <rml@novell.com>
12528
12529         Patch from Timo Hoenig <thoenig@suse.de>:
12530         * src/NetworkManagerDbus.c: Survive DBUS restarts like a champ.
12531
12532 2006-02-24  Robert Love  <rml@novell.com>
12533
12534         Patch from Dan Winship <danw@novell.com>:
12535         * gnome/applet/eggtrayicon.c: Update EggTrayIcon code.  Set the gdk
12536           area to transparent.
12537
12538 2006-02-21  Dan Williams  <dcbw@redhat.com>
12539
12540         * gnome/applet/applet.[ch]
12541           gnome/applet/applet-dbus.c
12542                 - Implement notification support for VPN messages too
12543
12544 2006-02-21  Dan Williams  <dcbw@redhat.com>
12545
12546         * gnome/applet/applet-dbus-info.c
12547                 - Clean up warning messages to not double-print the function
12548
12549 2006-02-21  Dan Williams  <dcbw@redhat.com>
12550
12551         * gnome/applet/applet-compat.c
12552                 - (convert_one_entry): accept entries without a key_type and
12553                         convert them to unencrypted networks
12554
12555 2006-02-21  Dan Williams  <dcbw@redhat.com>
12556
12557         * gnome/libnm_glib/libnm_glib.c
12558                 - Use __func__ everywhere we can
12559                 - Code cleanups
12560                 - Use dbus pending calls rather than blocking
12561                 - Reduce busywaits for our thread to start and stop
12562                         (gnome.org #330562)
12563                 - (libnm_glib_dbus_init): Use dbus_bus_get_private() so we don't
12564                         stomp on others using the default shared dbus connection.
12565                         Fixes #rh177546# and gnome.org #326572
12566
12567 2006-02-21  Dan Williams  <dcbw@redhat.com>
12568
12569         Patch from Rodney Dawes <dobey@novell.com>
12570         * configure.in
12571           gnome/applet/Makefile.am
12572           gnome/applet/applet.c
12573                 - Add libnotify support if '--enable-notify=yes' is passed
12574                   at configure time
12575
12576 2006-02-16  Kang Jeong-Hee  <keizie@gmail.com>
12577
12578         * configure.in (ALL_LINGUAS): ko added. (Korean)
12579
12580 2006-02-15  Robert Love  <rml@novell.com>
12581
12582         * src/nm-device-802-11-wireless.c: Use LOCALSTATEDIR preprocessor
12583           define, not an open-coded "/var", for WPA_SUPPLICANT_GLOBAL_SOCKET
12584           and WPA_SUPPLICANT_CONTROL_SOCKET.
12585         
12586 2006-02-15  Robert Love  <rml@novell.com>
12587
12588         * src/nm-device-802-11-wireless.c, src/nm-device.c: When printing debug
12589           information about what connection stage we are at, provide the total
12590           number of stages, e.g. "Stage 2 of 5", so users know how far along
12591           they are if they experience problems.
12592
12593 2006-02-15  Robert Love  <rml@novell.com>
12594
12595         * gnome/vpn-properties/Makefile.am: Define SYSCONFDIR preprocessor
12596           define to $sysconfdir.
12597         * gnome/vpn-properties/nm-vpn-properties.c: Make sure we hide the VPN
12598           editing dialog, vpn_edit_widget, which fixes a bug where editing one
12599           type of VPN and then editing another results in a mangled dialog
12600           box containing the widgets from both VPNs (fixes Novell #150854).
12601           Also, some misc. cleanup and use SYSCONFDIR not open coded directory.
12602
12603 2006-02-14  Robert Love  <rml@novell.com>
12604
12605         * src/NetworkManager.c: Call closelog() on daemon shutdown to close
12606           syslog's file descriptor.
12607
12608 2006-02-14  Robert Love  <rml@novell.com>
12609
12610         Fix bug around since the change to "deal with APs changing settings on
12611         us," checked in on the fifth of February in the year of the dog, 
12612         wherein connecting to non-broadcast encrypted networks always fails
12613         because nm_ap_get_encrypted() always returns FALSE, even when the user
12614         provided a key, because the newly-created fake AP does not have any
12615         capabilities set, which is a sypmtom of security settings not matching
12616         capabilities (Novell bug #150784):
12617         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Add new interface,
12618           nm_ap_add_capabilities_from_security(), which sets the given AP's
12619           capabilities off the given security settings.  Also improve our
12620           handling of capabilities w.r.t. NM_802_11_CAP_PROTO_NONE and
12621           NM_AUTH_CIPHER_AUTO.
12622         * src/nm-device-802-11-wireless.c: Call the function
12623           nm_ap_add_capabilities_from_security() to ensure that capabilities
12624           match newly updated security settings.
12625
12626 2006-02-14  Robert Love  <rml@novell.com>
12627
12628         * src/nm-device-802-11-wireless.c: Clean up nm_warning calls: Print the
12629           error as a string, not an integer, if possible; do not print the
12630           function name twice; always give the interface, if possible; misc.
12631           cleanup.
12632
12633 2006-02-12  Dan Williams  <dcbw@redhat.com>
12634
12635         Patch from Tom Parker <palfrey@tevp.net>
12636         * src/NetworkManagerSystem.h
12637                 - Remove prototype for nm_system_device_setup_static_ip4_config(),
12638                         no longer used
12639
12640         * src/backends/NetworkManagerDebian.c
12641                 - Remove some dead code (nm_system_device_setup_static_ip4_config) and
12642                         unused variables
12643
12644 2006-02-12  Dan Williams  <dcbw@redhat.com>
12645
12646         * vpn-daemons/openvpn/intltool-extract.in
12647           vpn-daemons/openvpn/intltool-merge.in
12648           vpn-daemons/openvpn/intltool-update.in
12649           vpn-daemons/pptp/intltool-extract.in
12650           vpn-daemons/pptp/intltool-merge.in
12651           vpn-daemons/pptp/intltool-update.in
12652                 - Remove from CVS, they should get created by intltoolize,
12653                         shouldn't they?
12654
12655 2006-02-12  Dan Williams  <dcbw@redhat.com>
12656
12657         * vpn-daemons/pptp/src/pppd/patchlevel.h
12658         * vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
12659                 - Rename VERSION -> PPPD_VERSION to avoid conflict with the
12660                         Makefile-defined VERSION
12661
12662 2006-02-09  Dan Williams  <dcbw@redhat.com>
12663
12664         Patch from: Vinay A R <rvinay@novell.com>
12665         * src/vpn-manager/nm-vpn-act-request.[ch]
12666                 - Added 'routes' and 'routes_count' to struct NMVPNActRequest since
12667                         IPSec VPNs require them for std gateway.
12668                 - (nm_vpn_act_request_new): takes arguments for 'user_routes'
12669                         and 'user_routes_count'
12670                 - (nm_vpn_act_request_get_user_routes): new function; gets user
12671                         defined routes  from NMVPNActRequest object, returns the string
12672                         array of routes.
12673
12674         * src/vpn-manager/nm-vpn-manager.[ch]
12675                 - (nm_vpn_manager_activate_vpn_connection): take additional arguments
12676                         for 'user_routes' and 'user_routes_count'
12677         
12678         * src/vpn-manager/nm-dbus-vpn.c
12679                 - (nm_dbus_vpn_activate_connection): gets 'user_routes' from
12680                         nm_dbus_vpn_get_routes() to pass to nm_vpn_manager_activate_vpn_connection()
12681         
12682         * src/vpn-manager/nm-vpn-service.c
12683                 - (nm_vpn_service_stage3_connect): pass user routes over dbus to
12684                         the vpn daemon
12685
12686         Modifications by Dan:
12687         * src/vpn-manager/nm-vpn-service.c
12688                 - (nm_vpn_service_stage3_connect): ensure that we don't pass NULL string
12689                         arrays into dbus
12690
12691         * vpn-daemons/vpnc/src/nm-vpnc-service.c
12692         * vpn-daemons/pptp/src/nm-pptp-service.c
12693         * vpn-daemons/openvpn/src/nm-openvpn-service.c
12694                 - Grab user routes from dbus message
12695                 - Free all string arrays we got from dbus
12696
12697 2006-02-07  Robert Love  <rml@novell.com>
12698
12699         Patch by Stefan Seyfried <seife@suse.de>:
12700         * libnm-util/cipher.c: Fix off-by-one error in cipher_bin2hexstr.
12701
12702 2006-02-06  Robert Love  <rml@novell.com>
12703
12704         * src/nm-device-802-11-wireless.c: Fix leak in supplicant_status_cb().
12705
12706 2006-02-06  Robert Love  <rml@novell.com>
12707
12708         * src/NetworkManagerUtils.c: kill_newline(): 'l' is unsigned so the
12709           test ">=" is never false.  If no newline is found, we loop forever.
12710           We can just check for ">" because the following if() will see the
12711           zero-th argument if the while() gets that far.
12712
12713 2006-02-05  Dan Williams  <dcbw@redhat.com>
12714
12715         Refine handling of non-broadcast networks.
12716
12717         * src/NetworkManagerAPList.c
12718                 - (nm_ap_list_merge_scanned_ap): unconditionally copy the 'broadcast'
12719                         property from scanned AP to the AP from the device list
12720
12721         * src/nm-device-802-11-wireless.c
12722                 - (supplicant_send_network_config): use ap_scan=1 for all networks
12723                         except non-SSID-broadcasting and Ad-Hoc networks.  Use
12724                         ap_scan=2 for those.  Also, don't set scan_ssid for Ad-Hoc
12725                         networks since those don't have APs.
12726                 - (add_new_ap_to_device_list): if there's no valid SSID, mark the
12727                         AP as non-SSID-broadcasting
12728                 - (process_scan_results): don't handle non-SSID-broadcasting here
12729
12730 2006-02-05  Dan Williams  <dcbw@redhat.com>
12731
12732         * src/nm-device-802-11-wireless.c
12733                 - (get_supplicant_timeout): new function; return
12734                         NM_SUPPLICANT_TIMEOUT * 2 for cards that support more than
12735                         14 channels.  These are likely a/b/g cards, like Atheros, and
12736                         slow as hell to scan.
12737                 - (supplicant_timeout_cb, supplicant_monitor_start): use
12738                         get_supplicant_timeout()
12739
12740 2006-02-05  Dan Williams  <dcbw@redhat.com>
12741
12742         * src/dhcp-manager/nm-dhcp-manager.c
12743                 - Loose a commit race with Robert; make sure size check
12744                         uses size of DHCP_SERVICE_LEN, not hardcoded 15
12745
12746 2006-02-05  Robert Love  <rml@novell.com>
12747
12748         Patch by Christoph Brill <chrisbrill@gmx.net>:
12749         * src/dhcp-manager/nm-dhcp-manager.c: Replace two open coded defines
12750           with DHCP_SERVICE_NAME.
12751
12752 2006-02-05  Dan Williams  <dcbw@redhat.com>
12753
12754         Remove anything having to do with device_setup_func from the
12755         AP security objects, since it's no longer used.
12756
12757         * src/nm-ap-security.h
12758                 - Kill device_setup_func and nm_ap_security_device_setup()
12759
12760         * src/nm-ap-security-wep.c
12761           src/nm-ap-security-wpa-psk.c
12762                 - (real_device_setup): remove
12763
12764         * src/nm-ap-security.c
12765                 - (real_device_setup): remove
12766                 - (nm_ap_security_device_setup): remove
12767
12768         * src/nm-device-802-11-wireless.[ch]
12769                 - (nm_device_802_11_wireless_set_wep_enc_key): make static
12770                 - (set_wireless_config, wireless_configure_adhoc): remove; unused
12771                         and done by wpa_supplicant now anyway
12772
12773 2006-02-05  Dan Williams  <dcbw@redhat.com>
12774
12775         * src/nm-device-802-11-wireless.c
12776                 - (ap_need_key, real_act_stage2_config): deal with APs changing
12777                         settings on us.  Previously NM would loop asking for the
12778                         key but getting the same one back.  Now, if the NMI-supplied
12779                         cipher doesn't overlap with the scanned AP capabilities,
12780                         we request a completely new key from the user.
12781
12782 2006-02-05  Dan Williams  <dcbw@redhat.com>
12783
12784         * src/NetworkManagerUtils.c
12785                 - (nm_utils_supplicant_request_with_check, nm_utils_supplicant_request):
12786                         Handle newline killing better
12787
12788 2006-02-05  Dan Williams  <dcbw@redhat.com>
12789
12790         * gnome/applet/nm-gconf-wso.c
12791                 - (real_serialize_dbus): return TRUE, not 0.  Fixes serialization
12792                         of unencrypted access point security info.
12793
12794 2006-02-03  Robert Love  <rml@novell.com>
12795
12796         * src/NetworkManagerUtils.c: Even for debugging, we should not log the
12797           user's encryption key, so we print the err_msg_cmd not the command,
12798           if available.  So long as SUPPLICANT_DEBUG is default, this makes
12799           sense.
12800
12801 2006-02-03  Christopher Aillon  <caillon@redhat.com>
12802
12803         * initscript/RedHat/NetworkManagerDispatcher.in:
12804         * initscript/RedHat/NetworkManager.in: modify the pidfile location
12805         Patch from Dan Walsh <dwalsh@redhat.com>
12806
12807 2006-02-03  Robert Love  <rml@novell.com>
12808
12809         * dispatcher-daemon/NetworkManagerDispatcher.c,
12810           dispatcher-daemon/Makefile.am: Don't hardcode the location of /etc
12811           but use the sysconfdir.
12812
12813 2006-02-03  Robert Love  <rml@novell.com>
12814
12815         * src/nm-device-802-11-wireless.c, src/nm-device-802-11-wireless.h:
12816           Make nm_device_802_11_wireless_get_essid() return 'const char *' not
12817           'char *'.
12818         * src/nm-ip4-config.c, src/nm-ip4-config.h: Make the functions
12819           nm_ip4_config_get_hostname() and
12820           nm_ip4_config_get_nis_domain() return 'const char *' not 'char *'.
12821         * src/backends/NetworkManagerSuSE.c: Fix up for above.  Also, do not
12822           leak g_strdup() result.
12823
12824 2006-02-03  Robert Love  <rml@novell.com>
12825
12826         * src/NetworkManagerAP.c: In nm_ap_new(), default new networks to
12827           broadcast == TRUE.  Also, copy broadcast and artificial properties
12828           from source network to destination in nm_ap_copy().
12829         * src/nm-device-802-11-wireless.c: Don't set broadcast flag to TRUE,
12830           since we now default new networks to non-hidden.
12831
12832 2006-02-03  Dan Williams  <dcbw@redhat.com>
12833
12834         * gnome/applet/main.c
12835                 - (main): change the NEVER->ALWAYS so we start at the
12836                         beginning of the session, if being session-managed
12837
12838 2006-02-03  Dan Williams  <dcbw@redhat.com>
12839
12840         * gnome/applet/main.c
12841                 - (main): in a variation on Robert's patch, change
12842                         RESTART_IMMEDIATELY -> RESTART_NEVER.  Should do what
12843                         he wants.
12844
12845 2006-02-02  Robert Love  <rml@novell.com>
12846
12847         * src/Makefile.am: If we aren't going to create the run directory at,
12848           uh, run-time, create it during install.  Then users just doing
12849           'make install' are cool, too.  While we are here, create the
12850           dispatcher.d directory, too.
12851         * src/nm-device-802-11-wireless.c: Let the Makefile define and pass in
12852           the exact run directory.
12853         * Makefile.am: Install nm-applet.desktop.
12854
12855 2006-02-02  Robert Love  <rml@novell.com>
12856
12857         * src/NetworkManagerAP.c: Add 'broadcast' property to the NMAccessPoint
12858           structure, which denotes whether or not the AP is hidden.  This is a
12859           superset of 'artificial' -- we need 'broadcast' because a hidden AP
12860           can show up in the scan list.  Add nm_ap_get_broadcast() and
12861           nm_ap_set_broadcast() accessor interfaces.
12862         * src/NetworkManagerAP.h: Add prototypes for nm_ap_get_broadcast() and
12863           nm_ap_set_broadcast().
12864         * src/nm-dbus-net.c: Add new argument, boolean broadcast, to the
12865           "getProperties" method, which denotes whether or not the given
12866           network is hidden.
12867         * src/nm-device-802-11-wireless.c: Set broadcast to FALSE when creating
12868           an artificial network.  Set broadcast to TRUE when scanning returns
12869           an ESSID and FALSE when not.
12870         * gnome/applet/applet-dbus-devices.c: Retrieve 'broadcast' argument
12871           from "getProperties" method on a network.  Possible TODO is to
12872           somehow display this.
12873         * test/nm-tool.c: Display "Hidden" if the AP does not broadcast.
12874
12875 2006-02-02  Dan Williams  <dcbw@redhat.com>
12876
12877         * src/nm-device-802-11-wireless.c
12878                 - (supplicant_interface_init): don't try to create
12879                         /var/run/NetworkManager, since that should be done by
12880                         the distro package.  Causes problems for stuff like SELinux
12881
12882 2006-02-02  Robert Love  <rml@novell.com>
12883
12884         Patch by Sureshkumar T <tsureshkumar@novell.com>:
12885         * src/vpn-manager/nm-vpn-connection.c, src/NetworkManagerSystem.c:
12886           Check for and handle empty string for iface.
12887
12888 2006-02-01  Robert Love  <rml@novell.com>
12889
12890         * configure.in, man/nm-tool.1.in, man/Makefile.am: Add nm-tool(1)
12891           manpage.
12892
12893 2006-01-31  Dan Williams  <dcbw@redhat.com>
12894
12895         * nm-applet.desktop
12896                 - Add --sm-disable to Exec arguments, presuming that when
12897                         using autostart, we don't want session management
12898
12899 2006-01-31  Robert Love  <rml@novell.com>
12900
12901         * src/NetworkManagerAP.c: Add two new manufacturer default network
12902           names: linksys-a and linksys-g.  These are found (at least) on the
12903           Linksys WAP55AG, which does both 802.11a and 802.11b, each with their
12904           own ESSID.
12905
12906 2006-01-31  Robert Love  <rml@novell.com>
12907
12908         * src/NetworkManagerAP.c: Optimize the function
12909           nm_ap_has_manufacturer_default_essid().  I did not like its resulting
12910           machine code.  This is the first in a series of code tweaks aiming to
12911           generate better machine code and make NetworkManager all the better.
12912           Just kidding.  Who has time to go through the assembly generated for
12913           every function?  I certainly don't.  I have a wife, a kid, a job,
12914           a mortgage, a mistress.  But this function was so bad, I was called
12915           to arms.  Like the book.
12916
12917 2006-01-31  Robert Love  <rml@novell.com>
12918
12919         * src/nm-device-802-11-wireless.c: Set "scan_ssid 1" if the requested
12920           AP is not broadcasting, to scan with probe request frames.  Required
12921           for non-broadcast networks.
12922
12923 2006-01-31  Robert Love  <rml@novell.com>
12924
12925         * src/nm-device-802-11-wireless.c: Make the wpa_supplicant a
12926           preprocessor define (still 20s).  Fix message text in nm_info()
12927           s/too too/took too/.
12928
12929 2006-01-30  Dan Williams  <dcbw@redhat.com>
12930
12931         * src/nm-device-802-11-wireless.c
12932                 - (supplicant_monitor_start): increase connect/auth timeout to
12933                         20 seconds from 10 seconds
12934
12935 2006-01-30  Dan Williams  <dcbw@redhat.com>
12936
12937         * src/Makefile.am
12938                 - Define LOCALSTATEDIR
12939
12940         * src/nm-device-802-11-wireless.c
12941                 - (supplicant_exec): tell wpa_ctrl_open() to stick the local control
12942                         socket where we want it to
12943
12944         * src/wpa_ctrl.[ch]
12945                 - (wpa_ctrl_open): accept location to put local control socket
12946
12947 2006-01-30  Robert Love  <rml@novell.com>
12948
12949         * src/dhcp-manager/nm-dhcp-manager.c: Pass TRUE for ignore_error in
12950           get_ip4_string() for "domain_name".
12951
12952 2006-01-30  Robert Love  <rml@novell.com>
12953
12954         * gnome/applet/nm-gconf-wso-wpa-psk.c, gnome/applet/nm-gconf-wso.c,
12955           gnome/applet/wireless-security-option.c, include/NetworkManager.h,
12956           libnm-util/cipher-wpa-psk-hex.c, src/nm-ap-security-wpa-psk.c,
12957           libnm-util/cipher-wpa-psk-passphrase.c, src/nm-ap-security.c: Add
12958           support for "Automatic" pairwise and group cipher configuration by
12959           letting wpa_supplicant handle the details.  Add UI elements, new
12960           cipher type NM_AUTH_CIPHER_AUTO, and backend support.  Works like a
12961           charm.  Note this does more than add a nice feature, it fixes a bug.
12962           Apparently, some people have AP's where the pairwise cipher does not
12963           match the group cipher.  Insane, but true.
12964
12965 2006-01-30  Dan Williams  <dcbw@redhat.com>
12966
12967         * gnome/applet/applet-dbus-devices.c
12968                 - (nmwa_dbus_device_get_driver_cb, nmwa_dbus_device_get_driver): new
12969                         functions, grab device driver name from NetworkManager
12970                 - (nmwa_dbus_device_properties_cb): call functions to get driver
12971
12972         * gnome/applet/applet.c
12973                 - (nmwa_update_info): show driver name in Connection Information
12974                         dialog
12975
12976         * gnome/applet/nm-device.[ch]
12977                 - (network_device_get_driver, network_device_set_driver): add
12978                         accessors for driver name
12979
12980         * gnome/applet/wireless-applet.glade
12981                 - Add line for driver name to Connection Information dialog
12982
12983         * src/nm-dbus-device.c
12984                 - (nm_dbus_device_get_driver): new function to return driver name
12985                 - (nm_dbus_device_methods): hook up driver name function to dbus
12986
12987         * test/nm-tool.c
12988                 - (get_driver_name): new function
12989                 - (detail_device): grab and show driver name
12990
12991 2006-01-30  Robert Love  <rml@novell.com>
12992
12993         * gnome/applet/applet.c: Apparently gtk_message_dialog_new_with_markup
12994           does not parse the markup if it is not part of the format.
12995
12996 2006-01-30  Robert Love  <rml@novell.com>
12997
12998         * gnome/applet/passphrase-dialog.c: If wsm_set_capabilities() returns
12999           FALSE, we have no security options for this dialog, so we throw up
13000           an error dialog instead of a broken passphrase dialog.  Fixes
13001           Novell #138404.
13002         * gnome/applet/wireless-security-manager.c,
13003           gnome/applet/wireless-security-manager.h: If wsm_set_capabilities()
13004           does not add any security options, not even NONE, print a warning
13005           and return FALSE.  This let's functions constructing a dialog bail
13006           out if the device's capabilities and the network's requirements have
13007           zero overlap.
13008
13009 2006-01-27  Robert Love  <rml@novell.com>
13010
13011         * configure.in: Require wpa_supplicant.  Detect location of binary and
13012           use it.  Override with "--with-wpa_supplicant=foo".
13013         * src/Makefile.am, src/nm-device-802-11-wireless.c: Do not hardcode the
13014           path to wpa_supplicant but use the auto-detected or user-provided
13015           value from configure.
13016
13017 2006-01-27  Robert Love  <rml@novell.com>
13018
13019         * src/backends/NetworkManagerSuSE.c: If DHCLIENT_SET_HOSTNAME is set
13020           but the DHCP server did not return a hostname, try to look up our
13021           name via DNS and set the system hostname to that.
13022
13023 2006-01-27  Dan Williams  <dcbw@redhat.com>
13024
13025         * src/backends/NetworkManagerRedHat.c
13026                 - Add NM_CONTROLLED system network script support for RH/Fedora
13027
13028 2006-01-27  Dan Williams  <dcbw@redhat.com>
13029
13030         * src/backends/NetworkManagerGentoo.c
13031                 - (nm_system_device_get_disabled): add missing function.
13032                         Gnome BZ #328780
13033
13034 2006-01-27  Clytie Siddall <clytie@riverland.net.au>
13035
13036         * configure.in: Added vi in ALL_LINGUAS line.
13037         
13038 2006-01-26  Robert Love  <rml@novell.com>
13039
13040         * src/Makefile.am, src/kernel-types.h: Now that two different source
13041           files are feeling the crack-addled leakage of kernel types such as
13042           u32 and s8 -- superior to __u64 and __u8, to be sure, but not valid
13043           types in user-space -- define a header and include it as needed.
13044         * src/nm-device-802-3-ethernet.c: Include kernel-types.h
13045         * src/nm-device-802-3-ethernet.h: Remove defines.
13046         * src/wpa.c: Remove defines and include kernel-types.h.
13047
13048 2006-01-26  Robert Love  <rml@novell.com>
13049
13050         * TODO: Update.  WPA support is in the bag and HAL restarts (should)
13051           work.
13052
13053 2006-01-26  Robert Love  <rml@novell.com>
13054
13055         * configure.in: Change '-Wno-unused' to '-Wno-unused-parameter'
13056         * gnome/applet/applet-compat.c, gnome/applet/applet-dbus-devices.c,
13057           gnome/applet/applet-dbus-info.c, gnome/applet/applet-dbus.c,
13058           gnome/applet/applet.c, gnome/applet/applet.h, src/nm-dbus-device.c,
13059           gnome/applet/nm-gconf-wso-wep.c, gnome/applet/nm-gconf-wso-wpa-psk.c,
13060           gnome/applet/nm-gconf-wso.c, gnome/applet/nm-gconf-wso.h,
13061           gnome/applet/other-network-dialog.c, src/nm-device.c, test/nm-tool.c,
13062           gnome/applet/passphrase-dialog.c, src/nm-device-802-11-wireless.c,
13063           gnome/applet/wireless-security-manager.c, src/nm-ip4-config.c,
13064           gnome/applet/wireless-security-option.c, src/nm-ap-security.c,
13065           gnome/applet/wso-wep-ascii.c, gnome/applet/wso-wep-hex.c,
13066           gnome/applet/wso-wep-passphrase.c, gnome/applet/wso-wpa-psk.c,
13067           libnm-util/dbus-helpers.c, src/NetworkManagerAP.c, src/nm-dbus-nmi.c,
13068           src/NetworkManagerSystem.c, src/nm-ap-security-wep.c,
13069           src/nm-device-802-11-wireless.h, test/libnm-util/test-ciphers.c,
13070           src/named-manager/nm-named-manager.c, test/test-common/test-common.c:
13071           Kill unused variables, labels, and static functions.  Don't pass
13072           string literals as the format string for printf-like functions.
13073
13074 2006-01-25  Dan Williams  <dcbw@redhat.com>
13075
13076         * gnome/applet/wireless-applet.glade
13077                 - Remove WPA2 Checkbox
13078
13079         * gnome/applet/wireless-security-manager.c
13080                 - (wsm_set_capabilities): split up sections for wpa and wpa2.
13081                         This means the Wireless Security menu now has two WPA options,
13082                         one for "WPA Personal" and one for "WPA2 Personal"
13083
13084         * gnome/applet/wso-wpa-psk.[ch]
13085                 - (wso_wpa_psk_new): remove stuff for WPA2 checkbox, and use
13086                         'wpa2' argument to determine WPA version to use
13087                 - (append_dbus_params_func): pass stored WPA version to cipher
13088                         rather than using the (removed) checkbox
13089
13090 2006-01-24  Robert Love  <rml@novell.com>
13091
13092         * src/dhcp-manager/nm-dhcp-manager.c: Null-out the original byte array
13093           before we g_strdup(), not the ultimate string.
13094
13095 2006-01-23  Dan Williams  <dcbw@redhat.com>
13096
13097         * src/NetworkManagerAP.[ch]
13098                 - (nm_ap_new_from_ap): copy original essid too
13099                 - (nm_ap_unref): free original essid
13100                 - (nm_ap_get_orig_essid): new function
13101                 - (nm_ap_set_essid): Convert essid to UTF-8 for display and dbus,
13102                         but keep original essid around too
13103
13104         * src/nm-device-802-11-wireless.c
13105                 - (supplicant_send_network_config): send wpa_supplicant the
13106                         _original_ essid, and not as a string, but in hex.  Should
13107                         allow us to connect to more APs that use wierd character
13108                         encodings for their essids
13109
13110         * utils/nm-utils.[ch]
13111                 - (nm_utils_essid_to_utf8): make a best-effort to convert the essid
13112                         to UTF-8.  If it's not already valid UTF-8, we check LANG and
13113                         use the current locale as a hint for what encoding the essid
13114                         might be in.  Obviously not 100% accurate, but the idea here is
13115                         that if a user's locale is ex. ja_JP, they are more likely than
13116                         not to be in Japan, where access points will likely be in some
13117                         Japanese encoding.
13118
13119 2006-01-23  Dan Williams  <dcbw@redhat.com>
13120
13121         * libnm-util/cipher-private.h
13122           libnm-util/cipher.c
13123           libnm-util/cipher.h
13124                 - (cipher_bin2hexstr, cipher_hexstr2bin): make public
13125
13126 2006-01-23  Robert Love  <rml@novell.com>
13127
13128         Patch by Timo Hoenig <thoenig@suse.de>:
13129         * dhcp-manager/nm-dhcp-manager.c, nm-device.c, nm-ip4-config.c,
13130           nm-ip4-config.h, NetworkManagerSystem.h: Save the hostname reported
13131           by DHCP and pass it to the backends, allowing distribution-specific
13132           behavior with respect to the DHCP-supplied hostname (if nothing else,
13133           some distributions might not want to set the hostname).
13134         * backends/NetworkManagerSuSE.c: Set the hostname if the variable
13135           DHCLIENT_SET_HOSTNAME is set to "yes" in /etc/sysconfig/network/dhcp.
13136           Also update our NIS behavior.
13137         * backends/NetworkManagerDebian.c, backends/NetworkManagerGentoo.c,
13138           backends/NetworkManagerRedHat.c, backends/NetworkManagerSlackware.c:
13139           Add stub functions.
13140
13141 2006-01-23  Robert Love  <rml@novell.com>
13142
13143         * Makefile.am, nm-applet.desktop: Add autostart .desktop file, now that
13144           gnome-session does autostart.  TODO: We need to install this to
13145           $prefix/share/autostart/.
13146
13147 2006-01-22  Dan Williams  <dcbw@redhat.com>
13148
13149         * src/NetworkManagerAP.[ch]
13150           src/nm-dbus-nmi.c
13151           src/nm-device-802-11-wireless.c         
13152                 - Make nm_ap_get_essid return "const char *"
13153
13154 2006-01-22  Dan Williams  <dcbw@redhat.com>
13155
13156         * src/NetworkManagerAP.[ch]
13157                 - (nm_ap_get_matched, nm_ap_set_matched): remove
13158
13159         * src/NetworkManagerAPList.[ch]
13160                 - (nm_ap_list_diff): removed
13161                 - (nm_ap_list_merge_scanned_ap): move AP dbus signal logic here,
13162                         deal with access points changing essids on us
13163
13164         * src/nm-device-802-11-wireless.c
13165                 - (add_new_ap_to_device_list): move AP dbus signal logic to
13166                         src/NetworkManagerAPList.c
13167                 - (real_can_interrupt_activation): new function; allow interruption
13168                         of device activation if we are waiting for a network key
13169
13170         * src/NetworkManagerPolicy.c
13171                 - (nm_policy_device_change_check): allow interruption of currently
13172                         activating devices if the device allows it.  Previous behavior
13173                         would refuse to activate a just-plugged wired device if a
13174                         wireless device was waiting for a key.
13175
13176         * src/nm-device.[ch]
13177                 - (nm_device_can_interrupt_activation): new function; ask devices
13178                         whether their activation can be interrupted
13179
13180 2006-01-20  Robert Love  <rml@novell.com>
13181
13182         * Makefile.am, configure.in: Add new man subdirectory.
13183         * man, man/NetworkManager.1.in, man/NetworkManagerDispatcher.1.in,
13184           man/Makefile.am: Add man pages for NetworkManager and its
13185           crime-solving bumbling buddy, NetworkManagerDispatcher.
13186         * man/.cvsignore: Add.
13187         * initscript/Debian/NetworkManager,
13188           initscript/Gentoo/NetworkManager.in,
13189           initscript/RedHat/NetworkManager.in,
13190           initscript/RedHat/NetworkManagerDispatcher.in,
13191           initscript/SUSE/networkmanager-dispatcher.in,
13192           initscript/SUSE/networkmanager.in: Update for /usr/sbin not /usr/bin.
13193
13194 2006-01-20  Robert Love  <rml@novell.com>
13195
13196         * src/NetworkManagerDbus.c: Fail if NM's DBUS service is already taken,
13197           instead of queuing.  This prevents the running of multiple NM
13198           daemons concurrently, which does not work whatsoever and results in
13199           neither daemon working correctly.  Also, we don't handle queuing and
13200           name-owner-changes, anyhow.
13201
13202 2006-01-20  Robert Love  <rml@novell.com>
13203
13204         * src/Makefile.am: Install the NetworkManager daemon to sbin, not bin.
13205         * dispatcher/Makefile.am: Install the NetworkManagerDispatcher daemon
13206           to sbin, not bin.
13207
13208 2006-01-19  Robert Love  <rml@novell.com>
13209
13210         * configure.in: Require hal 0.5.0 or later.
13211
13212 2006-01-18  Robert Love  <rml@novell.com>
13213
13214         * src/NetworkManager.c, src/NetworkManagerSystem.h, src/nm-device.c:
13215           Allow backends to flag a device (in whatever distro-dependent way
13216           they so desire) as disabled.  NM will ignore any such device.
13217         * src/backends/NetworkManagerDebian.c,
13218           src/backends/NetworkManagerRedHat.c,
13219           src/backends/NetworkManagerSlackware.c: Add stub function
13220           nm_system_device_get_disabled() that always returns FALSE (enabled).
13221         * src/backends/NetworkManagerSuSE.c: Add system_disabled field to the
13222           SUSE-specific configuration structure.  Fill it in from the
13223           NM_CONTROLLED variable in the system networking scripts.  If this var
13224           exists and is "no", we ignore the device.
13225
13226 2006-01-17  Robert Love  <rml@novell.com>
13227
13228         * configure.in: Remove 'no' language.  Replaced by 'nb', which is
13229           identical for NM.  For a full discussion, see the thread at
13230           http://mail.gnome.org/archives/gnome-i18n/2004-August/msg00006.html.
13231
13232 2006-01-17  Dan Williams  <dcbw@redhat.com>
13233
13234         * src/nm-device.c
13235                 - (nm_device_class_init): connect a default act_stage4_ip_config_timeout
13236                         function.  Fixes crash when wired DHCP fails.
13237
13238 2006-01-16  Robert Love  <rml@novell.com>
13239
13240         * src/Makefile.am: Don't install NMLoadModules
13241         * src/NMLoadModules, test/NMLoadModules: Move the NMLoadModules script
13242           from src/ to test/ as no one uses it anymore.  Note that I would be
13243           fine with removing it altogether.
13244
13245 2006-01-16  Robert Love  <rml@novell.com>
13246
13247         * gnome/applet/eggtrayicon.c, src/nm-device.c, src/nm-ap-security.c,
13248           gnome/applet/nm-gconf-wso-wep.c, gnome/applet/nm-gconf-wso-wpa-psk.c,
13249           gnome/applet/nm-gconf-wso.c, src/nm-device-802-3-ethernet.c,
13250           gnome/vpn-properties/nm-vpn-properties.c, src/nm-ap-security-wep.c,
13251           src/nm-ap-security-wpa-psk.c, src/nm-device-802-11-wireless.c,
13252           src/nm-netlink-monitor.c: Don't miss any initializers on structure
13253           declarations, ever.
13254         * gnome/applet/applet.c: Remove useless check (NMState is unsigned and
13255           NM_STATE_DISCONNECTED is zero).
13256
13257 2006-01-16  Robert Love  <rml@novell.com>
13258
13259         * src/nm-device-802-11-wireless.c: argv[3], not argv[4].  Fix
13260           uninitialized parameter and buffer overflow.  Novell #143496.
13261
13262 2006-01-16  Dan Williams  <dcbw@redhat.com>
13263
13264         Apply the PtP Address bits of a patch from Tim Niemueller
13265
13266         * src/nm-ip4-config.[ch]
13267                 - Add ip4_ptp_address member to object
13268                 - (nm_ip4_config_copy): copy ptp address too
13269                 - (nm_ip4_config_get_ptp_address, nm_ip4_config_set_ptp_address):
13270                         new functions
13271                 - (nm_ip4_config_to_rtnl_addr): use ptp address when asked to,
13272                         rather than local tunnel ip address
13273
13274         * src/vpn-manager/nm-vpn-service.c
13275                 - (print_vpn_config): update for PtP address
13276                 - (nm_vpn_service_stage4_ip_config_get): switch parsing to
13277                         DBusMessageIters in preparation for getting routes from the VPN
13278                         service daemons too
13279
13280         * vpn-daemons/openvpn/src/nm-openvpn-service-openvpn-helper.c
13281                 - (send_config_info): update for PtP address, clean up code
13282                 - (main): update for PtP address, clean up code, fix typo
13283
13284         * vpn-daemons/openvpn/src/nm-openvpn-service.c
13285                 - (nm_openvpn_dbus_process_helper_ip4_config): update for PtP address
13286
13287         * vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
13288                 - (pptp_ip_up): update for PtP address
13289
13290         * vpn-daemons/pptp/src/nm-pptp-service.c
13291                 - (nm_pptp_dbus_process_helper_ip4_config): update for PtP address
13292
13293         * vpn-daemons/vpnc/src/nm-vpnc-service.c
13294                 - (print_vpn_config): update for PtP address
13295                 - (nm_vpnc_dbus_process_helper_ip4_config): update for PtP address
13296
13297 2006-01-16  Dan Williams  <dcbw@redhat.com>
13298
13299         * gnome/applet/applet.c
13300                 - (nmwa_add_networks_helper): don't indicate an active network
13301                         if NM is disconnected or asleep
13302
13303 2006-01-16  Dan Williams  <dcbw@redhat.com>
13304
13305         * src/NetworkManagerPolicy.c
13306                 - (nm_policy_device_change_check): switch devices if we lose the link
13307                         on an ethernet device. 
13308
13309 2006-01-16  Dan Williams  <dcbw@redhat.com>
13310
13311         * gnome/applet/wso-wpa-psk-hex.[ch]
13312                 - Renamed -> wso-wpa-psk.[ch]
13313
13314         * gnome/applet/wso-wpa-psk.[ch]
13315                 - New files
13316
13317         * gnome/applet/wso-wpa-psk-passphrase.[ch]
13318                 - Removed, rolled into wso-wpa-psk.[ch]
13319
13320         * gnome/applet/Makefile.am
13321                 - Updated for above changes
13322
13323         * gnome/applet/wireless-applet.glade
13324                 - Consolidate WPA-PSK options into one notebook
13325                         widget, and make dialogs invisible by default
13326                         to fix screen oddities
13327
13328         * gnome/applet/wireless-security-manager.c
13329                 - (wsm_set_capabilities): create the new wpa-psk widget rather
13330                         than both the old hex & passphrase ones
13331
13332 2006-01-16  Dan Williams  <dcbw@redhat.com>
13333
13334         * gnome/applet/other-network-dialog.c
13335                 - (nmwa_ond_init): Change text to refer to "name" rather than "ESSID"
13336
13337 2006-01-16  Dan Williams  <dcbw@redhat.com>
13338
13339         * gnome/applet/applet.c
13340                 - (nmwa_show_vpn_login_banner_dialog, nmwa_show_vpn_failure_dialog,
13341                    nmwa_driver_notify, show_warning_dialog): fix up focus-stealing
13342                         prevention to realize window before trying to get server
13343                         time
13344
13345         * gnome/applet/other-network-dialog.c
13346                 - (nmwa_other_network_dialog_run): fix up focus-stealing
13347                         prevention to realize window before trying to get server
13348                         time
13349
13350         * gnome/applet/passphrase-dialog.c
13351                 - (nmi_passphrase_dialog_new): fix up focus-stealing
13352                         prevention to realize window before trying to get server
13353                         time
13354
13355 2006-01-16  Robert Love  <rml@novell.com>
13356
13357         Patch from Timo Hoenig  <thoenig@suse.de:
13358         * libnm-util/cipher-wep-ascii.h, libnm-util/cipher-wep-hex.h,
13359           libnm-util/cipher-wep-passphrase.h, libnm-util/cipher-wpa-psk-hex.h,
13360           libnm-util/cipher-wpa-psk-passphrase.h, libnm-util/cipher.h,
13361           libnm-util/dbus-helpers.h: add checks whether headers are used
13362           within a C++ build.
13363
13364 2006-01-16  Dan Williams  <dcbw@redhat.com>
13365
13366         * gnome/applet/wireless-security-option.c
13367                 - (wso_wpa_create_key_type_model): clarify AES-CCMP algorithm name
13368
13369 2006-01-16  Dan Williams  <dcbw@redhat.com>
13370
13371         * libnm-util/cipher-wpa-psk-passphrase.c
13372                 - (cipher_wpa_psk_passphrase_new): correct passphrase length, should
13373                         be 8 - 63 characters inclusive
13374
13375 2006-01-16  Dan Williams  <dcbw@redhat.com>
13376
13377         * src/nm-dbus-nm.c
13378                 - (nm_dbus_nm_sleep): bring device down after quick deactivation
13379
13380 2006-01-13  Robert Love  <rml@novell.com>
13381
13382         Patch by T Sureshkumar <tsureshkuman@novell.com>:
13383         * src/NetworkManagerSystem.c: Don't assert iface != NULL, allowing VPN
13384           modules that do not use an interface.
13385
13386 2006-01-13  Dan Williams  <dcbw@redhat.com>
13387
13388         * src/nm-device.c
13389           src/nm-device.h
13390                 - Allow subclasses to implement deactivate_quickly()
13391                 - (nm_device_deactivate_quickly): call subclass
13392                         deactivate_quickly() methods
13393                 - (nm_device_set_active_link): small cleanups, and don't
13394                         deactivate the device right away because we risk a deadlock
13395                         when called from device thread, waiting for the device
13396                         thread to cancel activation
13397
13398         * src/nm-device-802-11-wireless.c
13399                 - (real_deactivate_quickly): new function
13400                 - (nm_device_802_11_wireless_class_init): hook in real_deactivate_quickly
13401                 - (real_deactivate): move supplicant cleanup to real_deactivate_quickly
13402                         so that we kill the supplicant when we sleep too
13403                 - (supplicant_interface_init): work around naive naming attempts of
13404                         wpa_ctrl when naming sockets
13405
13406 2006-01-13  Dan Williams  <dcbw@redhat.com>
13407
13408         * src/nm-device-802-11-wireless.c
13409                 - (supplicant_cleanup): delete old device control sockets too
13410                 - (supplicant_get_device_socket_path): new function to consolidate
13411                         locations that need a path to a device's control socket
13412
13413 2006-01-12  Robert Love  <rml@novell.com>
13414
13415         * src/backends/NetworkManagerSuSE.c: Put the ppp device in the
13416           description so that the description is unique for each
13417           pair (device,provider).  Fixes Novell #142773.
13418
13419 2006-01-12  Dan Williams  <dcbw@redhat.com>
13420
13421         * src/nm-device-802-11-wireless.c
13422                 - (supplicant_exec): ensure GError is correctly initialized
13423                         Reported by Diego González (gnome.org #326708)
13424
13425 2006-01-11  Robert Love  <rml@novell.com>
13426
13427         * src/nm-device-802-3-ethernet.c: In case local copies of glibc do not
13428           define if_mii(), open code the same results, and do so without any
13429           type punning.
13430
13431 2006-01-11  Robert Love  <rml@novell.com>
13432
13433         * gnome/applet/wireless-security-manager.c: Fix crash by not asserting
13434           that wso_foo_new() returned non-NULL.  Instead, only append the new
13435           wso to wsm->options if the wso is non-NULL.  The crux is that we
13436           assume that the relevant key types are implied by WEP and WPA as
13437           appropriate.  To be sure, they should be, but we should not expect
13438           drivers to not be oozing piles of wolf fecal matter.
13439
13440 2006-01-11  Robert Love  <rml@novell.com>
13441
13442         * configure.in: Add the gcc flags '-Wshadow' and '-Wfloat-equal'.
13443         * gnome/applet/applet.c, gnome/vpn-properties/nm-vpn-properties.c,
13444           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
13445           src/NetworkManagerPolicy.c, src/NetworkManagerSystem.c,
13446           src/nm-dbus-device.c, src/nm-device-802-3-ethernet.c,
13447           src/nm-ip4-config.c, src/vpn-manager/nm-vpn-manager.c,
13448           test/nmtestdevices.c: Fix shadowed variable usage as appropriate.
13449         * src/nm-device-802-11-wireless.c: Fix floating point comparison by
13450           comparing values within DBL_EPSILON.  Also fix shadowed variable
13451           usage.
13452
13453 2006-01-11  Dan Williams  <dcbw@redhat.com>
13454
13455         Add options for WPA2 and WPA1+CCMP (AES).
13456
13457         * gnome/applet/wireless-applet.glade
13458                 - Add UI bits for WPA+CCMP
13459
13460         * gnome/applet/other-network-dialog.c
13461                 - (nmwa_ond_init): pass capabilities into the WirelessSecurityManager,
13462                         and don't allow creation of WPA2 Ad-Hoc networks since
13463                         wpa_supplicant doesn't support them
13464
13465         * gnome/applet/wireless-security-manager.c
13466                 - (wsm_set_capabilities): Add WPA2 options, and pass capability
13467                         on to the specific wireless security option being created
13468
13469         * gnome/applet/wireless-security-option.[ch]
13470                 - (wso_wpa_create_key_type_model): new utility function to create
13471                         the model required for WPA Key Type combo box
13472
13473         * gnome/applet/wso-private.h
13474           gnome/applet/wireless-security-option.h
13475                 - Move private function prototypes into wso-private.h
13476
13477         * gnome/applet/wso-wpa-psk-hex.[ch]
13478           gnome/applet/wso-wpa-psk-passphrase.[ch]
13479                 - (append_dbus_params_func): get WPA version from checkbox and pass
13480                         it to the dbus serialization helper
13481                 - (key_type_combo_changed_cb): Set the cipher's WE Cipher when the
13482                         key type combo changes
13483                 - (wso_wpa_psk_hex_new): set up the key type combo with the correct
13484                         model and options
13485
13486         * libnm-util/cipher-wpa-psk-hex.c
13487           libnm-util/cipher-wpa-psk-passphrase.c
13488                 - (cipher_wpa_psk_hex_set_we_cipher, cipher_wpa_psk_passphrase_set_we_cipher):
13489                         new function; allow the cipher to be changed after object creation
13490
13491         * src/nm-ap-security-wpa-psk.c
13492                 - (set_description): Do WPA2 descriptions too
13493
13494         * src/nm-ap-security.c
13495                 - (nm_ap_security_new_from_ap): allow CCMP with WPA1 too
13496
13497 2006-01-11  Robert Love  <rml@novell.com>
13498
13499         * src/nm-device-802-3-ethernet.c: Use the if_mii() inline function that
13500           is defined in <linux/mii.h> to return the mii_ioctl_data structure
13501           from the ifreq structure in lieu of an open coded solution.  Removes
13502           a life-threatening type-punning.
13503         * configure.in: Remove '-Wno-strict-aliasing' as we no longer pun any
13504           types, ever, whatsoever, baby.
13505
13506 2006-01-11  Robert Love  <rml@novell.com>
13507
13508         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet-dbus.c,
13509           gnome/applet/applet.c, gnome/applet/applet.h: Consolidating
13510           assignments to applet->nm_state into a new nmwa_set_state() function
13511           for both cleanliness and to help debugging.
13512
13513 2006-01-10  Robert Love  <rml@novell.com>
13514
13515         * src/autoip.c: Fix FIXME.  In performing the link-local zeroconf IP
13516           assignment dance, we want to sleep between PROBE_MIN and PROBE_MAX
13517           seconds, exclusive.  That is, we want to sleep x seconds such that
13518           1 < x < 2.
13519
13520 2006-01-10  Robert Love  <rml@novell.com>
13521
13522         * gnome/applet/applet-dbus-info.c: Remove FIXME, we do not have to free
13523           the attr fields according to the example in the email available at
13524           mail.gnome.org/archives/desktop-devel-list/2004-May/msg00230.html.
13525           Conversely, we do have to free 'name', so we do so, fixing a leak.
13526
13527 2006-01-10  Robert Love  <rml@novell.com>
13528
13529         * src/nm-device-802-11-wireless.c, src/nm-device-802-3-ethernet.c: Make
13530           sure that we close the socket!
13531
13532 2006-01-10  Robert Love  <rml@novell.com>
13533
13534         * src/nm-device-802-11-wireless.c, src/nm-device-802-11-wireless.h,
13535           src/nm-device-802-3-ethernet.c, src/nm-device-802-3-ethernet.h,
13536           src/nm-device.c: Fix a FIXME!  Reimplement the function
13537           nm_device_update_hw_address() in device subclass variants,
13538           nm_device_802_3_ethernet_set_address() and
13539           nm_device_802_11_wireless_set_address(), hook them up, and use them.
13540           This fixes the existing bug where MAC addresses are all zeros.
13541
13542 2006-01-10  Robert Love  <rml@novell.com>
13543
13544         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet-dbus.h,
13545           gnome/applet/applet.c, gnome/applet/applet.h: Add 'Enable Networking'
13546           option to give users ability to globally disconnect and put NM to
13547           sleep.  This is useful as a 'lockdown mode' for flying, security, and
13548           clean disconnect.
13549
13550 2006-01-09  Robert Love  <rml@novell.com>
13551
13552         * src/nm-device-802-3-ethernet.h:  The kernel headers <linux/mii.h> and
13553           <linux/ethtool.h> leak the kernel-only types u16, u32, et al.
13554           User-space does not supply these types, so we have to define them
13555           ourselves.  The relevant kernel maintainer refused to accept a patch
13556           switching these headers to the proper C99 types.
13557
13558 2006-01-09  Dan Williams  <dcbw@redhat.com>
13559
13560         Apply Robert's 'tray icon redo' patch with fixes
13561         * gnome/applet/applet.c
13562           gnome/applet/applet.h
13563                 - Instead of using a menu bar + menu item, simulate menu
13564                         behavior using a popup menu.  Highlight the area around
13565                         the icon more like a menu too, by playing with the
13566                         applet's size requisition
13567
13568 2006-01-09  Timo Hoenig   <thoenig@suse.de>
13569         * libnm-util/dbus-helpers.c
13570           libnm-util/dbus-helpers.h
13571                 - (nmu_create_dbus_error_message): rename parameter 'namespace'
13572                         to 'exception_namespace' (:namespace is a keyword in
13573                         C++)
13574
13575 2006-01-09  Dan Williams  <dcbw@redhat.com>
13576
13577         * src/NetworkManagerPolicy.c
13578                 - (nm_policy_device_change_check): don't autoswitch away from
13579                         Ad-Hoc networks, since there's really no concept of
13580                         "link"
13581
13582         * src/nm-dbus-nm.c
13583                 - (nm_dbus_nm_create_wireless_network): mark created networks
13584                         as Ad-Hoc networks
13585
13586         * src/nm-device-802-11-wireless.c
13587                 - (real_activation_success_handler): add user-created Ad-Hoc
13588                         networks to the device's scan list
13589
13590 2006-01-08  Dan Williams  <dcbw@redhat.com>
13591
13592         We now require a patch for wpa_supplicant to support Ad-Hoc
13593         networks:
13594           http://people.redhat.com/dcbw/wpa_supplicant-ctrl-iface-ap-scan.patch
13595
13596         * src/nm-device-802-11-wireless.c
13597                 - (supplicant_send_network_config): turn off wpa_supplicant's
13598                         scanning.  Fixes Ad-Hoc networks.
13599
13600 2006-01-08  Dan Williams  <dcbw@redhat.com>
13601
13602         * src/nm-ap-security.c
13603           src/nm-ap-security.h
13604                 - Add a user_created argument to the write_supplicant_config
13605                         functions
13606
13607         * src/nm-ap-security-wep.c
13608           src/nm-ap-security-wpa-psk.c
13609           src/nm-device-802-11-wireless.c
13610                 - Make Ad-Hoc mode somewhat work, at least write the
13611                         correct options to wpa_supplicant
13612
13613 2006-01-08  Dan Williams  <dcbw@redhat.com>
13614
13615         * src/nm-device-802-11-wireless.c
13616                 - Remove unused code from the old device activation path
13617
13618 2006-01-08  Dan Williams  <dcbw@redhat.com>
13619
13620         * libnm-util/dbus-helpers.c
13621                 - (nmu_security_serialize_wpa_psk): pass a blank key through
13622                         dbus when key == NULL
13623
13624 2006-01-08  Dan Williams  <dcbw@redhat.com>
13625
13626         * gnome/applet/nm-gconf-wso-wpa-psk.c
13627                 - (nm_gconf_wso_wpa_psk_new_deserialize_dbus): feed
13628                         correct arguments to nmu_security_deserialize_wpa_psk()
13629
13630         * src/nm-ap-security-wpa-psk.c
13631                 - (nm_ap_security_wpa_psk_new_deserialize): feed correct
13632                         arguments to nmu_security_deserialize_wpa_psk()
13633
13634 2006-01-08  Dan Williams  <dcbw@redhat.com>
13635
13636         * gnome/applet/wso-wpa-psk-hex.c
13637           gnome/applet/wso-wpa-psk-passphrase.c
13638                 - Hook up the append_dbus_params_func() function
13639
13640 2006-01-08  Dan Williams  <dcbw@redhat.com>
13641
13642         * src/nm-device-802-11-wireless.c
13643                 - (get_wireless_capabilities): correctly detect driver WPA
13644                         capabilities
13645
13646 2006-01-08  Dan Williams  <dcbw@redhat.com>
13647
13648         * gnome/applet/Makefile.am
13649           gnome/applet/wso-wpa-psk-hex.c
13650           gnome/applet/wso-wpa-psk-hex.h
13651                 - New files, implement WPA-PSK Hex key input
13652
13653         * gnome/applet/wireless-applet.glade
13654                 - Change existing wpa-psk stuff to wpa-psk-hex
13655                 - Add new widgets for wpa-psk-passphrase
13656
13657         * gnome/applet/wireless-security-manager.c
13658                 - (wsm_set_capabilities): enable WPA options
13659
13660         * gnome/applet/wso-wpa-psk-passphrase.c
13661                 - (wso_wpa_psk_passphrase_new): use correct glade widgets
13662                         for WPA-PSK passphrase
13663
13664 2006-01-08  Dan Williams  <dcbw@redhat.com>
13665
13666         * include/NetworkManager.h
13667                 - Add NMI_DBUS_USER_KEY_CANCELED_ERROR as a constant for
13668                         applet/info-daemons
13669
13670         * gnome/applet/passphrase-dialog.c
13671                 - Use the constant.  Fixes a bug where the arguments to
13672                         dbus_message_new_error() were incorrect
13673
13674         * src/nm-dbus-nmi.c
13675                 - Use the constant
13676
13677 2006-01-07  Dan Williams  <dcbw@redhat.com>
13678
13679         * src/nm-device-802-11-wireless.c
13680                 - Add a link timeout so we allow the supplicant time to
13681                         reassociate if it can, before we deactivate the card
13682                 - Fix up link status and link updating so things work better
13683
13684 2006-01-07  Dan Williams  <dcbw@redhat.com>
13685
13686         * src/nm-device-802-11-wireless.c
13687                 - Switch over to using wpa_supplicant
13688                 - Add a timeout of 10s for association of the supplicant
13689                 - Start the monitor callback of the supplicant
13690
13691 2006-01-07  Dan Williams  <dcbw@redhat.com>
13692
13693         * src/NetworkManagerUtils.c
13694                 - (nm_utils_supplicant_request,
13695                   nm_utils_supplicant_request_with_check):
13696                         pass correct buffer length to wpa_ctrl_request()
13697
13698 2006-01-07  Dan Williams  <dcbw@redhat.com>
13699
13700         * src/nm-device-private.h
13701           src/nm-device.c
13702                 - (nm_device_activate_schedule_stage3_ip_config_start): make
13703                         this function available to subclasses
13704
13705 2006-01-06  Robert Love  <rml@novell.com>
13706
13707         * src/NetworkManagerPolicy.c: Always prefer wired to wireless, as the
13708           user plugging in a network cable signals their preference for to
13709           switch, unless the user explicitly selected a wireless network and
13710           therefore signaled their preference for said wireless network over
13711           wired.  In other words, do exactly what makes sense.
13712
13713 2006-01-06  Robert Love  <rml@novell.com>
13714
13715         * src/NetworkManagerDevice.c, src/NetworkManagerDevice.h,
13716           src/NetworkManagerDevicePrivate.h, src/NetworkManagerWireless.c,
13717           src/NetworkManagerWireless.h: Remove, no longer used and they keep
13718           showing up in my greps.
13719
13720 2006-01-06  Robert Love  <rml@novell.com>
13721
13722         * gnome/applet/applet-dbus-devices.c,
13723           gnome/applet/other-network-dialog.c, gnome/applet/wso-none.c,
13724           libnm-util/dbus-helpers.c, libnm-util/dbus-helpers.h,
13725           src/nm-dbus-nm.c: Fix several issues.  'Connect to Other' and 'Create
13726           New Network' both failed in the non-encrypted case because we were
13727           not appending the security options to the DBUS message.  And
13728           'Connect to Other' was also failing in the encrypted case because
13729           we were not incrementing to the next DBUS parameter.  All fixed.
13730           Thanks to dcdw for some debugging help.
13731
13732 2006-01-06  Robert Love  <rml@novell.com>
13733
13734         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
13735           gnome/applet/applet-dbus-devices.h, src/nm-dbus-nm.c: Remove global
13736           hangup code and add per-device hangup.  Tie last commit into the
13737           GNOME applet.  TODO:  Save, understand, and respond to the state of
13738           each dialup device.
13739
13740 2006-01-06  Robert Love  <rml@novell.com>
13741
13742         Patch by Timo Hoenig <thoenig@suse.de>:
13743         * src/NetworkManagerSystem.h, src/nm-dbus-nm.c: Add interfaces to
13744           hangup specific dialup devices.
13745         * src/backends/NetworkManagerDebian.c,
13746           src/backends/NetworkManagerGentoo.c,
13747           src/backends/NetworkManagerRedHat.c,
13748           src/backends/NetworkManagerSlackware.c: Add stub backend.
13749         * src/backends/NetworkManagerRedHat.c,
13750           src/backends/NetworkManagerSuSE.c: Add specific backend interface to
13751           hangup specific dialup devices.
13752
13753 2006-01-04  Robert Love  <rml@novell.com>
13754
13755         * gnome/applet/applet-dbus-devices.c,
13756           gnome/applet/applet-dbus-devices.h, gnome/applet/applet.c,
13757           src/nm-dbus-nm.c: Expose a menu item for hanging up active dialup
13758           connections.
13759
13760 2006-01-04  Dan Williams  <dcbw@redhat.com>
13761
13762         First dump of wpa_supplicant-related code.  It's not hooked up to
13763         anything yet though.  Thanks to Kay Sievers for
13764         wpa_supplicant_wrapper.c, which formed the basis for this work,
13765         and to Jouni Malinen for writing wpa_ctrl.c and wpa_ctrl.h.
13766
13767         * src/Makefile.am
13768           src/wpa_ctrl.[ch]
13769                 - Add wpa_ctrl stuff from wpa_supplicant so we can talk to it
13770
13771         * src/NetworkManagerUtils.[ch]
13772                 - (nm_utils_supplicant_request, nm_utils_supplicant_request_with_check):
13773                         Add convenience functions for talking to wpa_supplicant
13774
13775         * src/nm-ap-security.[ch]
13776           src/nm-ap-security-wep.c
13777           src/nm-ap-security-wpa-psk.[ch]
13778                 - Update and implement real_write_supplicant_config functions
13779                         in all security types
13780                 - (nm_ap_security_wpa_psk_new_from_ap): implement in
13781                         nm-ap-security-wpa-psk.c
13782
13783         * src/nm-device-802-11-wireless.c
13784                 - (supplicant_cleanup, supplicant_watch_cb, supplicant_monitor_status_cb,
13785                    wpa_supplicant_start, wpa_supplicant_interface_init,
13786                    wpa_supplicant_send_network_config): add functions to talk to
13787                         wpa_supplicant and write network config to it
13788
13789 2006-01-04  Robert Love  <rml@novell.com>
13790
13791         * src/NetworkManagerDialup.h: add 'type' field and NM_DIALUP_TYPE
13792           values so that distribution-backends can differentiate between the
13793           various types (modem, ISDN, et cetera) of dialup device that they
13794           support.
13795         * src/backends/NetworkManagerSuSE.c: perform isdnctrl on interface, as
13796           needed.
13797
13798 2006-01-03  Dan Williams  <dcbw@redhat.com>
13799
13800         * src/NetworkManagerPolicy.c
13801           src/nm-device.[ch]
13802           src/nm-device-802-11-wireless.c
13803                 - Move wireless-specific activation failure and success code
13804                         into wireless device class
13805
13806 2006-01-03  Robert Love  <rml@novell.com>
13807
13808         Patch by Preggna S:
13809         * src/NetworkManagerSystem.c, src/vpn-manager/nm-vpn-connection.c:
13810           IPsec does not require that a VPN client be bound to an interface,
13811           due to the use of the in-kernel IPSec bits.  So make the tunnel
13812           device optional.
13813
13814 2006-01-03  Dan Williams  <dcbw@redhat.com>
13815
13816         * src/NetworkManagerAP.c
13817                 - (nm_ap_add_capabilities_from_ie): presume no WEP unless
13818                         the WPA IE specifies that WEP is supported
13819
13820         * src/nm-device-802-11-wireless.c
13821                 - (process_scan_results): don't mark an AP as supporting WEP
13822                         if there's already other encryption capability info
13823
13824 2006-01-03  Dan Williams  <dcbw@redhat.com>
13825
13826         * src/dhcp-manager/nm-dhcp-manager.c
13827                 - Recognize activation cancellation when waiting for DHCP
13828                         configuration from dhcdbd
13829                 - Ignore non-dhcdbd messages
13830
13831         * src/nm-device.c
13832                 - (real_act_stage3_ip_config_start): return to correct behavior
13833                         of letting the dhcp-manager notify us of failure or
13834                         success rather than incorrectly doing that ourselves
13835                 - (nm_device_activate_stage4_ip_config_get): deal with
13836                         activation cancellation a bit earlier
13837
13838 2006-01-03  Dan Williams  <dcbw@redhat.com>
13839
13840         * src/nm-device-802-11-wireless.c
13841           src/nm-device.[ch]
13842                 - Add hooks to subclasses for stage3_ip_config_start and
13843                         stage4_ip_config_timeout
13844
13845         * src/nm-device-802-3-ethernet.c
13846                 - (real_get_generic_capabilities): make devices NM-supported
13847                         by default
13848
13849 2006-01-03  Robert Love  <rml@novell.com>
13850
13851         * src/backends/NetworkManagerSuSE.c: update to newer API (no more
13852           nm_device_get_hw_address); use inet_aton in lieu of inet_addr as the
13853           latter cannot differentiate between error and the address -1; misc.
13854           clean up.
13855
13856 2006-01-03  Dan Williams  <dcbw@redhat.com>
13857
13858         * src/NetworkManager.c
13859                 - Move link-checking/probing into the device subclasses
13860                         themselves
13861
13862         * src/nm-device.[ch]
13863           src/nm-device-802-11-wireless.c
13864           src/nm-device-802-3-ethernet.c
13865                 - Do periodic link checking in device subclasses rather
13866                         than being triggered from NetworkManager.c
13867                 - discover_wireless_capabilities -> get_wireless_capabilities
13868                 - discover_generic_capabilities -> get_generic_capabilities
13869                 - Device subclass activation routines now return a value of type
13870                         NMActStageReturn to indicate what step to perform next
13871                 - Devices now override stage4_get_ip4_config if they choose
13872
13873 2006-01-01  Dan Williams  <dcbw@redhat.com>
13874
13875         * src/nm-device-802-11-wireless.c
13876                 - (real_init): don't chain up to parent init because we don't
13877                         need to do that anymore
13878
13879         * src/nm-device.c
13880                 - (discover_device_type): fix arguments to ioctl() to correctly
13881                         pass interface name
13882                 - (nm_device_new): consolidate generic device initialization into
13883                         nm_device_new()
13884                 - (real_init): remove, consolidated to nm_device_new()
13885                 - (nm_device_deactivate, real_deactivate): consolidate
13886
13887 2006-01-01  Dan Williams  <dcbw@redhat.com>
13888
13889         * src/nm-activation-request.c
13890                 - Change dhcp_state member of the NMActRequest structure
13891                         from guint8 to guint32
13892
13893         * src/dhcp-manager/nm-dhcp-manager.[ch]
13894                 - (nm_dhcp_manager_get_state_for_device): return guint32 rather
13895                         than guint8 to match the dbus argument.  Turns out we were
13896                         overwriting memory since we were passing in only a guint8
13897
13898 2005-12-31  Dan Williams  <dcbw@redhat.com>
13899
13900         * refactor NMDevice into a GObject-based framework with separate
13901                 objects for wired and wireless.  The following files are no
13902                 longer used but should stick around for a bit so we don't
13903                 loose code through the cracks:
13904                         NetworkManagerDevice.c
13905                         NetworkManagerDevice.h
13906                         NetworkManagerWireless.c
13907                         NetworkManagerWireless.h
13908
13909         The intent here is to allow each device type to manage its own
13910         connection & activation life-cycle, ie to allow wireless devices
13911         to interface with wpa_supplicant, etc.  There's a fair bit of
13912         encapsulation breakage right now that should gradually get pulled
13913         back into each device, along with things like periodic property
13914         updates and link probing.
13915
13916 2005-12-29  Dan Williams  <dcbw@redhat.com>
13917
13918         * include/NetworkManager.h
13919                 - Add NM_802_11_CAP_PROTO_NONE since we need to recognize
13920                         between networks that don't have any encryption at all
13921
13922 2005-12-29  Dan Williams  <dcbw@redhat.com>
13923
13924         * test/test-common.c
13925           test/test-common.h
13926           test/Makefile.am
13927                 - Move to a test-common subdirectory
13928
13929         * test/libnm-util/test-ciphers.c
13930                 - Move test data to test-inputs.h
13931                 - Test WPA ciphers too
13932
13933         * test/libnm-util/test-dbus-helpers.c
13934                 - Test serialization/deserialization of ciphers
13935
13936 2005-12-29  Dan Williams  <dcbw@redhat.com>
13937
13938         * gnome/applet/applet-dbus-devices.c
13939                 - Replace 'enc' parameter with 'capabilities' for wireless networks
13940                         in dbus calls to NM
13941                 - Set capabilities on WirelessNetwork objects
13942                 - Receive and save type-specific device capabilities too
13943
13944         * gnome/applet/applet-dbus-info.c
13945           gnome/applet/applet-dbus.c
13946                 - Passphrase dialog no longer a singleton; new instance gets created
13947                         on each request.  Updates to deal with that.
13948
13949         * gnome/applet/applet.c
13950                 - (nmwa_has_encrypted_networks_helper): use AP capabilities rather
13951                         than single 'encrypted' flag
13952                 - (nmwa_menu_add_vpn_menu): if NM isn't connected, disable any VPN
13953                         menu items
13954                 - Passphrase dialog updates per above
13955
13956         * gnome/applet/menu-items.c
13957                 - (network_menu_item_update): use AP capabilities to determine
13958                         encryption
13959
13960         * gnome/applet/nm-device.[ch]
13961                 - Add accessors for type-specific device capabilities
13962
13963         * gnome/applet/other-network-dialog.c
13964                 - Rework to respect device capabilities.  i.e., if the device doesn't
13965                         support WPA, remove that option from the security dropdown
13966
13967         * gnome/applet/passphrase-dialog.c
13968                 - Massive rework so that a new instance is created each time
13969                         it's used, to support wireless network capabilities
13970
13971         * gnome/applet/wireless-network.[ch]
13972                 - Add accessors and members for wireless network capabilities
13973
13974         * gnome/applet/wireless-security-manager.[ch]
13975                 - (wsm_set_capabilities): called after creation to set which
13976                         security options get shown to the user
13977
13978 2005-12-29  Dan Williams  <dcbw@redhat.com>
13979
13980         * libnm-util/cipher-wpa-psk-passphrase.c
13981                 - (cipher_wpa_psk_passphrase_hash_func): return key as hex string
13982                         like other ciphers
13983
13984 2005-12-23  Dan Williams  <dcbw@redhat.com>
13985
13986         * gnome/applet/applet-dbus-info.c
13987                 - (nmi_dbus_get_key_for_network): if there's no entry in
13988                         GConf for a network, assume we want a new key
13989                 - (nmi_save_network_info): serialize wireless security info
13990                         into GConf so its saved
13991
13992         * src/nm-dbus-nm.c
13993                 - Fix warning as we may not be passed security info when
13994                         connecting to a wireless network
13995
13996 2005-12-23  Dan Williams  <dcbw@redhat.com>
13997
13998         * gnome/applet/applet-compat.c
13999                 - Fix bugs in GConf entry conversion
14000
14001         * gnome/applet/applet-dbus-info.c
14002                 - (nmi_dbus_get_network_properties): handle case of the BSSID
14003                         list being zero-length
14004
14005         * libnm-util/cipher-*
14006           libnm-util/dbus-helpers.c
14007                 - All ciphers must now return hashed keys as UTF-8 valid
14008                         hexadecimal strings, ie "8f3dae4023".  They are pushed
14009                         through dbus as strings too.
14010                 - Consolidate various functions that do bin->hex and hex->bin
14011                         conversion into cipher.c
14012
14013         * src/nm-ap-security-wep.c
14014           src/nm-ap-security-wpa-psk.c
14015                 - Handle NULL keys since we may not know keys right away
14016
14017         * src/nm-dbus-nmi.c
14018                 - (nm_dbus_get_network_data_cb): actually advance to the start
14019                         of the wireless security info before we try to deserialize it
14020
14021         * libnm-util/test-ciphers.c
14022                 - Update cipher tests for the change to UTF-8 hexadecimal strings
14023
14024 2005-12-22  Dan Williams  <dcbw@redhat.com>
14025
14026         * gnome/applet/applet-compat.[ch]
14027                 - Convert old-format GConf and keyring entries
14028                         when the applet starts up.
14029
14030         * gnome/applet/applet.c
14031                 - (nmwa_get_instance): Call the conversion function
14032                         on startup before dbus is initialized
14033
14034 2005-12-22  Dan Williams  <dcbw@redhat.com>
14035
14036         * gnome/applet/applet-dbus-info.c
14037                 - Remove nmi_dbus_create_error_message() in favor of
14038                         nmu_create_dbus_error_message()
14039                 - (nmi_dbus_get_network_properties): Error message cleanups
14040                 - (nmi_dbus_get_network_properties): BSSIDs are now in the 'bssids'
14041                         gconf key rather than 'addresses', since they really are BSSIDs
14042                 - (nmi_dbus_get_network_properties): Dispose of the security
14043                         object when we're done with it
14044
14045 2005-12-21  Dan Williams  <dcbw@redhat.com>
14046
14047         * Consolidate the info-daemon's "updateNetworkInfo" and
14048                 "addNetworkAddress" calls into just "updateNetworkInfo"
14049
14050 2005-12-21  Dan Williams  <dcbw@redhat.com>
14051
14052         * Make connection after key retrieval work again
14053
14054 2005-12-21  Dan Williams  <dcbw@redhat.com>
14055
14056         * gnome/applet/nm-gconf-wso*
14057                 - Make the serialize functions return gboolean
14058                         rather than int
14059
14060         * gnome/applet/nm-gconf-wso.c
14061                 - (nm_gconf_wso_dispose, nm_gconf_wso_finalize): fix up
14062                         parent class handling so we don't segfault
14063
14064         * src/NetworkManagerAP.[ch]
14065                 - (nm_ap_get_capabilities): new function, return capabilities
14066                         now that something can use them
14067                 - (nm_ap_set_encrypted): assume that an access point supports
14068                         both WEP104 and WEP40 if its set encrypted.  FIXME: can
14069                         we even tell whether it just supports WEP40?
14070
14071         * src/NetworkManagerDevice.c
14072                 - (ap_need_key): resurrect and update for the New World Order
14073                 - (nm_device_wireless_get_activation_ap): if we're not given
14074                         security info to use, create some based on access point
14075                         capabilities
14076
14077         * src/nm-ap-security-wep.c
14078                 - (nm_ap_security_wep_new_from_ap): create a new object
14079                         based on a certain access point's capabilities
14080
14081         * src/nm-ap-security.c
14082                 - (nm_ap_security_new_from_ap): delegate creation of a new
14083                         object based on access point capabilities to a subclass
14084                 - (nm_ap_security_copy_properties): don't segfault if we
14085                         don't have a key yet
14086
14087         * src/nm-dbus-nm.c
14088                 - (nm_dbus_nm_set_active_device): provide more informative
14089                         output when errors occur.  Also construct security info
14090                         for a given access point if we weren't given any
14091
14092 2005-12-21  Žygimantas Beručka  <zygis@gnome.org>
14093
14094         * configure.in: Added Lithuanian to ALL_LINGUAS.
14095
14096 2005-12-21  Dan Williams  <dcbw@redhat.com>
14097
14098         * test/libnm-util
14099                 - Add some testcases for WEP ciphers
14100
14101 2005-12-17  Dan Williams  <dcbw@redhat.com>
14102
14103         * Fix bugs
14104
14105 2005-12-17  Dan Williams  <dcbw@redhat.com>
14106
14107         * include/NetworkManager.h
14108                 - Finally kill NMEncKeyType
14109
14110         * gnome/applet/applet-dbus-info.c
14111                 - (nmi_save_network_info): convert to NMGConfWSO
14112
14113         * gnome/applet/nm-gconf-wso-*.c
14114                 - Implement gconf serialization functions
14115
14116         * src/NetworkManagerPolicy.c
14117                 - (nm_policy_activation_finish): fix up meaning of
14118                         automatic/user_requested
14119
14120 2005-12-17  Dan Williams  <dcbw@redhat.com>
14121
14122         * gnome/applet/*
14123                 - More applet cleanups
14124                 - Use the dbus-method-dispatcher
14125
14126         * libnm-util/dbus-method-dispatcher.[ch]
14127                 - Generalize the implementation from NM in
14128                         NetworkManagerUtils.c
14129
14130 2005-12-16  Dan Williams  <dcbw@redhat.com>
14131
14132         * gnome/applet/*
14133                 - Fix up the passphrase dialog to use all the
14134                         WirelessSecurityOption stuff (untested)
14135
14136 2005-12-16  Dan Williams  <dcbw@redhat.com>
14137
14138         * Move nm_gconf_get_*_helper() functions to separate files,
14139                 gconf-helpers.c & gconf-helpers.h
14140
14141         * New NMGConfWSO objects for managing the gconf side of things.
14142                 Eventually these should be merged with the
14143                 WirelessSecurityOption objects and a common base (that can
14144                 serialize/deserialize from dbus & gconf) should be
14145                 refactored out, but for now they are separate.
14146
14147 2005-12-16  Robert Love  <rml@novell.com>
14148
14149         * src/backends/NetworkManagerSuSE.c: Do not invoke ypbind or autofs
14150           binaries unless they exist (nm_spawn_process() emits a warning if
14151           asked to spawn a non-existant process).
14152
14153 2005-12-16  Dan Williams  <dcbw@redhat.com>
14154
14155         * gnome/applet/applet-dbus-info.c
14156                 - Clean up lots of gconf-related code
14157
14158 2005-12-16  Robert Love  <rml@novell.com>
14159
14160         * Makefile.am: Build fix: Reorder 'SUBDIRS' so our deps are right.
14161
14162 2005-12-16  Dan Williams  <dcbw@redhat.com>
14163
14164         * nm_device_set_enc_key -> nm_device_set_wep_enc_key
14165
14166         * Fix up NM -> NMI get-user-key dbus calls in NM (applet
14167                 bits still to be done)
14168
14169 2005-12-16  Dan Williams  <dcbw@redhat.com>
14170
14171         * Finally move info-daemon related stuff out of
14172                 NetworkManagerDbus.c to nm-dbus-nmi.c
14173
14174 2005-12-16  Dan Williams  <dcbw@redhat.com>
14175
14176         * Kill auth_method for access points, since that's now done
14177                 by NMAPSecurity objects
14178
14179         * Add a copy-constructor of sorts to NMAPSecurity
14180                 (how do you do this properly in glib???)
14181
14182 2005-12-15  Dan Williams  <dcbw@redhat.com>
14183
14184         * Exorcise encryption key hashing on APs
14185         * Use libnm-util's serialization/deserialization in both the
14186                 applet and NM
14187         * Random other stuff
14188
14189 2005-12-15  Robert Love  <rml@novell.com>
14190
14191         * gnome/applet/menu-items.c: A new icon, "network-wireless-encrypted"
14192           is being added to the icon naming spec, so let's use that (Tango CVS
14193           has the icon).  Because it is new, however, we fall back to the
14194           current "gnome-lockscreen" if the new icon is not around, thus
14195           behavior is the same.
14196         * gnome/applet/applet.c: Remove setup_stock().  We do not need the
14197           factory junk.
14198
14199 2005-12-15  Robert Love  <rml@novell.com>
14200
14201         * src/gnome/applet.c: Don't show the 'Help' menu item until we have,
14202           well, help to give.  Couple other misc. bits.
14203
14204 2005-12-15  Dan Williams  <dcbw@redhat.com>
14205
14206         * libnm-util/dbus-helpers.[ch]
14207                 - Make this the one-stop-shop for serializing/deserializing
14208                         AP & connection security settings over dbus.  Both NM
14209                         and applets should use this to ensure consistent dbus
14210                         API going forwared.
14211
14212 2005-12-15  Robert Love  <rml@novell.com>
14213
14214         Patch by Timo Hoenig  <thoenig@suse.de>:
14215         * src/NetworkManagerDbus.c
14216                 - (nm_dbus_signal_filter) return DBUS_HANDLER_RESULT_HANDLED
14217                         if HAL jumps off the system bus.  Otherwise libdbus
14218                         (dbus_connection_dispatch) will try to run the filter
14219                         function of our libhal context which is already freed.
14220
14221 2005-12-15  Alexander Shopov  <ash@contact.bg>
14222
14223         * configure.in: Added "bg" (Bulgarian) to ALL_LINGUAS
14224
14225 2005-12-14  Dan Williams  <dcbw@redhat.com>
14226
14227         * include/NetworkManager.h
14228           src/NetworkManagerWireless.c
14229                 - Rearrange 802.11 wireless-specific capabilities again
14230
14231         * src/Makefile.am
14232                 - Forgot to add wpa.c/wpa.h to the makefiles
14233
14234         * src/NetworkManagerAP.[ch]
14235                 - Implement access point capabilities and parse the
14236                         WPA/RSN IEs into the capability bitfield
14237                 - Switch the "encrypted" attribute to utilize the bitfield
14238                         and capabilities rather than being independent
14239
14240         * src/NetworkManagerDevice.c
14241                 - (nm_device_wireless_get_activation_ap): break it horribly
14242                         until we can push NMAPSecurity objects into access point
14243                         objects and through the activation chain
14244                 - Stuff WPA & RSN IEs into AP capabilities
14245
14246         * src/nm-dbus-nm.c
14247                 - Take a shot at actually making setActiveDevice work
14248
14249         * src/wpa.[ch]
14250                 - Make the API a bit saner
14251
14252 2005-12-14  Dan Williams  <dcbw@redhat.com>
14253
14254         * include/NetworkManager.h
14255                 - Add 802.11-specific capability for 802.1x key
14256                         management
14257
14258         * src/wpa.[ch]
14259                 - Pull in WPA IE and RSN IE parsing code from
14260                         wpa_supplicant so we can determine access point
14261                         capabilities
14262                 - Move WPA-related constants here from NetworkManagerAP.h
14263                         and NetworkManagerDevice.c
14264
14265         * src/NetworkManagerDevice.c
14266           src/NetworkManagerAP.[ch]
14267                 - Use WPA-related constants from wpa.h
14268
14269 2005-12-14  Dan Williams  <dcbw@redhat.com>
14270
14271         * include/NetworkManager.h
14272                 - Update and split 802.11 wireless-specific capabilities from
14273                         generic device capabilities
14274
14275         * src/NetworkManagerDevice.c
14276           src/NetworkManagerDevicePrivate.h
14277                 - (nm_device_wireless_discover_capabilities): Move 802.11
14278                         wireless-specific capability checks to
14279                         NetworkManagerWireless.c
14280                 - Rename NMDeviceWirelessOptions -> NMDevice80211WirelessOptions
14281                 - Rename NMDeviceWiredOptions -> NMDevice80211EthernetOptions
14282
14283         * src/NetworkManagerWireless.[ch]
14284                 - (nm_802_11_wireless_discover_capabilities): Check extended
14285                         802.11 wireless-specific capabilities of the driver
14286
14287 2005-12-14  Robert Love  <rml@novell.com>
14288
14289         Patch from Stefan Scheler <sscheler@suse.de>:
14290         * src/NetworkManagerDevice.c: call backend code to activate and
14291           deactivate NIS.
14292         * src/NetworkManagerSystem.h: add new NIS interfaces.
14293         * src/backends/NetworkManagerDebian.c,
14294           src/backends/NetworkManagerGentoo.c,
14295           src/backends/NetworkManagerRedHat.c,
14296           src/backends/NetworkManagerSlackware.c: add stub functions for NIS
14297           support.
14298         * src/backends/NetworkManagerSuSE.c: add NIS support, baby.
14299
14300 2005-12-14  Dan Williams  <dcbw@redhat.com>
14301
14302         * src/nm-ap-security*.[ch]
14303                 - Add AP security abstractions to NetworkManager
14304
14305         * src/nm-dbus-device.c
14306                 - Begin to parse new format dbus messages from the applet
14307                         and construct an AP security object from the message
14308
14309         * libnm-util/dbus-helpers.c
14310                 - Use message iters so we can append the key as a fixed
14311                         array of bytes, which actually works rather than
14312                         using dbus_message_append_args() as we were before
14313
14314 2005-12-14  Dan Williams  <dcbw@redhat.com>
14315
14316         * src/NetworkManagerDbus.c
14317           gnome/applet/applet-dbus.c
14318                 - Fix up dbus service replacement options.  The applet
14319                         should allow replacement, NM itself should not.
14320
14321 2005-12-13  Robert Love  <rml@novell.com>
14322
14323         * src/named-manager/nm-named-manager.c: Revert earlier commit.
14324           Instead, fail silently if config is NULL by not asserting and not
14325           returning FALSE.  Also, make sure we always fclose() the file.
14326
14327 2005-12-13  Robert Love  <rml@novell.com>
14328
14329         Patch by Stefan Scheler <sscheler@suse.de>:
14330         *  src/nm-ip4-config.h, src/nm-ip4-config.c,
14331            src/dhcp-manager/nm-dhcp-manager.c: Add support for setting up NIS
14332            via DHCP.  Still need the backends to commit the NIS domain name and
14333            and servers to yp.conf as needed.
14334
14335 2005-12-13  Robert Love  <rml@novell.com>
14336
14337         * src/vpn-manager/nm-dbus-vpn.c: Do not call the lengthy-named function
14338           nm_vpn_manager_remove_connection() unless vpn is non-NULL.
14339
14340 2005-12-13  Robert Love  <rml@novell.com>
14341
14342         * src/named-manager/nm-named-manager.c: Don't unref the config until
14343           after we call rewrite_resolv_conf(), because get_last_default_domain()
14344           needs to access the config.  Fixes "rewrite_resolv_conf: assertion
14345           `config != NULL' failed" assertion failures and "Could not commit DNS
14346           changes" warnings.
14347
14348 2005-12-12  Dan Williams  <dcbw@redhat.com>
14349
14350         * libnm-util/dbus-helpers.[ch]
14351           libnm-util/Makefile.am
14352                 - new helper calls to consolidate locations where
14353                         NM's setDevice method is called
14354
14355         * gnome/applet/applet-dbus-devices.c
14356           gnome/applet/wireless-security-option.c
14357           gnome/applet/wso-*
14358                 - Implement dbus message param append function for
14359                         all wireless security options
14360
14361 2005-12-12  Robert Love  <rml@novell.com>
14362
14363         * libnm-util/cipher-wep-passphrase.c,
14364           libnm-util/cipher-wpa-psk-passphrase.c, src/NetworkManagerAP.c,
14365           src/NetworkManagerAP.h, src/NetworkManagerDevice.c,
14366           src/NetworkManagerWireless.c, src/NetworkManagerWireless.h: Treat
14367           all WEP/WPA keys as "char *" and not explicitly signed or unsigned.
14368           When handling keys, we don't care what the sign is.  The compiler
14369           guarantees us that we get our 8-bits, which is all we care about.
14370         * configure.in: Remove "-Wno-pointer-sign" flag.  We are sign-aware!
14371
14372 2005-12-12  Dan Williams  <dcbw@redhat.com>
14373
14374         * gnome/applet/applet-dbus-devices.[ch]
14375           gnome/applet/applet.c
14376           gnome/applet/other-network-dialog.c
14377           gnome/applet/wireless-security-manager.[ch]
14378           gnome/applet/wireless-security-option.[ch]
14379           gnome/applet/wso-*
14380                 - Push the wireless security options further into the applet
14381
14382 2005-12-12  Robert Love  <rml@novell.com>
14383
14384         * src/dhcp-manager/nm-dhcp-manager.c: Do not fail if DHCP does not
14385           return any name servers.  That is perfectly valid.  (Novell #134369).
14386
14387 2005-12-11  Dan Williams  <dcbw@redhat.com>
14388
14389         * gnome/applet/wso-*
14390           gnome/applet/wireless-security-option.*
14391           gnome/applet/Makefile.am
14392                 - split each security option out so we can eventually
14393                         have each one build up their own dbus message
14394                         arguments to send to NM
14395
14396 2005-12-11  Dan Williams  <dcbw@redhat.com>
14397
14398         * Make validation of the key work correctly
14399
14400 2005-12-11  Dan Williams  <dcbw@redhat.com>
14401
14402         * Hook more bits of the Other Network Dialog up to the
14403                 wireless security manager stuff, and restructure
14404                 bits of the dialog so there's less code.
14405
14406 2005-12-10  Dan Williams  <dcbw@redhat.com>
14407
14408         * gnome/applet/Makefile.am
14409                 - Add libnm-util to includes
14410                 - Add libnm-util to link list
14411                 - Add wireless-security-common.* to compile list
14412
14413         * gnome/applet/other-network-dialog.c
14414                 - Convert to using the WirelessSecurityManager code and
14415                         widgets
14416
14417         * gnome/applet/passphrase-dialog.c
14418                 - Comment out references to stuff in the glade file that
14419                         cause runtime errors until it can be fixed up
14420                         to use the WirelessSecurityManager code
14421
14422         * gnome/applet/wireless-applet.glade
14423                 - Rename some widgets
14424                 - Add widgets for the WirelessSecurityManager code
14425                 - Remove passphrase-related stuff since that's now
14426                         handled by the WirelessSecurityManager code
14427
14428 2005-12-10  Dan Williams  <dcbw@redhat.com>
14429
14430         * gnome/applet/applet-dbus-devices.c
14431                 - Print out error message details for dbus pending call callbacks
14432                 - Move nmwa_dbus_update_devices() up
14433
14434         * gnome/applet/applet-dbus-vpn.c
14435                 - Print out error message details for dbus pending call callbacks
14436
14437 2005-12-10  Dan Williams  <dcbw@redhat.com>
14438
14439         * libnm-util/*
14440                 - More fixups
14441                 - Remove cipher-manager.* because we don't need it
14442                 - Forgot to add gnome-keyring-md5 files to compile list
14443
14444 2005-12-09  Dan Williams  <dcbw@redhat.com>
14445
14446         * libnm-util/*
14447           configure.in
14448           Makefile.am
14449                 - Add a utility library for clients of NetworkManager.  It's
14450                         only targetted at applets for the moment, and contains
14451                         a generalized 802.11 cipher framework for different
14452                         types of keys (WEP & WPA Hex, ASCII, Passphrase)
14453
14454 2005-12-09  Robert Love  <rml@novell.com>
14455
14456         * src/NetworkManagerDevice.c: handle error better in
14457           nm_device_set_mode().
14458
14459 2005-12-08  Robert Love  <rml@novell.com>
14460
14461         * include/NetworkManager.h: add WPA capabilities constants
14462         * src/NetworkManagerDevice.c: detect if wireless devices support WPA
14463           or WPA2 and add the capabilities bits as appropriate.
14464
14465 2005-12-08  Robert Love  <rml@novell.com>
14466
14467         * initscript/SUSE/networkmanager-dispatcher.in: new initscript for
14468           NetworkManagerDispatcher.
14469         * configure.in, initscript/SUSE/.cvsignore,
14470           initscript/SUSE/Makefile.am: support new networkmanager-dispatcher
14471           initscript.
14472
14473 2005-12-08  Robert Love  <rml@novell.com>
14474
14475         * initscript/SUSE/networkmanager.in: Do not start 'networking' service.
14476
14477 2005-12-08  Robert Love  <rml@novell.com>
14478
14479         * src/NetworkManagerDevice.c: We want to fall back on and default to
14480           IW_MODE_AUTO, not -1, which is more in line with our previous
14481           behavior.  Otherwise, we try to set the wireless mode to -1 in
14482           nm_device_set_mode().
14483
14484 2005-12-07  Robert Love  <rml@novell.com>
14485
14486         * gnome/applet/applet-dbus-info.c, include/NetworkManager.h,
14487           src/NetworkManagerAP.c, src/NetworkManagerAP.h,
14488           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
14489           src/NetworkManagerDevice.c, src/NetworkManagerDevice.h,
14490           src/nm-dbus-nm.c: Convert NM_DEVICE_AUTH_METHOD_* to use the
14491           wireless-tools constants directly.  UNKNOWN is now -1 and NONE is
14492           zero.
14493
14494 2005-12-07  Robert Love  <rml@novell.com>
14495
14496         * src/backends/NetworkManagerSuSE.c: In static configurations, if the
14497           supplied IP is invalid, fall back to DHCP.
14498
14499 2005-12-07  Dan Williams  <dcbw@redhat.com>
14500
14501         * Convert NETWORK_MODE_* constants to IW_MODE_*
14502         * Make all the get_mode/set_mode functions take and return 'int'
14503         * Convert D-BUS calls that pass mode to DBUS_TYPE_INT32 rather than UINT32
14504
14505 2005-12-07  Robert Love  <rml@novell.com>
14506
14507         * src/NetworkManagerDevice.c: strncpy() buffer check.
14508         * src/NetworkManagerUtils.c: be anal about syslog() formatting.
14509
14510 2005-12-06  Dan Williams  <dcbw@redhat.com>
14511
14512         * gnome/applet/applet-dbus.c
14513                 - (set_vpn_last_attempt_status): remove, now in applet-dbus-vpn.c
14514
14515         * gnome/applet/applet-dbus-vpn.c
14516                 - (nmwa_dbus_vpn_set_last_attempt_status): new, from applet-dbus.c
14517                 - (nmwa_dbus_vpn_update_vpn_connection_stage): set last_attempt_success
14518                         to TRUE here if stage was ACTIVATED
14519
14520 2005-12-06  Dan Williams  <dcbw@redhat.com>
14521
14522         * Change nm_device_is_* functions to better names:
14523                 nm_device_is_wireless() -> nm_device_is_802_11_wireless()
14524                 nm_device_is_wired() -> nm_device_is_802_3_ethernet()
14525
14526 2005-12-06  Dan Williams  <dcbw@redhat.com>
14527
14528         * Change naming of NMDeviceType to something more sensible:
14529                 NM_DEVICE_TYPE_DONT_KNOW -> NM_DEVICE_TYPE_UNKNOWN
14530                 NM_DEVICE_TYPE_WIRED_ETHERNET -> NM_DEVICE_TYPE_802_3_ETHERNET
14531                 NM_DEVICE_TYPE_WIRELESS_ETHERNET -> NM_DEVICE_TYPE_802_11_WIRELESS
14532
14533 2005-12-06  Dan Williams  <dcbw@redhat.com>
14534
14535         * Move NetworkManager.h -> include/NetworkManager.h
14536         * Split out VPN stuff into include/NetworkManagerVPN.h
14537         * Fix up makefiles to include new location
14538         * Fix up sources to include NetworkManagerVPN.h
14539
14540 2005-12-06  Dan Williams  <dcbw@redhat.com>
14541
14542         Various changes in the applet to move VPN connection "state" -> "stage",
14543         which it actually is.  I'd like to change the signal as well when we
14544         break compat in the near future.
14545
14546 2005-12-06  Dan Williams  <dcbw@redhat.com>
14547
14548         Slackware patches from Paul Blazejowski <paulb@blazebox.homeip.net>
14549         * initscript/Slackware/rc.networkmanager
14550                 - Cosmetic fix
14551
14552         * src/backends/NetworkManagerSlackware.c
14553                 - Kill dhcpcd when starting so that dhclient can bind to DHCP on
14554                         interfaces
14555
14556 2005-12-05  Robert Love  <rml@novell.com>
14557
14558         * src/NetworkManager.c: don't call nm_data_free() when there is nothing
14559           to free, particularly here as it just barfs.
14560
14561 2005-12-05  Dan Williams  <dcbw@redhat.com>
14562
14563         * gnome/applet/applet-dbus.c
14564                 - Work with dbus 0.6 too
14565
14566 2005-12-03  Dan Williams  <dcbw@redhat.com>
14567
14568         * src/NetworkManagerUtils.[ch]
14569           src/nm-ip4-config.c
14570                 - move ip4_netmask_to_prefix() to NetworkManagerUtils.c
14571                 - consolidate code into nm_utils_ip4_addr_to_nl_addr()
14572
14573 2005-12-01  Robert Love  <rml@novell.com>
14574
14575         * gnome/applet/main.c, gnome/vpn-properties/nm-vpn-properties.c: We
14576           need a NULL for the '...' parameter, too, to fill the so-called
14577           sentinel.
14578
14579 2005-12-01  Robert Love  <rml@novell.com>
14580
14581         * src/NetworkManagerSystem.c: If iface_to_rtnl_link() returns NULL, the
14582           interface is already gone, so don't call rtnl_link_change() to down
14583           it (which will segfault, anyhow).
14584
14585 2005-11-22  Robert Love  <rml@novell.com>
14586
14587         * src/backends/NetworkManagerSuSE.c: Don't fall back to DHCP if the
14588           gateway is not set, just print a little note.  Configurations without
14589           gateways are valid.
14590
14591 2005-11-22  Robert Love  <rml@novell.com>
14592
14593         * README: update
14594
14595 2005-11-20  Ilkka Tuohela  <hile@iki.fi>
14596
14597         * configure.in: Added Finnish translation to ALL_LINGUAS
14598
14599 2005-11-14  Robert Love  <rml@novell.com>
14600
14601         * vpn-daemons/openvpn: initial checkin of OpenVPN VPN Module, by Tim
14602           Niemueller <tim@niemueller.de>.
14603
14604 2005-11-08  Dan Williams  <dcbw@redhat.com>
14605
14606         Patch from Bill Moss <bmoss@clemson.edu>
14607         * src/NetworkManagerDevice.c
14608                 - (nm_device_activate_stage5_ip_config_commit): fix ordering
14609                         of nm_policy_schedule_activation_finish() to prevent a
14610                         race condition that causes the link to be dropped
14611
14612 2005-11-08  Dan Williams  <dcbw@redhat.com>
14613
14614         Patch from Bill Moss <bmoss@clemson.edu>
14615         * src/NetworkManagerAPList.c
14616           src/NetworkManagerDevice.c
14617           src/NetworkManagerDbus.c
14618                 - Replace occurances of ether_ntoa_r() with iw_ether_ntop() so
14619                         we get more readable ether/mac addresses
14620
14621 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14622
14623         * gnome/applet/main.c: Don't set the restart command.  This fixes
14624         the issue where the restart command was getting copies of all its
14625         arguments for each time the applet was restarted.
14626
14627 2005-11-02  Robert Love  <rml@novell.com>
14628
14629         * gnome/applet/applet.c: Only send the DBUS setWirelessEnabled method
14630           if the widget state differs from our saved state.  This ensures we
14631           do not enter an endless loop of death and destruction.  Also, this
14632           guarantees us that we enforce the widget state.
14633
14634 2005-11-02  Robert Love  <rml@novell.com>
14635
14636         * gnome/applet/applet.c: add nmwa_enable_wireless_set_active().
14637         * gnome/applet/applet-dbus-devices.c: invoke the new function
14638           nmwa_enable_wireless_set_active() to ensure that the state of the
14639           'Enable Wireless' checkbox matches the daemon's state.  This is a
14640           concern because the daemon remembers the state.
14641
14642 2005-11-02  Robert Love  <rml@novell.com>
14643
14644         * gnome/applet/applet.c: Make menu item "Enable Wireless" not "Wireless
14645           Enabled", as checkboxes should be actions/commands not positive
14646           statements, otherwise they are confusing in the unselected case.  See
14647           examples in GNOME HIG, Chapter 6.
14648
14649 2005-11-02  Robert Love  <rml@novell.com>
14650
14651         * gnome/applet/applet.c: When wireless is disabled, act it.  Do not
14652           show a list of wireless networks or the wireless devices or the
14653           "Create Wireless ..." menus.  Aside from this cosmetics, this fixes
14654           a bad bug: If wireless is disabled and the user picks a wireless
14655           network, NM will switch to the network, only to immediately switch
14656           back, as wireless is disabled.  This also reassures people that NM
14657           is not scanning (it is not -- I verified).  Fixes Novell bug #130041.
14658
14659 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14660
14661         * gnome/applet/applet.c:
14662         * gnome/applet/applet.h:
14663         Partial backout of Dan's timeout animation patch.
14664         Timeout IDs cannot legally be 0, so revert the code in place to handle
14665         a timeout ID of 0 to denote the timeout isn't running.
14666
14667 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14668
14669         * src/NetworkManagerPolicy.c:
14670         (nm_policy_device_change_check) Clarify wireless switch nm_info text
14671
14672 2005-10-28  Robert Love  <rml@novell.com>
14673
14674         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade: Change label to
14675           "Import Saved Configuration..." to make it clear that importing is
14676           not the next step, but an option.  As an aside, a nice TODO would be
14677           to move Importing out of the vpn-specific dialog and into the main
14678           property editor, as Importing goes with Adding, but that will require
14679           some rearchitecting of the VPN stuff I suspect.
14680
14681 2005-10-27  Dan Williams  <dcbw@redhat.com>
14682
14683         Start using libnl.  You need 1.0-pre3 or higher.  Eventually
14684         we should replace most of the distro-specific backend code
14685         with libnl stuff.
14686
14687         Get it here:  http://people.suug.ch/~tgr/libnl/
14688
14689         * configure.in
14690           src/Makefile.am
14691                 - Add checks for libnl pkgconfig file
14692                 - Use LIBNL_LIBS & LIBNL_CFLAGS
14693
14694         * src/NetworkManagerSystem.c
14695           src/nm-ip4-config.[ch]
14696                 - Use libnl rather than ioctl() for most things
14697                 - Remove unused functions
14698
14699 2005-10-27  Robert Love  <rml@novell.com>
14700
14701         * src/backends/NetworkManagerSuSE.c: fix warning message text
14702
14703 2005-10-27  Christopher Aillon  <caillon@redhat.com>
14704
14705         * gnome/applet/applet.c: Use the copyright symbol instead of (C)
14706
14707 2005-10-27  Christopher Aillon  <caillon@redhat.com>
14708
14709         * gnome/applet/applet.c: The applet's about dialog can advertise our 
14710         project page <http://www.gnome.org/projects/NetworkManager/>
14711
14712 2005-10-26  Christopher Aillon  <caillon@redhat.com>
14713
14714         * gnome/applet.c: Also use translator credits if we don't have
14715         the new GtkAboutDialog (older versions of GTK+)
14716
14717 2005-10-26  Robert Love  <rml@novell.com>
14718
14719         * dispatcher-daemon/NetworkManagerDispatcher.c: print actual error string on daemon()
14720           failure; correct usage text for "--no-daemon"
14721
14722 2005-10-25  Dan Williams  <dcbw@redhat.com>
14723
14724         * src/NetworkManagerDevice.c
14725                 - (get_scan_results): cleanups, deal cleanly with ENODATA signifying
14726                         no scan results
14727                 - (free_process_scan_cb_data): unref the device when freeing results
14728                 - (nm_device_wireless_process_scan_results): free scan results a bit later
14729                         so we don't unref the device underneath ourselves
14730
14731 2005-10-25  Dan Williams  <dcbw@redhat.com>
14732
14733         * Back out 2005-10-24 commit from Tor Krill.  Patch
14734                 causes nameservers never to be removed from named.
14735
14736 2005-10-24  Dan Williams  <dcbw@redhat.com>
14737
14738         Clean up wireless scanning and wireless link probing.
14739
14740         * src/NetworkManagerDevice.c
14741                 - (nm_device_probe_wireless_link_state): instead of calling nm_get_best_ap(),
14742                         just see if there's an activation request on the device, and check the
14743                         current link against the activation request access point's ESSID.
14744                 - (link_to_specific_ap): increase the # of failed links we tolerate from 3 to 6
14745                 - (nm_device_wireless_process_scan_results): actually free our scan data, and
14746                         don't call process_scan_results() on zero-length data
14747                 - (nm_device_set_wireless_scan_interval): increase the init scan interval to 
14748                         15 seconds (from 10)
14749
14750 2005-10-24  Dan Williams  <dcbw@redhat.com>
14751
14752         Cleanup some applet stuff:
14753
14754         - Animation timeouts.  If NM died while the applet was animating,
14755                 the applet would not hide itself.  This is now fixed.
14756
14757         - Remove some dead code
14758
14759         - Remove nmi_passphrase_dialog_schedule_cancel() and convert uses
14760                 to nmi_passphrase_dialog_cancel() since we no longer use threads.
14761
14762         - Track animation timeout using a gboolean rather than the timeout's
14763                 ID, since timeout IDs can legally be 0.
14764
14765 2005-10-24  Dan Williams  <dcbw@redhat.com>
14766
14767         * src/backends/interface_parser.c
14768                 - Add void to function declarations that need it
14769                         to match patch from Engin AYDOGAN
14770
14771         * src/backends/interface_parser.h
14772                 - Remove unused prototype for ifparser_interfaces()
14773
14774         Patch from Engin AYDOGAN <engin@bzzzt.biz>
14775         * src/backends/interface_parser.h:
14776                 - Compile fixes for gcc 4.0.2 (add void)
14777
14778 2005-10-24  Dan Williams  <dcbw@redhat.com>
14779
14780         Patch from Tor Krill <tor@krill.nu>
14781         * src/named-manager/nm-named-manager.c
14782                 - Write more than just the first nameserver to /etc/resolv.conf
14783                 - Write out valid /etc/resolv.conf on exit
14784
14785 2005-10-21  Christopher Aillon  <caillon@redhat.com>
14786
14787         * gnome/applet/applet-dbus-vpn.c:
14788         Get rid of spurious newlines in debug console output
14789
14790 2005-10-21  Christopher Aillon  <caillon@redhat.com>
14791
14792         * src/backends/NetworkManagerGentoo.c:
14793         Fix path to killall.  Patch from Dave Shanker <dshanker@gmail.com>
14794
14795 2005-10-20  Robert Love  <rml@novell.com>
14796
14797         * src/NetworkManagerDevice.c: Use fabs() and DBL_EPSILON to avoid a
14798           direct comparison of floating point values, which is never correct.
14799           Also some misc. cleanup.
14800
14801 2005-10-19  Robert Love  <rml@novell.com>
14802
14803         * vpn-daemons/vpnc/nm-vpnc.desktop.in: add fields
14804
14805 2005-10-19  Robert Love  <rml@novell.com>
14806
14807         * gnome/vpn-properties/nm-vpn-properties.c: Correctly set the
14808           sensitivity of the buttons.  Specificaly, do the right thing if
14809           there are no entries.
14810
14811 2005-10-19  Christopher Aillon  <caillon@redhat.com>
14812
14813         * configure.in: Update check for adequate wireless-tools
14814         with an AC_TRY_COMPILE for the new symbols we use.
14815
14816 2005-10-19  Dan Williams  <dcbw@redhat.com>
14817
14818         * src/NetworkManagerDevice.c
14819                 - (process_scan_results): don't drop the last (or only)
14820                         access point we see
14821
14822 2005-10-19  Christopher Aillon  <caillon@redhat.com>
14823
14824         * src/backends/NetworkManagerSlackware.c:
14825         Patch from Nico <lordllucifer@gmail.com>
14826                 - Update the Slackware backend.
14827
14828 2005-10-18  Christopher Aillon  <caillon@redhat.com>
14829
14830         * gnome/applet/other-network-dialog.c: Use g_get_host_name ()
14831         if we've got GLib 2.8.0
14832
14833 2005-10-18  Robert Love  <rml@novell.com>
14834
14835         * src/NetworkManagerDevice.c: invoke the long-in-the-tooth named
14836           function nm_schedule_state_change_signal_broadcast() when we
14837           deactivate a device, too.
14838
14839 2005-10-18  Robert Love  <rml@novell.com>
14840
14841         * gnome/applet/applet.c: nmwa_context_menu_update(): 'iface' could
14842           be used uninitialized.
14843
14844 2005-10-18  Christopher Aillon  <caillon@redhat.com>
14845
14846         * test/libnm_glib_test.c: Test unregistering, too.
14847
14848 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14849
14850         * configure.in: Bump to 0.5.0
14851
14852 2005-10-17  Dan Williams  <dcbw@redhat.com>
14853
14854         * NetworkManager.h
14855                 - Remove WPA-related constants so they aren't part of the
14856                         upcoming release.
14857
14858 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14859
14860         * gnome/applet/applet.c:
14861         * gnome/applet/applet.h:
14862         Desensitize the 'Connection Information' menu item when there is
14863         no active connection.
14864
14865 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14866
14867         * gnome/libnm_glib/libnm_glib.c:
14868         Make libnm_glib_unregister_callback () actually unregister the callback
14869
14870 2005-10-17  Robert Love  <rml@novell.com>
14871
14872         * src/NetworkManagerDevice.c: Actually wait 20s, as we intend, not
14873           two seconds -- tries is updated every 1/10 of a second, not every
14874           second..
14875
14876 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14877
14878         * gnome/applet/applet-dbus-info.c:
14879         Let D-BUS know that we haven't handled a message when we haven't.
14880
14881 2005-10-17  Robert Love  <rml@novell.com>
14882
14883         * src/nm-ip4-config.c: use GPOINTER_TO_UINT and not a straight cast
14884           in order to remain 64-bit clean.
14885
14886 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14887
14888         * gnome/applet/applet-dbus-info.c:
14889         Find network encryption keys asynchronously
14890
14891 2005-10-17  Robert Love  <rml@novell.com>
14892
14893         * src/backends/NetworkManagerDebian.c,
14894           src/backends/NetworkManagerRedHat,
14895           src/backends/NetworkManagerSuSE.c: allow '#' as a valid resolv.conf
14896           comment delimiter.
14897
14898 2005-10-17  Robert Love  <rml@novell.com>
14899
14900         * src/backends/NetworkManagerSuSE.c: use SYSCONFDIR not open-coded
14901           "/etc"
14902
14903 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14904
14905         * src/NetworkManagerDevice.c: (process_scan_results)
14906         Fix logic that checks to see whether we have an ESSID.
14907
14908 2005-10-15  Dan Williams  <dcbw@redhat.com>
14909
14910         Move scanning code into NetworkManager rather than use iwlib's
14911         iw_scan() function, so that we can figure out AP capabilities.
14912
14913         * NetworkManager.h
14914                 - Add AP capability bits
14915
14916         * src/NetworkManagerAP.[ch]
14917                 - Add capability field to NMAccessPoint structure
14918                 - Add WPA & RSN Information Element fields and accessor
14919                         functions to NMAccessPoint
14920
14921         * src/NetworkManagerDevice.c
14922                 - Remove usage of iw_scan
14923                 - Add scanning code to NetworkManager rather than use
14924                         iw_scan() from iwlib
14925
14926         * src/NetworkManagerUtils.[ch]
14927                 - (nm_dispose_scan_results): remove, unused
14928
14929 2005-10-14  Christopher Aillon  <caillon@redhat.com>
14930
14931         * gnome/libnm_glib/libnm_glib.c:
14932         * gnome/libnm_glib/libnm_glib.h:
14933         Use guint instead of gint for callback IDs.
14934
14935 2005-10-12  Christopher Aillon  <caillon@redhat.com>
14936
14937         * gnome/applet/applet.c:
14938         Fix icon animation smoothness issues.  nmwa_redraw_timeout gets called
14939         every 1000ms.  It will unconditionally call nmwa_update_state which
14940         kills the existing animation timeout and registers a new one with a
14941         callback to draw a new frame every 100ms.  There are 11 connecting
14942         icon frames, so the last 2 frames kept getting dropped.  Only reset
14943         the animation timeout if we aren't animating.
14944
14945 2005-10-11  Dan Williams  <dcbw@redhat.com>
14946
14947         * gnome/applet/applet-dbus-devices.c
14948                 - (nmwa_dbus_update_device_info_from_hal), (hal_net_physdev_cb):
14949                         We want to grab the product & vendor from net.physical_dev
14950                         rather than info.parent.
14951
14952 2005-10-11  Dan Williams  <dcbw@redhat.com>
14953
14954         * src/NetworkManagerDevice.c
14955                 - Use the driver's WE version for scanning rather than
14956                         the WE version NM was compiled with.  Fixes random
14957                         crashes in iw_scan () in iwlib.
14958
14959 2005-10-10  Dan Williams  <dcbw@redhat.com>
14960
14961         * Remove nm_system_load_device_modules() from backend files
14962                 and from NetworkManager.c
14963
14964 2005-10-10  Dan Williams  <dcbw@redhat.com>
14965
14966         * src/NetworkManagerPolicy.c
14967                 - Fix some bugs introduced by the capabilities patch
14968
14969 2005-10-10  Dan Williams  <dcbw@redhat.com>
14970
14971         * gnome/applet/applet-dbus-info.c
14972                 - (nmi_dbus_get_network_key): hide the menu when putting up
14973                         the keyring dialog.  (not sure if the code is right...)
14974
14975 2005-10-09  Dan Williams  <dcbw@redhat.com>
14976
14977         Patch from Bill Moss <bmoss@clemson.edu>
14978         * src/NetworkManagerDevice.c
14979                 - (nm_device_set_user_key_for_network): don't try to set auth
14980                         mode on the AP from the allowed list if it's NULL
14981
14982 2005-10-09  Dan Williams  <dcbw@redhat.com>
14983
14984         * Replace the "driver support level" stuff with capabilities.  The
14985                 capability field is a bitfield that is more flexible than the
14986                 old driver support level thing.  It's mostly so we can easily
14987                 figure out what supports WPA and what doesn't, but should be
14988                 quite useful later.
14989
14990 2005-10-09  Dan Williams  <dcbw@redhat.com>
14991
14992         * test/nmtest.c
14993                 - Removed
14994
14995         * test/nm-tool.c
14996           test/Makefile.am
14997                 - Added new "nm-tool" tool that gives quite a bit more
14998                         information
14999
15000 2005-10-07  Robert Love  <rml@novell.com>
15001
15002         * gnome/applet/applet-dbus-info.c, gnome/applet/applet.c,
15003           gnome/applet/applet.h, gnome/vpn-properties/nm-vpn-properties.c,
15004           src/dhcp-manager/nm-dhcp-manager.c, test/libnm_glib_test.c,
15005           test/nmtest.c test/nmtestdevices.c: mark functions 'static' as
15006           appropriate
15007
15008 2005-10-07  Robert Love  <rml@novell.com>
15009
15010         * configure.in: Change our compile flags for the betterment of mankind.
15011           Add "-Wstrict-prototypes" because we comply anyhow and missing a
15012           prototype is very bad on 64-bit platforms as types default to int but
15013           sizeof(int) != sizeof(long) and add "-Wmissing-prototypes" &
15014           "-Wmissing-declarations" to warn if we define an exported function
15015           but fail to put it in a header.
15016
15017 2005-10-07  Robert Love  <rml@novell.com>
15018
15019         * src/NetworkManagerWireless.c: remove stale, unused function, who goes
15020           by the name nm_update_device_wireless_timeouts() and once tried,
15021           without success, to steal my pet turtle.
15022
15023 2005-10-07  Robert Love  <rml@novell.com>
15024
15025         * Cleanup prototypes: put some functions in header files and mark
15026           others as 'static' -- feel free to invert
15027         * src/vpn-manager/nm-dbus-vpn.c: remove prototype of
15028           nm_vpn_manager_vpn_connection_list_copy()
15029         * src/vpn-manager/nm-vpn-act-request.c: remove prototype of
15030           nm_vpn_service_get_dbus_connection()
15031         * src/vpn-manager/nm-vpn-manager.h: add prototypes for
15032           nm_vpn_manager_vpn_connection_list_copy()
15033         * src/vpn-manager/nm-vpn-service.c: make
15034           nm_vpn_service_act_request_failed() and
15035           nm_vpn_service_stage2_daemon_wait() static
15036         * src/vpn-manager/nm-vpn-service.h: add prototype for
15037           nm_vpn_service_get_dbus_connection()
15038
15039 2005-10-06  Christopher Aillon  <caillon@redhat.com>
15040
15041         * gnome/applet/applet.c:
15042         * gnome/applet/applet.h:
15043         * gnome/applet/icons/Makefile.am:
15044         Convey information about the current connection stage in the
15045         icons themselves instead of creating a separate progress bar.
15046
15047 2005-10-04  Robert Love  <rml@novell.com>
15048
15049         * src/nm-dbus-device.c: Use iw_ether_ntop(), not ether_ntoa_r(), to
15050           convert an ether_addr structure's MAC into a string, because the
15051           latter will drop leading zero's and uses lower-case, e.g. 7:3b:4
15052           versus 07:3B:04, while the former will not.
15053
15054 2005-10-04  Robert Love  <rml@novell.com>
15055
15056         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
15057           gnome/applet/nm-device.c, gnome/applet/nm-device.h,
15058           gnome/applet/wireless-applet.glade, src/nm-dbus-device.c: Display
15059           default route in the 'Connection Information' dialog, send primary
15060           and secondary name servers in in "getProperties" DBUS method, add
15061           network_device_{get,set}_{primary,secondary}_dns(),  The primary and
15062           secondary domain name servers are crucial pieces of information
15063           that a user might need in debugging a network problem.
15064
15065 2005-10-04  Robert Love  <rml@novell.com>
15066
15067         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
15068           gnome/applet/nm-device.c, gnome/applet/nm-device.h,
15069           gnome/applet/wireless-applet.glade, src/nm-dbus-device.c: Display
15070           default route in the 'Connection Information' dialog, send default
15071           route in "getProperties" DBUS method, add network_device_set_route(),
15072           and network_device_get_route().  The Gateway is a crucial piece of
15073           connection-related information that a user might need in debugging a
15074           network problem.
15075
15076 2005-10-03  Robert Love  <rml@novell.com>
15077
15078         * src/backends/NetworkManagerSuSE.c: Fix Glib error, GError must be
15079           NULL.
15080
15081 2005-10-02  Dan Williams  <dcbw@redhat.com>
15082
15083         * Shorten time taken to sleep by fastpathing bits of device deactivation
15084                 necessary for sleep.
15085
15086         * Fix issue where deactivating a device might deactivate the active
15087                 VPN connection, even if the VPN was not using the device.
15088
15089 2005-10-02  Dan Williams  <dcbw@redhat.com>
15090
15091         * gnome/applet/applet.c
15092                 - Adjust signal strength -> icon mapping values slightly
15093                         (so that 51% signal doesn't show a 75% icon) by adding
15094                         5% to the values. ex: > 5% now shows 25% icon, > 30%
15095                         shows 50% icon, etc.
15096
15097 2005-09-29  Robert Love  <rml@novell.com>
15098
15099         * src/NetworkManager.c: removed unused variable.
15100
15101 2005-09-28  Dan Williams  <dcbw@redhat.com>
15102
15103         Support for named + DBus, using Red Hat DBus patches for named.  You
15104         can find those patches here, with "dbus" in the patch's filename:
15105
15106                 http://cvs.fedora.redhat.com/viewcvs/devel/bind/
15107
15108         Don't forget the named dbus service file either.
15109
15110         Instead of writing a config file and spawing a named process, NM will
15111         use an already-running dbus-enabled named if it finds one.  NM will
15112         update named's forwarder configuration on the fly using dbus.
15113
15114         If there is no dbus-enabled named running, NM will automatically fall
15115         back to writing the most-recent DNS server information to /etc/resolv.conf
15116         and calling nm_system_update_dns() to kick the system's resolver.
15117
15118         Accordingly, all named-related configure-time options have been removed.
15119
15120 2005-09-26  Robert Love  <rml@novell.com>
15121
15122         * src/backends/NetworkManagerSuSE.c, (nm_system_get_dialup_config): Add
15123           ISDN support!
15124         * src/backends/NetworkManagerSuSE.c, (verify_and_return_provider): Fix
15125           bug in error path if "ASKPASSWORD" is "no".
15126
15127 2005-09-26  Robert Love  <rml@novell.com>
15128
15129         * src/named-manager/nm-named-manager.c: only '#' is officially a valid
15130           comment in /etc/resolv.conf -- ';' is not.
15131
15132 2005-09-19  Dan Williams  <dcbw@redhat.com>
15133
15134         * src/backends/NetworkManagerRedHat.c:
15135         * src/backends/NetworkManagerDebian.c:
15136         * src/backends/NetworkManagerSlackware.c:
15137         * src/backends/NetworkManagerGentoo.c:
15138         * src/backends/NetworkManagerSUSE.c:
15139         Fix invocations of "/sbin/ip address" to use short form instead
15140
15141 2005-09-19  Christopher Aillon  <caillon@redhat.com>
15142
15143         * src/nm-dbus-device.c: Don't assert when getting
15144         addresses of a not yet connected interface.
15145
15146         * gnome/applet/applet.c: Free icons if loading fails.
15147         Use translator-credits so translators can make themselves known.
15148
15149 2005-09-15  Christopher Aillon  <caillon@redhat.com>
15150
15151         * src/NetworkManagerAP.c:
15152         * src/NetworkManagerAP.h:
15153         * src/NetworkManagerDevice.c:
15154         Set a blacklist for certain common manufacturer default ESSIDs:
15155         APs with these ESSIDs are extremely likely to be completely
15156         different networks: connecting to one should not make NM
15157         auto-connect to every other AP with the same default ESSID.
15158
15159 2005-09-12  Christopher Aillon  <caillon@redhat.com>
15160
15161         * gnome/applet/wireless-applet.glade:
15162         The passphrase entry should also activate the default
15163
15164         * src/gnome-keyring-md5.c: Updated code from gnome-keyring
15165
15166         * gnome/applet/applet-dbus-devices.c:
15167         * gnome/applet/applet.c:
15168         * gnome/applet/nm-device.c:
15169         * gnome/applet/nm-device.h:
15170         * src/NetworkManagerUtils.c:
15171         * src/NetworkManagerUtils.h:
15172         * src/nm-dbus-device.c:
15173         I've got a fever, and the only cure for it is less ioctl.
15174         Make NM push IP data rather than make the applet open a socket
15175         to the device.
15176
15177 2005-09-10  Christopher Aillon  <caillon@redhat.com>
15178
15179         * gnome/applet/applet.c:
15180         * gnome/applet/applet-dbus-devices.c:
15181         * gnome/applet/applet-dbus-info.c:
15182         * gnome/applet/passphrase-dialog.c:
15183         * gnome/libnm_glib/libnm_glib.c:
15184         * gnome/vpn-properties/nm-vpn-properties.c:
15185         * src/autoip.c:
15186         * src/backends/NetworkManagerRedHat.c:
15187         * src/named-manager/nm-named-manager.c:
15188         * src/NetworkManagerAPList.c:
15189         * src/NetworkManager.c:
15190         * src/NetworkManagerDbus.c:
15191         * src/NetworkManagerDevice.c:
15192         * src/NetworkManagerPolicy.c:
15193         * src/NetworkManagerSystem.c:
15194         * src/nm-dbus-device.c:
15195         * src/nm-dbus-nm.c:
15196         * src/vpn-manager/nm-vpn-manager.c:
15197         * src/vpn-manager/nm-vpn-service.c:
15198         * test/libnm_glib_test.c:
15199         * test/nminfotest.c:
15200         * test/nmtestdevices.c:
15201         Fix a bunch of 'unused variable' compiler warnings
15202
15203         * NetworkManager.h:
15204         * gnome/applet/applet-dbus-info.c:
15205         * gnome/applet/applet-dbus-info.h:
15206         * gnome/applet/applet.c:
15207         * gnome/applet/applet.h:
15208         * src/NetworkManager.c:
15209         * src/NetworkManagerDbus.c:
15210         * src/NetworkManagerDbus.h:
15211         * src/NetworkManagerDevice.c:
15212         * src/NetworkManagerDevice.h:
15213         * src/NetworkManagerMain.h:
15214         * src/NetworkManagerWireless.c:
15215         * src/NetworkManagerWireless.h:
15216         * src/nm-dbus-nm.c:
15217         Make NetworkManager be smart about how frequently to scan
15218         based on its current state.  Remove the UI for choosing when
15219         to scan.  Scanning still may disabled completely by the user
15220         via the "Wireless Enabled" menu item.
15221
15222 2005-09-09  Christopher Aillon  <caillon@redhat.com>
15223
15224         * gnome/applet/applet.c:
15225         Also overlay the vpn connecting icons onto the wired icon,
15226         when appropriate.
15227
15228         * gnome/vpn-properties/nm-vpn-properties.glade:
15229         Clean up a few strings to use better grammar and proper casing.
15230
15231 2005-09-08  Christopher Aillon  <caillon@redhat.com>
15232
15233         * gnome/applet/vpn-connection.c:
15234         * gnome/applet/vpn-connection.h:
15235         Add nmwa_vpn_connection_is_activating ()
15236
15237         * gnome/applet/applet.c:
15238         * gnome/applet/applet.h:
15239         * gnome/applet/icons/nm-vpn-connecting*.png:
15240         Add new VPN connecting icons from Diana Fong <dfong@redhat.com>, letting
15241         the user know something's happening between clicking the VPN item and it
15242         actually being connected.
15243
15244 2005-09-07  Christopher Aillon  <caillon@redhat.com>
15245
15246         * gnome/applet/applet-dbus-info.c: need to free attributes in the
15247         failure case as well.
15248
15249 2005-09-07  Rodrigo Moya <rodrigo@novell.com>
15250
15251         * gnome/panel/eggtrayicon.[ch]:
15252         * examples/python/systray/eggtrayicon.[ch]: updated code from libegg.
15253
15254 2005-09-07  Dan Williams  <dcbw@redhat.com>
15255
15256         Patch from Bill Moss <bmoss@clemson.edu>
15257         * src/applet-dbus.c
15258                 - (nmwa_dbus_filter): strip whitespace from beginning
15259                         and end of VPN login banner
15260
15261 2005-09-07  Dan Williams  <dcbw@redhat.com>
15262
15263         * The great VPN Manager rewrite of 2005
15264
15265 2005-09-07  Christopher Aillon  <caillon@redhat.com>
15266
15267         * gnome/applet/menu-items.c:
15268         * gnome/applet/nm-device.c:
15269         * gnome/applet/wireless-network.c:
15270         * gnome/libnm_glib/libnm_glib.c:
15271         * src/NetworkManagerDbusUtils.c:
15272         * vpn-daemons/vpnc/src/nm-vpnc-service.c:
15273         g_malloc0 doesn't return NULL
15274
15275 2005-09-06  Dan Williams  <dcbw@redhat.com>
15276
15277         Patch from Tomislav Vujec <tvujec@redhat.com>
15278         * src/NetworkManagerDevice.c
15279                 - (nm_get_device_by_udi): don't return a device when we
15280                         actually didn't find what we were looking for
15281
15282 2005-09-06  Christopher Aillon  <caillon@redhat.com>
15283
15284         * gnome/applet/applet-dbus-devices.c:
15285         * gnome/applet/applet-dbus-devices.h:
15286         * gnome/applet/applet-dbus.c:
15287         * src/NetworkManagerDbus.c:
15288         * src/NetworkManagerDbus.h:
15289         * src/NetworkManagerDevice.c:
15290         * src/nm-dbus-device.c:
15291         Make NM push updates about active device strength when it changes,
15292         rather than having the applet poll every 2s.
15293
15294 2005-09-05  Christopher Aillon  <caillon@redhat.com>
15295
15296         * gnome/applet/applet-dbus-devices.c: Remove duplicate call to
15297         network_device_set_strength
15298
15299 2005-09-04  Dan Williams  <dcbw@redhat.com>
15300
15301         Patch from Bill Nottingham <notting@redhat.com>
15302         * src/NetworkManagerDevice.c
15303                 - (nm_device_activation_cancel): reset the quit_activation flag
15304
15305 2005-09-04  Dan Williams  <dcbw@redhat.com>
15306
15307         * src/nm-activation-request.c
15308                 - (nm_act_request_unref): actually free the structure,
15309                         which we didn't seem to be doing before
15310
15311 2005-09-04  Dan Williams  <dcbw@redhat.com>
15312
15313         Patch from John Palmieri <johnp@redhat.com>
15314         * gnome/applet/applet-dbus-devices.c
15315                 - Fix up unreffing of DBusMessage objects
15316
15317 2005-09-04  Dan Williams  <dcbw@redhat.com>
15318
15319         Patch from John Palmieri <johnp@redhat.com>
15320         * gnome/applet/nm-device.c
15321                 - (nm_device_unref): clear network_device's memory _before_ freeing it
15322
15323 2005-09-02  Christopher Aillon  <caillon@redhat.com>
15324
15325         * gnome/applet/applet.c: Use a check menu item for Wireless Enabled
15326
15327 2005-09-02  Bill Nottingham  <notting@redhat.com>
15328
15329         * src/backends/NetworkManagerRedHat.c: use nm_warning, not nm_error
15330
15331 2005-09-01  Dan Williams  <dcbw@redhat.com>
15332
15333         * src/NetworkManager.c
15334                 - (nm_remove_device_from_list): rename to nm_remove_device
15335                 - (nm_hal_device_removed): call nm_remove_device()
15336
15337         * src/NetworkManagerDevice.c
15338                 - Change the NMWirelessScanCB member 'reschedule' which
15339                         wasn't used to 'force' to indicate that we need to
15340                         force a scan when adding a device
15341
15342         * src/nm-dbus-nm.c
15343                 - (nm_dbus_nm_sleep): Deactivate all devices and remove them
15344                         from the device list
15345                 - (nm_dbus_nm_wake): Re-add all devices to the device list
15346
15347 2005-09-01  Robert Love  <rml@novell.com>
15348
15349         * gnome/applet/applet.c: nmwa_update_info: iface is used uninitialized
15350           and the check "!iface" in the error case is probably never true.
15351
15352 2005-09-01  Dan Williams  <dcbw@redhat.com>
15353
15354         Patch from Bill Nottingham <notting@redhat.com>
15355         * src/backends/NetworkManagerRedHat.c
15356                 - Add initial dialup support to Red Hat/Fedora backend
15357
15358 2005-09-01  Dan Williams  <dcbw@redhat.com>
15359
15360         * gnome/applet/applet-dbus-devices.c
15361                 - Sort both wireless networks and devices again, which got
15362                         broken when removing threading
15363
15364 2005-09-01  Christopher Aillon  <caillon@redhat.com>
15365
15366         * gnome/applet/applet.c:
15367         Only show the "Stop/Start All Wireless Devices" menuitem
15368         if we actually have wireless devices.
15369
15370         * gnome/applet/applet-dbus-info.c:
15371         * gnome/applet/applet.c:
15372         * gnome/applet/other-network-dialog.c:
15373         * gnome/applet/vpn-password-dialog.c:
15374         Drop the gtk_dialog_run () calls in favor of connecting to
15375         "response" signals, needed now that the applet is not threaded.
15376
15377 2005-08-31  Dan Williams  <dcbw@redhat.com>
15378
15379         Patch from Bill Moss <bmoss@clemson.edu>
15380         * src/NetworkManagerDevice.c
15381                 - (nm_device_wireless_scan): fix scan timeout values
15382
15383 2005-08-30  Dan Williams  <dcbw@redhat.com>
15384
15385         * gnome/applet/wireless-applet.glade
15386                 - HIG-ify the Other Wireless Networks dialog a bit more
15387                 - Fix some potential segfaults in the info dialog
15388
15389 2005-08-30  Dan Williams  <dcbw@redhat.com>
15390
15391         * gnome/applet/applet-dbus-devices.c
15392                 - Remove nmwa_dbus_get_hal_device_string_property(); unused
15393
15394 2005-08-30  Dan Williams  <dcbw@redhat.com>
15395
15396         * gnome/applet/applet-dbus.[ch]
15397                 - Remove all the nmwa_dbus_call_method_xxxx functions since
15398                         they weren't being used anyway
15399
15400 2005-08-30  Bastien Nocera  <hadess@hadess.net>
15401
15402         * test/nmtestdevices.c: (print_usage), (main):
15403         Check the number of arguments, and fix a typo
15404
15405 2005-08-29  Dan Williams  <dcbw@redhat.com>
15406
15407         Patch from Dumitru Ciobarcianu <Dumitru.Ciobarcianu@iNES.RO>
15408         * gnome/applet/applet.c
15409                 - Define GTK_STOCK_INFO for GTK 2.6 and lower
15410
15411 2005-08-29  Dan Williams  <dcbw@redhat.com>
15412
15413         * gnome/applet/*
15414                 - Don't use threads any more.  Anything that blocks
15415                         (like gtk_dialog_run()) will  have to get fixed up which
15416                         should happen quickly.  We really only had threads to make
15417                         the animation smooth, and when everything got converted over
15418                         to DBus Pending Calls, the need for threads kind of went away
15419
15420 2005-08-29  Christopher Aillon  <caillon@redhat.com>
15421
15422         * gnome/applet/applet.c: Draw VPN connections as radio items
15423         since we don't yet support multiple VPNs.
15424         * gnome/applet/other-network-dialog.c: Use stock icon for Connect
15425         * gnome/vpn-properties/nm-vpn-properties.c: Use stock icon for Delete
15426
15427 2005-08-29  Dan Williams  <dcbw@redhat.com>
15428
15429         Patch from j@bootlab.org
15430         - Make --without-named work
15431         - Make --with-dhcdbd work correctly
15432
15433 2005-08-27  Josep Puigdemont i Casamajó  <josep.puigdemont@gmail.com>
15434
15435         * configure.in: Added "ca" to ALL_LINGUAS.
15436
15437 2005-08-26  Christopher Aillon  <caillon@redhat.com>
15438
15439         * Fix up VPN state handling between the applet and NetworkManager,
15440                 so that the applet doesn't show a VPN as connected when one
15441                 really is not
15442                         - The applet no longer has a pointer to the active VPN's
15443                                 name, but tracks each VPNs state individually
15444                         - NM no longer has a "getActiveVPNConnection" method
15445                         - NM no longer broadcasts the "VPNConnectionChange" signal
15446                         - NM now broadcasts a "VPNConnectionStateChange" signal
15447                                 whenever the state of a VPN changes
15448
15449 2005-08-26  Dan Williams <dcbw@redhat.com>
15450
15451         * gnome/applet/applet-dbus-devices.c
15452           gnome/applet/applet-dbus-vpn.c
15453                 - Remove calls to dbus_pending_call_ref() because we already
15454                         "own" the pending call
15455                 - Remove calls to dbus_pending_call_get_completed() because
15456                         when we are in the callback, the pending call is completed
15457                         by definition
15458
15459 2005-08-22  Dan Williams <dcbw@redhat.com>
15460
15461         Patch by Bill Moss <bmoss@clemson.edu>
15462         * src/dhcp-manager/nm-dhcp-manager.c
15463                 - (nm_dhcp_manager_cancel_transaction): Give dhcdbd/dhclient
15464                         some time to send out a RELEASE if they like
15465
15466 2005-08-22  Dan Williams <dcbw@redhat.com>
15467
15468         Noticed by Bill Moss <bmoss@clemson.edu>
15469         * src/NetworkManagerDbus.c
15470                 - (nm_dbus_get_user_key_for_network_cb): deactivate the device
15471                         instead of just cancelling its activation
15472
15473         * src/NetworkManagerDevice.c
15474                 - (nm_device_deactivate): some small cleanups
15475                 - (nm_device_set_user_key_for_network): deactivate the device
15476                         instead of just cancelling its activation
15477
15478 2005-08-22  Dan Williams <dcbw@redhat.com>
15479
15480         Noticed by Bill Moss <bmoss@clemson.edu>
15481         * src/NetworkManagerDevice.c
15482                 - (nm_device_wireless_scan): fix scan timeout, we were
15483                         waiting way too long for scans to complete
15484
15485 2005-08-22  Dan Williams <dcbw@redhat.com>
15486
15487         Patch from j@bootlab.org:
15488         * src/backends/NetworkManagerDebian.c
15489                 - Make the Debian backend work for static IP again
15490
15491 2005-08-20  Christopher Aillon  <caillon@redhat.com>
15492
15493         * gnome/applet/other-network-dialog.c:
15494         The "Create New Network" and "Connect to Other Network"
15495         dialogs share alot of code, but shouldn't share a window
15496         title.  Give them different ones.
15497
15498         * gnome/applet/wireless-applet.glade:
15499         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.c:
15500         Some more minor UI tweaks.
15501
15502 2005-08-19  Christopher Aillon  <caillon@redhat.com>
15503
15504         * gnome/applet/other-network-dialog.c:
15505         * gnome/applet/wireless-applet.glade:
15506         Also need mnemonic widgets, and underline enabled.
15507
15508 2005-08-19  Dan Williams <dcbw@redhat.com>
15509
15510         * vpn-daemons/vpnc/nm-vpnc-service.c
15511                 - (vpnc_watch_cb): remove no-longer-relevant comment
15512                 - (write_config_option): new function, helper to write
15513                         config options to vpnc's stdin
15514                 - (nm_vpnc_config_write): use the new helper, make the
15515                         code shorter
15516
15517 2005-08-19  Christopher Aillon <caillon@redhat.com>
15518
15519         * gnome/applet/passphrase-dialog.c:
15520         * gnome/applet/wireless-applet.glade:
15521         Make the passphrase dialog response based, and treat
15522         responses other than OK (such as Esc, [X]) as a cancel.
15523
15524 2005-08-18  Christopher Aillon <caillon@redhat.com>
15525
15526         * initscript/Gentoo/NetworkManager:
15527         * initscript/RedHat/NetworkManager:
15528         * initscript/RedHat/NetworkManagerDispatcher:
15529         * initscript/SUSE/networkmanager:
15530         CVS remove these in place of .in replacements
15531
15532         * configure.in:
15533         * initscript/Gentoo/NetworkManager.in:
15534         * initscript/RedHat/NetworkManager.in:
15535         * initscript/RedHat/NetworkManagerDispatcher.in:
15536         * initscript/SUSE/networkmanager.in:
15537         These scripts now are generated so they work still when
15538         NM is built using a bindir other than /usr/bin
15539
15540 2005-08-18  Dan Williams <dcbw@redhat.com>
15541
15542         * gnome/applet/main.c
15543                 - Revert previous change for --no-session since
15544                         --sm-disable does the same thing
15545
15546 2005-08-18  Dan Williams <dcbw@redhat.com>
15547
15548         * gnome/applet/applet-dbus-info.c
15549                 - (nmi_dbus_create_error_message): new function
15550                 - (nmi_dbus_get_key_for_network): correctly use dbus error creation
15551                         functions.  Also don't check for both device _and_ network before
15552                         asking for a user's key, because we may not have gotten all our
15553                         networks back from NM quite yet (due to the dbus pending calls
15554                         coming in later).  Fixes a hang in NM/nm-applet.
15555
15556         * src/NetworkManagerDbus.c
15557                 - (nm_dbus_get_user_key_for_network_cb): handle error conditions in a
15558                         slightly more sane manner, even though we are still broken for
15559                         certain other error conditions.
15560                 - (nm_dbus_get_user_key_for_network): need to pass the network's essid
15561                         to the info-daemon too
15562
15563         * src/NetworkManagerDevice.c
15564                 - Fix some debug messages to be info messages instead
15565
15566 2005-08-18  Dan Williams <dcbw@redhat.com>
15567
15568         * gnome/applet/main.c
15569                 - Add new "--no-session" parameter that disables applet
15570                         session management, ie for testing
15571
15572 2005-08-18  Christopher Aillon <caillon@redhat.com>
15573
15574         * gnome/applet/other-network-dialog.c:
15575         * gnome/applet/wireless-applet.glade: More mnemonics
15576
15577 2005-08-17  Robert Love  <rml@novell.com>
15578
15579         * initscript/SUSE/networkmanager: update
15580
15581 2005-08-17  Dan Williams  <dcbw@redhat.com>
15582
15583         * Tag NM_0_4_1_RELEASE
15584
15585 2005-08-17  Christopher Aillon  <caillon@redhat.com>
15586
15587         * gnome/applet/applet.c: More translatable string cleanup
15588
15589
15590 2005-08-17  Dan Williams  <dcbw@redhat.com>
15591
15592         * gnome/applet/applet-dbus-info.c
15593                 - (nmi_dbus_get_key_for_network): Grab new "new_key" parameter
15594                         from the dbus message, which tells us to unconditionally
15595                         ask the user for a new key.  Otherwise, we pull the key from
15596                         the keyring and return it.  If we fail to get the key from the
15597                         keyring, we ask the user for a new key.
15598                 - (nmi_dbus_get_network_key): new function to grab the key for
15599                         an essid from the keyring.
15600                 - (nmi_dbus_get_network_properties): don't access the keyring here.
15601                         Also, don't return any key in the dbus message.
15602
15603         * src/NetworkManagerDbus.[ch]
15604                 - (nm_dbus_get_user_key_for_network): Add "new_key" parameter to
15605                         indicate that we unconditionally want a new key.  This function
15606                         is now also used to get keys from the info-daemon which are
15607                         pre-stored, not just for asking the user for a new key.  The
15608                         "new_key" parameter indicates whether or not we wish to ask the
15609                         user for a new key.
15610                 - (nm_dbus_get_network_data_cb): we no longer get a key from the
15611                         info-daemon in the return message, so use NULL instead.  The
15612                         key will be filled in at connect time by calling
15613                         nm_dbus_get_user_key_for_network()
15614
15615         * src/NetworkManagerDevice.c
15616                 - (nm_device_wireless_configure): update for "new_key" param to
15617                         nm_dbus_get_user_key_for_network().  We initially set new_key
15618                         to FALSE to see if we have a stored key in the info-daemon, but
15619                         if the connection is unsuccessful at this stage we request a
15620                         new one
15621
15622 2005-08-17  Dan Williams  <dcbw@redhat.com>
15623
15624         * gnome/applet/icons/nm-no-connection.png
15625           gnome/applet/icons/nm-device-wired.png
15626                 - Use Diana's new RJ45 connector icons
15627
15628 2005-08-17  Dan Williams  <dcbw@redhat.com>
15629
15630         * src/NetworkManagerPolicy.c
15631                 - (nm_policy_device_change_check): clarify switching rules if
15632                         both new and old devices are valid; mainly, don't switch
15633                         away from user-requested wireless connection back to a wired
15634                         one
15635
15636 2005-08-17  Dan Williams  <dcbw@redhat.com>
15637
15638         * gnome/applet/Makefile.am
15639                 - Relocate the applet to /usr/bin since it is no longer
15640                         executed by anything, but directly by the user
15641
15642 2005-08-17  Dan Williams  <dcbw@redhat.com>
15643
15644         Patch from Bill Moss <bmoss@clemson.edu>
15645
15646         * gnome/applet/applet-dbus-info.[ch]
15647                 - (nmi_save_network_info): save timestamp for network if it
15648                         was a change requested by the user
15649                 - (nmi_dbus_update_network_info): get user_requested from dbus
15650                         message and pass to nmi_save_network_info()
15651
15652         * gnome/applet/applet.c
15653                 - (nmwa_update_network_timestamp): remove
15654                 - (nmwa_menu_item_activate): don't set timestamp on networks
15655                         here, only after a successful connect in nmi_save_network_info()
15656
15657         * src/NetworkManagerDbus.[ch]
15658                 - (nm_dbus_update_network_info): pass user_requested into the 
15659                         dbus message
15660
15661         * src/NetworkManagerPolicy.c
15662                 - (nm_policy_activation_finish): pass user_requested to
15663                         nm_dbus_update_network_info()
15664
15665 2005-08-16  Robert Love  <rml@novell.com>
15666
15667         * gnome/applet/applet.c: Better "Dial Up" menu item.
15668
15669 2005-08-16  Robert Love  <rml@novell.com>
15670
15671         * gnome/applet/applet.c: use GTK_STOCK_INFO not PROPERTIES for the
15672           "Connection Information" menu item.
15673
15674 2005-08-16  Dan Williams  <dcbw@redhat.com>
15675
15676         Patch from j@bootlab.org
15677         * vpn-daemons/vpnc/Makefile.am: Fix for autoreconf
15678
15679         * configure.in: allow specifying the path to dhcdbd
15680
15681 2005-08-16  Robert Love  <rml@novell.com>
15682
15683         Patch from j@bootlab.org
15684         * src/backends/NetworkManagerDebian.c, src/backends/interface_parser.c,
15685           src/backends/interface_parser.h: Debian dialup support.
15686
15687 2005-08-16  Christopher Aillon  <caillon@redhat.com>
15688
15689         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade:
15690         * gnome/applet/applet.c: Add some mnemonics for VPNC
15691
15692         * vpn-daemons/.cvsignore: fix this up a little bit
15693
15694 2005-08-16  Robert Love  <rml@novell.com>
15695
15696         * src/backends/NetworkManagerSuSE.c: improve the SUSE-backend dial up
15697           support.
15698
15699 2005-08-16  Christopher Aillon  <caillon@redhat.com>
15700
15701         * gnome/applet/applet.c: Split markup out of translatable strings
15702         and clean up logic a little bit.  (fixes #309012)
15703
15704 2005-08-15  Christopher Aillon  <caillon@redhat.com>
15705
15706         * gnome/vpn-properties/nm-vpn-properties.c:
15707         * gnome/vpn-properties/nm-vpn-ui-interface.h:
15708         * vpn-daemons/vpnc/properties/nm-vpnc.c:
15709         Makeshift fix to remove newlines from translatable strings.
15710         Note that we now return an allocated string, so callers of
15711         get_confirmation_details () must now call g_free () on the
15712         result. (fixes #309033).
15713
15714 2005-08-12  Robert Love  <rml@novell.com>
15715
15716         * gnome/applet/applet-dbus.c: remove newlines from translatable
15717           strings--not needed here anyway. (fix b.g.o #309011)
15718         * src/nm-netlink.monitor.c: don't translate "%s" (fix b.g.o #172391)
15719
15720 2005-08-11  Robert Love  <rml@novell.com>
15721
15722         * gnome/applet/applet.c: mark string as translatable.
15723
15724 2005-08-11  Robert Love  <rml@novell.com>
15725
15726         * initscript/SUSE/networkmanager: update.
15727
15728 2005-08-11  Dan Williams  <dcbw@redhat.com>
15729
15730         * src/nm-dhcp-manager.c
15731                 - (nm_dhcp_manager_get_ip4_config): if for some reason we don't get
15732                         an gateway returned from DHCP, try to use the address of the DHCP
15733                         server as the gateway instead.  Found by Ralf Ertzinger.
15734
15735 2005-08-10  Robert Love  <rml@novell.com>
15736
15737         * gnome/applet/applet.c: Make applet->dbus_thread joinable so we can
15738           wait for it on exit; call exit() in nmwa_destroy() to jump ship.
15739
15740 2005-08-10  Dan Williams  <dcbw@redhat.com>
15741
15742         Patch from Bill Moss <bmoss@clemson.edu>
15743         * Consolidate writes of access point information updates to the info daemon
15744                 so that we only do it when the connection to the access point was
15745                 successful.  Also consolidates updates to GConf in the Gnome applet.
15746
15747         * src/nm-netlink-monitor.c
15748                 - Silence compile warning when calling g_object_new()
15749
15750 2005-08-08  Dan Williams  <dcbw@redhat.com>
15751
15752         Patch from Steev <steev@steev.net>:
15753         * src/backends/NetworkManagerGentoo.c
15754                 - Stub new dialup backend functions
15755
15756 2005-08-08  Dan Williams  <dcbw@redhat.com>
15757
15758         Patch from Colin Slater:
15759         * src/backends/NetworkManagerGentoo.c
15760                 - (nm_system_update_dns): Fix exit status check for restarting
15761                         nscd
15762
15763 2005-08-05  Robert Love  <rml@novell.com>
15764
15765         * NetworkManager.h,
15766           gnome/applet/applet-dbus-devices.c,
15767           gnome/applet/applet-dbus-devices.h,
15768           gnome/applet/applet-dbus.c,
15769           gnome/applet/applet.c,
15770           gnome/applet/applet.h,
15771           src/NetworkManager.c,
15772           src/NetworkManagerMain.h,
15773           src/NetworkManagerSystem.h,
15774           src/backends/NetworkManagerRedHat.c,
15775           src/backends/NetworkManagerSuSE.c,
15776           src/nm-dbus-nm.c: basic dialup support using distro infrastructure
15777
15778 2005-08-05  Robert Love  <rml@novell.com>
15779
15780         * gnome/applet/other-network-dialog.c: default the adhoc network to the
15781           machine's hostname to make adhoc creation idiot-proof.
15782
15783 2005-08-04  Robert Love  <rml@novell.com>
15784
15785         * gnome/applet/other-network-dialog.c: fix leak. "label" needs to be
15786           freed.
15787
15788 2005-08-04  Dan Williams  <dcbw@redhat.com>
15789
15790         * gnome/applet/applet-dbus-info.c
15791           gnome/applet/applet-dbus-info.h
15792                 - (nmi_dbus_update_network_auth_method->nmi_save_network_info): generalize
15793                         to store key, key type, and auth method rather than just auth method
15794                 - (nmi_dbus_update_network_info): new function
15795                 - (nmi_dbus_info_message_handler): updateNetworkAuthMethod -> updateNetworkInfo
15796
15797         * gnome/applet/passphrase-dialog.c
15798                 - (nmi_passphrase_dialog_ok_clicked): call nmi_save_network_info() instead
15799                         of saving the info ourselves
15800
15801         * gnome/libnm_glib/libnm_glib.c
15802                 - Remove the stupid version check for dbus
15803
15804         * src/NetworkManagerAP.c
15805           src/NetworkManagerAP.h
15806                 - (nm_ap_get_enc_key_source): return 'const char *' rather than 'char *'
15807
15808         * src/NetworkManagerDbus.c
15809           src/NetworkManagerDbus.h
15810                 - (nm_dbus_update_network_auth_method -> nm_dbus_update_network_info): Update
15811                         more than just the auth method
15812
15813         * src/NetworkManagerDevice.c
15814                 - Update network info at the appropriate times
15815
15816 2005-07-29  Ray Strode  <rstrode@redhat.com>
15817
15818         * src/NetworkManager.c (nm_info_handler): don't use input as format
15819         string (Spotted by Ian Jackson).
15820
15821 2005-07-27  Dan Williams  <dcbw@redhat.com>
15822
15823         * src/nm-dbus-nm.c
15824           src/nm-dbus-net.c
15825                 - Random cleanups of spacing
15826
15827         * gnome/applet/applet.h
15828           gnome/applet/other-network-dialog.c
15829           gnome/applet/passphrase-dialog.c
15830                 - Conslidate usage of NMWAEncryptionKeyTypes enum
15831
15832         Patch from Bill Moss:
15833                 - Make Other Wireless Networks work again with encryption keys
15834
15835 2005-07-26  Dan Williams  <dcbw@redhat.com>
15836
15837         Patch from Steev <steev@steev.net>:
15838         * src/backends/NetworkManagerGentoo.c
15839           src/backends/Makefile.am
15840                 - Fix up Gentoo backend
15841
15842 2005-07-26  Robert Love  <rml@novell.com>
15843
15844         * src/backends/NetworkManagerSuSE.c: misc. cleanup
15845
15846 2005-07-25  Robert Love  <rml@novell.com>
15847
15848         * gnome/applet/applet.c: make the "Wired" menu item a radio button,
15849           in the same group as the wireless networks, since they are all
15850           mutually exclusive.
15851
15852 2005-07-24  Ray Strode  <rstrode@redhat.com>
15853
15854         * src/nm-netlink-monitor.c (nm_netlink_monitor_new): 
15855         remove unneeded NULL arg from g_object_new().  Any
15856         warnings caused by not having the extra NULL are just a
15857         result of a bug in glib 2.7.0 - 2.7.2.
15858
15859 2005-07-22  Robert Love  <rml@novell.com>
15860
15861         * gnome/libnm_glib/libnm_glib.c: support D-BUS version 0.35, too
15862
15863 2005-07-22  Robert Love  <rml@novell.com>
15864
15865         * src/nm-netlink-monitor.c: g_object_new() needs at least three
15866           parameters (gcc 4.0.2 warning fix).
15867
15868 2005-07-18  Robert Love  <rml@novell.com>
15869
15870         Suggested by Aaron Bockover (abockover@novell.com)
15871         * gnome/applet/other-network-dialog.c: ASCII is an acronym, thus
15872           s/Ascii/ASCII
15873         * gnome/applet/passphrase-dialog.c: ditto
15874         * gnome/applet/wireless-applet.glade: ditto
15875
15876 2005-07-13  Dan Williams  <dcbw@redhat.com>
15877
15878         Patch from Ray Strode <halfline@gmail.com>
15879         * vpn-daemons/vpnc/nm-vpnc-service.c
15880                 - Don't let vpnc daemonize, fixes some races with PID file reading
15881
15882 2005-07-13  Dan Williams  <dcbw@redhat.com>
15883
15884         Patch from Ray Strode <halfline@gmail.com>
15885         * Random cleanups for strict CFLAGS
15886
15887 2005-07-07  Dan Williams  <dcbw@redhat.com>
15888
15889         Patch from Derek Atkins <warlord@MIT.EDU>
15890         * src/nm-dbus-net.c:
15891                 - (nm_dbus_get_ap_from_object_path): differentiate similar ESSIDs
15892
15893 2005-07-07  Dan Williams  <dcbw@redhat.com>
15894
15895         Patch from Jos Dehaes <jos_dehaes@fastmail.fm>
15896         * src/backends/NetworkManagerGentoo.c
15897                 - Gentoo backend Static IP nameserver fixes
15898                 - General Gentoo backend goodness
15899
15900 2005-07-07  Dan Williams  <dcbw@redhat.com>
15901
15902         Patch from Bastien Nocera:
15903         * gnome/applet/applet.c
15904                 - Fix up error reporting when icons or glade files are missing
15905
15906 2005-07-07  Robert Love  <rml@novell.com>
15907
15908         * gnome/applet/applet.c: do not draw the VPN menu's seperator if there
15909           are not any VPN connections above it.
15910
15911 2005-07-07  Robert Love  <rml@novell.com>
15912
15913         * gnome/applet/applet.c: whoops, left some "dog" debugging code in.
15914
15915 2005-07-05  Robert Love  <rml@novell.com>
15916
15917         * src/NetworkManagerSystem.c: bail out if asked to set a gateway of
15918           zero.
15919
15920 2005-07-05  Robert Love  <rml@novell.com>
15921
15922         * src/NetworkManagerDevice.c: use link-local (autoip) on DHCP failure
15923           on wired or unencrypted wireless.
15924
15925 2005-07-01  Robert Love  <rml@novell.com>
15926
15927         * src/NetworkManagerSystem.c: Print the error via strerror().
15928
15929 2005-06-30  Robert Love  <rml@novell.com>
15930
15931         * gnome/vpn-properties/nm-vpn-properties.c: display an error dialog and
15932           then exit if the glade file is not found.  currently the application
15933           just hangs.
15934
15935 2005-06-30  Robert Love  <rml@novell.com>
15936
15937         * src/nm-dbus-nm.c: Patch by Bill Moss <bmoss@clemson.edu> to
15938           explicitly up all interfaces on wake from sleep.
15939
15940 2005-06-30  Robert Love  <rml@novell.com>
15941
15942         * gnome/applet/applet.c: Add right-click menu item "Connection Info"
15943           with information about the currently active connection.
15944         * gnome/applet/applet.h: (ditto)
15945         * gnome/applet/wireless-applet.glade: (ditto), new file
15946
15947 2005-06-30  Robert Love  <rml@novell.com>
15948
15949         * src/NetworkManagerDevice.c: g_malloc0 cannot fail.
15950         * src/nm-dbus-nm.c: print when we sleep and wake up.
15951         * gnome/applet/menu-items.c: whitespace, misc. cleanup.
15952         * configure.in: look in "/usr/sbin" for dhcdbd, too. (it shouldn't be
15953           in /sbin unless D-BUS is, folks).
15954         * README: update to reflect nm-applet replacing NetworkManagerInfo.
15955
15956 2005-06-27  Robert Love  <rml@novell.com>
15957
15958         * src/nm-dbus-nm.c: fix "setWirelessEnabled" call for the enabling
15959           case.
15960
15961 2005-06-27  Robert Love  <rml@novell.com>
15962
15963         * gnome/applet/applet.c: make the 'Wireless Network Discovery' menu
15964           items radios.
15965
15966 2005-06-26  Robert Love  <rml@novell.com>
15967
15968         * src/NetworkManagerDevice.c: be specific about which device in
15969           nm_info() message.
15970
15971 2005-06-23  Adam Weinberger  <adamw@gnome.org>
15972
15973         * src/nm-netlink-monitor.c: correct spelling error.
15974
15975 2005-06-23  Robert Love  <rml@novell.com>
15976
15977         * gnome/applet/applet-dbus-info.c: gnome keyring support!
15978         * gnome/applet/passphrase-dialog.c: more of that keyring!
15979
15980 2005-06-23  Robert Love  <rml@novell.com>
15981
15982         * configure.in: remove extraneous GNOMEKEYRING directives.
15983         * gnome/applet/Makefile.am: s/GNOMEKEYRING/GNOME_KEYRING/.
15984         * gnome/applet/applet.c: nmwa_icons_init: make style local.
15985         * gnome/applet/passphrase-dialog.c: whitespace.
15986
15987 2005-06-23  Robert Love  <rml@novell.com>
15988
15989         * src/NetworkManagerDevice.c: division in assignment was flipped.
15990
15991 2005-06-23  David Zeuthen  <david@fubar.dk>
15992
15993         * gnome/applet/vpn-password-dialog.c (child_stdout_data_cb): Send a
15994         signal to the child to indicate that we got what we wanted when we
15995         see two new-lines right after each other.
15996         (nmwa_vpn_request_password): Pass a structure with several members
15997         instead of just the passwords
15998
15999 2005-06-23  Dan Williams <dcbw@redhat.com>
16000
16001         * src/NetworkManager.c
16002           src/NetworkManagerMain.h
16003                 - (nm_get_hal_ctx): new function, move Hal initialization code here
16004                 - (nm_hal_init): new function, init libhal context then add devices
16005                 - (nm_hal_deinit): new function, clean up libhal context
16006                 - (nm_data_free): Move Hal cleanup here
16007                 - (main): check whether Hal is running, and if so, get a list of
16008                         network devices from it
16009
16010         * src/NetworkManagerDbus.c
16011                 - (nm_dbus_signal_filter): trap NameOwnerChanged signals for Hal,
16012                         and when it appears, get a list of network devices from it.  If
16013                         Hal goes away, clean up the libhal context
16014
16015 2005-06-22  Robert Love  <rml@novell.com>
16016
16017         * dispatcher-daemon/NetworkManagerDispatcher.c: fix FIXME: check
16018           permissions of scripts before executing.
16019
16020 2005-06-21  Robert Love  <rml@novell.com>
16021
16022         * initscript/SUSE/networkmanager: update.
16023         * src/backends/NetworkManagerSuSE.c: cleanup.
16024
16025 2005-06-21  Robert Love <rml@novell.com>
16026
16027         * gnome/applet/applet.c: use menu mnemonics.
16028         * gnome/applet/menu-items.c: (ditto)
16029
16030 2005-06-21  Robert Love  <rml@novell.com>
16031
16032         * applet/applet-dbus-devices.c: mark non-static functions static.
16033         * applet/applet-dbus-vpn.c: (ditto)
16034         * applet/applet.c: (ditto)
16035         * applet/nm-device.h: (ditto)
16036         * applet/other-network-dialog.c: (ditto)
16037         * applet/passphrase-dialog.c: (ditto)
16038         * NetworkManager.c: (ditto)
16039         * NetworkManagerDbus.c: (ditto)
16040         * NetworkManagerDevice.c: (ditto)
16041         * NetworkManagerPolicy.c: (ditto)
16042         * NetworkManagerUtils.c: (ditto)
16043         * NetworkManagerWireless.c: (ditto)
16044         * NetworkManagerWireless.h: (ditto)
16045         * nm-netlink-monitor.c: (ditto)
16046         * applet/applet-dbus-info.c: (ditto), add FIXME's.
16047         * vpn-manager/nm-dbus-vpn.c: (ditto), remove shadowed variable.
16048         * autoip.c: include autoip.h.
16049         * autoip.h: new file.  define get_autoip().
16050         * nm-netlink-monitor.h: define nm_netlink_close_connection().
16051         * NetworkManagerDbus.h: remove duplicate definitions.
16052
16053 2005-06-20  Robert Love  <rml@novell.com>
16054
16055         * Makefile.am: Add missing intltool-foo.in generated files to
16056           EXTRA_DIST so that 'distcheck' works.  Also add DISTCLEANFILES
16057           with the start of stuff to cleanup on 'distclea'.
16058         * configure.in: add AC_PROG_INTLTOOL macro so that we do the intltool
16059           stuff right and 'distcheck' works.
16060         * po/POTFILES.in: Remove examples/python/systray/eggtrayicon.c.  If
16061           we keep it, we need to add all of examples/* to EXTRA_DIST and do
16062           Makefile.am for each.  And systray/Makefile needs to be redone.
16063
16064 2005-06-19  Dan Williams <dcbw@redhat.com>
16065
16066         * src/NetworkManagerDevice.c
16067         - (nm_device_wireless_process_scan_results): scan every 20s when
16068           disconnected and scanning is ALWAYS_SCAN or WHEN_UNASSOCIATED
16069
16070 2005-06-19  Dan Williams <dcbw@redhat.com>
16071
16072         * WEXT_DEBUG->IOCTL_DEBUG, extend checking to all ioctl() calls
16073
16074 2005-06-18  Ray Strode <rstrode@redhat.com>
16075
16076         * src/nm-netlink-monitor.c 
16077         (nm_netlink_monitor_event_handler): check for the presence
16078         of either error condition not both. 
16079         
16080         (nm_netlink_monitor_error_handler): emit error signal if
16081         error occurs.
16082
16083         (nm_netlink_monitor_event_handler),
16084         (nm_netlink_monitor_error_handler),
16085         (nm_netlink_monitor_disconnect_handler): if an 
16086         assertion fails disconnect the event handler to prevent 
16087         infinite loops.
16088
16089         * src/nm-netlink-monitor.h: add new error condition
16090         NM_NETLINK_MONITOR_ERROR_WAITING_FOR_SOCKET_DATA
16091
16092 2005-06-18  Ray Strode <rstrode@redhat.com>
16093
16094         * src/nm-netlink-monitor.c 
16095         (nm_netlink_monitor_event_handler): remove bogus < 0
16096         check on unsigned value and return early if the kernel
16097         didn't send any bytes.
16098
16099 2005-06-17  Robert Love  <rml@novell.com>
16100
16101         * initscript/SUSE/networkmanager: Change the Provides and default
16102         run levels
16103
16104 2005-06-16  Dan Williams <dcbw@redhat.com>
16105
16106         Patch from Robert Love:
16107         * gnome/applet/applet.c
16108                 - Beautify some applet menu item names
16109
16110 2005-06-17  David Zeuthen  <davidz@redhat.com>
16111
16112         * gnome/vpn-properties/nm-vpn-ui-interface.h: Require users of this
16113         API to define NM_VPN_API_SUBJECT_TO_CHANGE to acknowledge API churn.
16114         Also add new methods can_export, import_file and export.
16115
16116         * gnome/vpn-properties/nm-vpn-properties.glade: Add an Export button
16117         to the main UI
16118
16119         * gnome/vpn-properties/nm-vpn-properties.c:
16120         Define NM_VPN_API_SUBJECT_TO_CHANGE so we can actually include
16121         nm-vpn-ui-interface.h.
16122         (update_edit_del_sensitivity): Also update "Export" sensitivity
16123         (add_vpn_connection): Also add new SVC_NAME column
16124         (import_settings): New function
16125         (retrieve_data_from_selected_connection): New function
16126         (edit_cb): Use retrieve_data_from_selected_connection to simplify
16127         this function
16128         (export_cb): New function
16129         (init_app): Also setup the "export" widget
16130         (main): Support the --import-service and --import-file commandline
16131         arguments
16132
16133         * gnome/libnm_glib/libnm_glib.c (libnm_glib_dbus_filter): Also support
16134         D-BUS 0.34
16135
16136 2005-06-16  Dan Williams <dcbw@redhat.com>
16137
16138         Patch from Robert Love:
16139         * gnome/applet/menu-items.c
16140                 - (network_menu_item_new): pass -1 as wireless network
16141                         menu items height size request rather than ascent / 2
16142
16143 2005-06-16  Dan Williams <dcbw@redhat.com>
16144
16145         * Clean up wording in Wireless Scan Methods menu items and constants
16146
16147 2005-06-16  Robert Love  <rml@novell.com>
16148
16149         * po/POTFILES.in
16150                 - remove gtkcell* files
16151
16152 2005-06-15  Dan Williams <dcbw@redhat.com>
16153
16154         Patch from Robert Love: make the applet stetic
16155
16156         * gnome/applet/Makefile.am
16157                 - Don't compile the gtkcellview and gtkcellrendererprogress files
16158
16159         * gnome/applet/gtkcellview.h
16160           gnome/applet/gtkcellview.c
16161           gnome/applet/gtkcellrendererprogress.h
16162           gnome/applet/gtkcellrendererprogress.c
16163                 - Removed
16164
16165         * gnome/applet/menu-items.c
16166                 - Progress bars are 5:1 size ratio
16167                 - Use GTK progress bars rather than internal ones
16168
16169 2005-06-15  Dan Williams <dcbw@redhat.com>
16170
16171         Patch from Robert Love:
16172         * initscript/SUSE/networkmanager
16173                 - Fix typo
16174
16175 2005-06-15  Dan Williams <dcbw@redhat.com>
16176
16177         * src/backends/NetworkManagerSuSE.c
16178           src/backends/NetworkManagerRedHat.c
16179           src/backends/NetworkManagerDebian.c
16180                 - (set_ip4_config_from_resolv_conf): Fix typo I made, '==' -> '='
16181
16182 2005-06-15  Dan Williams <dcbw@redhat.com>
16183
16184         * src/backends/NetworkManagerDebian.c
16185                 - Add nm_system_device_get_use_dhcp() to debian backend
16186
16187         Patch from Kay Sievers:
16188         * src/backends/NetworkManagerSuSE.c
16189                 - Update debian backend for static IP nameservers
16190
16191         * src/NetworkManagerDevice.c
16192                 - Actually set the device to use static IP or DHCP rather
16193                         than always DHCP
16194
16195 2005-06-15  Dan Williams <dcbw@redhat.com>
16196
16197         Patch from Thom May:
16198         * src/backends/NetworkManagerDebian.c
16199                 - Update debian backend for static IP nameservers
16200
16201 2005-06-15  Dan Williams <dcbw@redhat.com>
16202
16203         Patches from Robert Love:
16204         * gnome/applet/wireless-applet.glade
16205                 - Tighten up wording
16206
16207         * src/NetworkManagerDevice.c
16208                 - Remove misplaced ';'
16209
16210         * configure.in
16211           initscript/Makefile.am
16212           initscript/SUSE/Makefile.am
16213           initscript/SUSE/networkmanager
16214                 - Add SUSE initscript
16215
16216 2005-06-12  David Zeuthen  <davidz@redhat.com>
16217
16218         * gnome/vpn-properties/nm-vpn-ui-interface.h: New file
16219
16220         * gnome/vpn-properties/nm-vpn-properties.glade: New file
16221
16222         * gnome/vpn-properties/nm-vpn-properties.c: New file
16223
16224         * gnome/vpn-properties/Makefile.am: New file
16225
16226         * src/vpn-manager/nm-vpn-manager.h: Rework prototypes to take an
16227         array of passwords
16228
16229         * src/vpn-manager/nm-vpn-manager.c
16230         (nm_vpn_manager_activate_vpn_connection): Take an array of passwords
16231         instead of just a single one
16232
16233         * src/vpn-manager/nm-dbus-vpn.c:
16234         (nm_dbus_vpn_get_vpn_connection_properties): Also append service_name
16235         here
16236         (nm_dbus_vpn_activate_connection): Rework to take an array of passwords
16237
16238         * gnome/applet/vpn-password-dialog.h (nmwa_vpn_request_password): 
16239         Change the interface here to give a list of passwords. Also, don't
16240         require username, but do require service
16241
16242         * gnome/applet/vpn-password-dialog.c: Look up the VPN .name files for
16243         the binary for the auth-dialog and use that instead of putting up a
16244         dialog asking for a single password
16245
16246         * gnome/applet/vpn-connection.[ch]: Don't remember the user_name,
16247         however do remember the service
16248
16249         * gnome/applet/main.c (main): Setup i18n
16250
16251         * gnome/applet/applet.c (nmwa_update_state): Add a line "VPN
16252         connection to '%s'" to the tooltip if we are connected using VPN
16253         (nmwa_menu_vpn_item_activate): Check last_attempt_success gconf
16254         key to determine whether we the auth-dialog needs to
16255         reprompt. Also cope with the fact that the auth-dialog now returns
16256         an array of passwords.
16257         (nmwa_menu_configure_vpn_item_activate): New handler for
16258         "Configure VPN..." menu item
16259         (nmwa_menu_add_vpn_menu): Add the "Configure VPN..." menu item
16260         (is_vpn_available): New function to determine if we got any
16261         NM-compatible VPN software installed
16262         (nmwa_menu_add_devices): Use is_vpn_available to add VPN menu
16263         items only if we have NM-compatible VPN software installed
16264         (nmwa_gconf_vpn_connections_notify_callback): Slightly rework the
16265         logic for detecting when VPN connections are removed
16266
16267         * gnome/applet/applet-dbus.h: Removed the prototypes for 
16268         nmwa_dbus_vpn_activate_connection, nmwa_dbus_vpn_deactivate_connection
16269         since these are defined elsewhere
16270
16271         * gnome/applet/applet-dbus.c (set_vpn_last_attempt_status): New
16272         function used to keep track of whether the last attempt succeded
16273         (nmwa_dbus_filter): Update last_attempt according to whether the
16274         VPN connection could be established or not
16275
16276         * gnome/applet/applet-dbus-vpn.h (nmwa_dbus_vpn_deactivate_connection): 
16277         Change prototype to take an array of passwords, not just a single
16278         password
16279
16280         * gnome/applet/applet-dbus-vpn.c (nmwa_dbus_vpn_properties_cb): Only
16281         update service, not user
16282         (nmwa_dbus_vpn_remove_one_vpn_connection): Check that applet->
16283         dbus_active_vpn_name is not NULL before using it
16284         (nmwa_dbus_vpn_activate_connection): Send the passwords as a
16285         string array instead of assuming a single password
16286
16287         * gnome/applet/applet-dbus-info.c:
16288         (nmi_dbus_get_vpn_connection_properties): Use the logged in user for
16289         user name; don't read from gconf
16290
16291         * gnome/applet/Makefile.am: Also export SYSCONFDIR and 
16292         VPN_NAME_FILES_DIR
16293
16294         * gnome/Makefile.am (SUBDIRS): Add vpn-properties
16295
16296         * configure.in: Add checks for gmodule-2.0.
16297         Generate gnome/vpn-properties/Makefile. Don't generate any Makefile's
16298         in vpn-daemons nor vpn-daemons/vpnc. We have separate autotooled
16299         projects under vpn-daemons now.  See vpn-daemons/vpnc/Changelog
16300         for details
16301
16302         * vpn-daemons/Makefile.am: Removed
16303
16304         * vpn-daemons/README: New file to describe extensions points for VPN
16305         software
16306
16307 2005-06-10  Dan Williams <dcbw@redhat.com>
16308
16309         * src/backends/NetworkManagerRedHat.c
16310                 - (get_current_profile_name): new function, grab current network profile name from
16311                         /etc/sysconfig/network
16312                 - (set_ip4_config_from_resolv_conf): new function, parse a resolv.conf and
16313                         update an IP4 Config structure's settings from it
16314                 - (nm_system_device_get_system_config): if we're using static IP on this device,
16315                         get DNS info from current network profile
16316
16317 2005-06-09  Dan Williams <dcbw@redhat.com>
16318
16319         Patch from Robert Love:
16320         * src/NetworkManagerDevice.c
16321           src/NetworkManagerUtils.c
16322                 - 64-bit build fixes
16323
16324 2005-06-09  Dan Williams <dcbw@redhat.com>
16325
16326         Patch from Kay Sievers and Robert Love:
16327         * configure.in
16328           src/backends/Makefile.am
16329           src/backends/NetworkManagerSuSE.c
16330                 - Add SuSE support
16331
16332 2005-06-09  Dan Williams <dcbw@redhat.com>
16333
16334         * NetworkManager.h
16335                 - Add NMWirelessScanMethod enum for scan methods
16336
16337         * gnome/applet/applet-dbus-devices.c
16338                 - (nmwa_dbus_update_scanning_enabled_cb): remove
16339                 - (nmwa_dbus_update_scanning_enabled): remove
16340                 - (nmwa_dbus_update_devices): don't call nmwa_dbus_update_scanning_enabled() anymore
16341                         since it got removed
16342                 - (nmwa_dbus_enable_scanning): remove
16343
16344         * gnome/applet/applet-dbus-info.c
16345                 - (nmi_dbus_signal_update_scan_method): new function, signal NetworkManager to
16346                         update the wireless scanning method from NMI
16347                 - (nmi_dbus_get_wireless_scan_method): new function, return wireless scanning
16348                         method value to NetworkManager
16349                 - (nmi_dbus_info_message_handler): respond to the "getWirelessScanMethod" method call
16350
16351         * gnome/applet/applet-dbus-info.h
16352                 - Add prototype for nmi_dbus_signal_update_scan_method
16353
16354         * gnome/applet/applet.c
16355                 - (scanning_menu_update): new function, update one GtkCheckMenuItem from the
16356                         Wireless Scanning menu based on current wireless scan method
16357                 - (nmwa_menu_scanning_item_activate): new function, callback for GTK "activate"
16358                         signal for Wireless Scanning menu items, tell NetworkManager the new method
16359                         and update our menu items to make sure the right one is checked
16360                 - (nmwa_set_scanning_enabled_cb): remove
16361                 - (nmwa_context_menu_update): remove references to pause_scanning_item
16362                 - (nmwa_context_menu_create): remove pause_scanning_item, and add new Wireless
16363                         Scanning menu item
16364                 - (nmwa_gconf_get_wireless_scan_method): new method, pull wireless scanning method
16365                         from GConf
16366                 - nmwa_gconf_networks_notify_callback -> nmwa_gconf_info_notify_callback: generalize
16367                         so we get notified of preference values too
16368                 - (nmwa_get_instance): monitor GCONF_PATH_WIRELESS rather than GCONF_PATH_WIRELESS_NETWORKS
16369
16370         * gnome/applet/applet.h
16371                 - GCONF_PATH_WIRELESS added, one level below GCONF_PATH_WIRELESS_NETWORKS
16372                 - Add wireless scan method member to applet data
16373                 - Remove pause_scanning_item, add Wireless Scanning submenu
16374
16375         * src/NetworkManager.c
16376                 - (nm_data_new): default to NM_SCAN_METHOD_ON
16377                 - (main): grab scanning method from NMI if we can
16378
16379         * src/NetworkManagerDbus.c
16380                 - (nm_dbus_update_wireless_scan_method_cb): new function, callback from
16381                         nm_dbus_update_wireless_scan_method()
16382                 - (nm_dbus_update_wireless_scan_method): new function to grab scanning method
16383                         from NMI
16384                 - (nm_dbus_nmi_is_running): redundant function, removed
16385                 - (nm_dbus_signal_filter): trap "WirelessScanMethodUpdate" signal, grab scanning method
16386                         when NMI comes back
16387
16388         * src/NetworkManagerDevice.c
16389                 - (nm_device_is_activated): return TRUE if the device is activated
16390                 - (nm_device_wireless_scan): don't scan if the scan method is OFF, or if its AUTO
16391                         and we are activated
16392
16393         * src/nm-dbus-nm.c
16394                 - (nm_dbus_nm_set_scanning_enabled): removed
16395                 - nm_dbus_nm_get_scanning_enabled -> nm_dbus_nm_get_wireless_scan_method
16396                 - (nm_dbus_nm_methods_setup): remove [get | set] ScanningEnabled and add "getWirelessScanMethod"
16397
16398 2005-06-09  Dan Williams <dcbw@redhat.com>
16399
16400         * NetworkManager.h
16401           src/vpn-manager/nm-vpn-service.c
16402                 - NM_VPN_STATE_ERROR -> NM_VPN_STATE_UNKNOWN (more consistent with other enums)
16403
16404 2005-05-27  Dan Williams <dcbw@redhat.com>
16405
16406         * vpn-daemons/vpnc/nm-vpnc-service.c
16407                 - (vpnc_watch_cb): wait a bit before trying to read vpnc's pidfile.
16408                         Should fix the bug where the VPN connection terminates the first time.
16409
16410 2005-05-20  Dan Williams <dcbw@redhat.com>
16411
16412         * NetworkManager.h
16413                 - Differentiate VPN config signals between bad VPN config options
16414                         and bad IP config
16415
16416         * gnome/applet/applet-dbus-info.h
16417                 - Add prototypes for wireless network and vpn connection update functions
16418
16419         * gnome/applet/applet-dbus.c
16420                 - (nmwa_dbus_filter): trap new VPN config error signals from NetworkManager
16421
16422         * gnome/applet/applet.c
16423                 - (nmwa_schedule_vpn_failure_dialog): new dialog text for new VPN config
16424                         error signals
16425                 - (nmwa_gconf_networks_notify_cb): re-enable wireless network change notify
16426                         propogation to NetworkManager
16427                 - (nmwa_gconf_vpn_connections_notify_cb): re-enable vpn connection change
16428                         notify propogation to NetworkManager
16429
16430         * src/NetworkManagerDbus.c
16431                 - (nm_dbus_update_one_allowed_network): make sure to specify which AP list we
16432                         are updating so a network can be removed from it if necessary
16433
16434         * src/vpn-manager/nm-vpn-manager.c
16435                 - (nm_vpn_manager_process_signal): trap new vpn config error signals
16436
16437         * vpn-daemons/vpnc/nm-vpnc-service.c
16438                 - (nm_vpnc_dbus_signal_failure): generalize function for all VPN error signals
16439                 - (nm_vpnc_dbus_signal_launch_failed): remove
16440                 - (nm_vpnc_dbus_signal_connect_failed): remove
16441                 - (nm_vpnc_helper_timer_cb): update for new generalized error signal function
16442                 - (nm_vpnc_schedule_helper_timer): increase timeout to 10s
16443                 - (vpnc_watch_cb): don't whine about exit code if vpnc exited cleanly, update
16444                         for new generalized error signal function, remove config file stuff
16445                 - (nm_vpnc_start_vpnc_binary): grab a stdin pipe to vpnc after spawning it so
16446                         we can write configuration options to it
16447                 - (nm_vpnc_config_file_generate): removed
16448                 - (nm_vpnc_config_write): write configuration options to the vpnc stdin pipe
16449                 - (nm_vpnc_config_options_validate): validate the config options we receive
16450                         from NetworkManager to block potential exploits
16451                 - (nm_vpnc_dbus_handle_start_vpn): call option validation function before
16452                         starting vpnc
16453                 - (nm_vpnc_dbus_process_helper_config_error): actually propogate config error
16454                         to NetworkManager
16455
16456 2005-05-16  Dan Williams  <dcbw@redhat.com>
16457
16458         * vpn-daemons/vpnc/nm-vpnc-service-vpnc-helper.c
16459                 - (main): Work correctly with vpnc 0.3.3 by exiting if the "reason" code
16460                         is not "connect"
16461
16462 2005-05-16  Dan Williams  <dcbw@redhat.com>
16463
16464         Patch from Tomislav Vujec <tvujec@redhat.com>
16465         * gnome/applet/applet-dbus-info.c
16466                 - (nmi_dbus_get_vpn_connection_routes): new function, pull routes out of
16467                         GConf and pass them to NetworkManager.  New key is 'routes' under
16468                         the VPN connection, and should be a string list
16469
16470         * src/NetworkManagerSystem.c
16471                 - (nm_system_vpn_device_set_from_ip4_config): if user-defined routes exist,
16472                         set them on the device when we set the rest of the VPN config.  Ensure
16473                         they are in the correct format since they are passed directly to the
16474                         command line.
16475
16476         * src/backends/NetworkManagerRedHat.c
16477           src/backends/NetworkManagerDebian.c
16478                 - (nm_system_device_add_route_via_device_with_iface): new function
16479
16480         * src/vpn-manager/nm-dbus-vpn.c
16481                 - (nm_dbus_vpn_get_routes): grab VPN routes from NetworkManagerInfo
16482
16483         * src/vpn-manager/nm-vpn-manager.c
16484                 - (nm_vpn_manager_handle_ip4_config_signal): grab routes from NMI and pass
16485                         them into the IP4 config functions
16486
16487 2005-05-15  Dan Williams  <dcbw@redhat.com>
16488
16489         From Filip Miletic:
16490         * po/sr.po
16491           po/sr@Latn.po
16492           configure.in
16493                 - Serbian translation added
16494
16495 2005-05-15  Dan Williams  <dcbw@redhat.com>
16496
16497         * dispatcher-daemon/NetworkManagerDispatcher.c
16498                 - (main): sync arguments with NetworkManager and the applet, now use
16499                         "--no-daemon" rather than "daemon=no"
16500                 - (nmd_print_usage): Fix script path in usage message
16501
16502 2005-05-15  Dan Williams  <dcbw@redhat.com>
16503
16504         * src/NetworkManagerDevice.[ch]
16505           src/NetworkManagerPolicy.c
16506           src/NetworkManager.c
16507           src/nm-dbus-nm.c
16508                 - Remove the "just_added" parameter from nm_device_deactivate().  We no
16509                         longer send the DeviceNoLongerActive signal unconditionally, but only
16510                         when the device is actually active.
16511
16512         * dispatcher-daemon/NetworkManagerDispatcher.c
16513                 - (nmd_execute_scripts): convert to GLib directory functions from opendir(),
16514                         and simplify the logic
16515                 - (nmd_get_device_name): copy value from dbus reply so we don't segfault when
16516                         we free it later on
16517
16518         * initscript/RedHat/Makefile.am
16519           initscript/RedHat/NetworkManagerDispatcher
16520                 - Add initscript for NetworkManagerDispatcher
16521
16522
16523         Patch from Bill Moss:
16524         * dispatcher-daemon/NetworkManagerDispatcher.c
16525                 - Remove IP4AddressChange signal code including nmd_get_device_ip4_address()
16526
16527         * src/NetworkManagerDbus.c
16528                 - (nm_dbus_signal_device_ip4_address_change): remove.  If the device goes up,
16529                         and DeviceNowActive gets signaled, then the device has a new IP address
16530                         anyway.  There's no need for a separate signal.
16531
16532         * src/NetworkManagerDevice.c
16533                 - (nm_device_update_ip4_address): Don't send IP4AddressChange signal
16534
16535         * src/NetworkManagerPolicy.c
16536                 - (nm_policy_activation_finish): Send DeviceNowActive signal when the device
16537                         activates successfully.  This kind of went missing when I reworked the
16538                         activation code.
16539
16540 2005-05-15  Dan Williams  <dcbw@redhat.com>
16541
16542         * configure.in
16543                 - Check for dhcdbd and error if its not found
16544
16545         * src/dhcp-manager/Makefile.am
16546           src/dhcp-manager/nm-dhcp-manager.c
16547                 - Use path to dhcdbd that configure found
16548
16549 2005-05-14  Dan Williams  <dcbw@redhat.com>
16550
16551         * gnome/applet/nm-device.c
16552                 - (network_device_sort_wireless_networks, sort_networks_function): New functions to
16553                         sort wireless networks alphabetically
16554
16555         * gnome/applet/applet-dbus-devices.c
16556                 - (mwa_dbus_devices_lock_and_copy): Sort network device's wireless network lists
16557                         before copying them over to the GUI
16558
16559 2005-05-14  Dan Williams  <dcbw@redhat.com>
16560
16561         * src/NetworkManager.c
16562                 - (device_stop_and_free): Deactivate VPN connections before deactivating devices,
16563                         fixes a deadlock on shutdown with a VPN connection active.  This function locks
16564                         the device list, as does nm_get_active_device() which is called from
16565                         nm_vpn_manager_deactivate_vpn_connection().
16566
16567 2005-05-14  Dan Williams  <dcbw@redhat.com>
16568
16569         * NetworkManager.h
16570                 - Add signals for VPN Launch and Connect failures
16571
16572         * gnome/applet/applet-dbus.c
16573                 - (nmwa_dbus_filter): Trap new VPN launch & connect failure signals
16574
16575         * gnome/applet/applet.c
16576                 - (nmwa_show_vpn_failure_dialog): generalize old nmwa_show_vpn_login_failure_dialog()
16577                         function to handle all VPN failure messages
16578                 - (nmwa_schedule_vpn_failure_dialog): generalize old  nmwa_schedule_vpn_login_failure_dialog()
16579                         function to hanlde all VPN failure  messages
16580                 - (show_warning_dialog): work around focus-stealing prevention
16581
16582         * gnome/applet/other-network-dialog.c
16583           gnome/applet/passphrase-dialog.c
16584                 - (update_button_cb): Make sure the OK button is enabled when it should be, fixes
16585                         problem where it never enabled for ASCII Key and Hex Key types
16586
16587         * gnome/applet/wireless-applet.glade
16588                 - Add window title to Other Wireless Network Dialog
16589
16590         * src/vpn-manager/nm-dbus-vpn.c
16591                 - (nm_dbus_vpn_signal_vpn_failed): generalize old nm_dbus_vpn_signal_vpn_login_failed()
16592                         function to handle all VPN failure messages
16593
16594         * src/vpn-manager/nm-vpn-manager.c
16595                 - (nm_vpn_manager_process_signal): trap and proxy VPN launch & connect failure signals too
16596
16597         * vpn-daemons/vpnc/nm-vpnc-service.c
16598                 - (nm_vpnc_dbus_signal_launch_failed): new function
16599                 - (nm_vpnc_dbus_signal_connect_failed): new function
16600                 - (nm_vpnc_helper_timer_cb): signal connect failure on timeout
16601                 - (vpnc_watch_cb): signal connection failure when vpnc exits with connection failure
16602                 - (nm_vpnc_start_vpnc_binary): search a number of locations for vpnc
16603                 - (nm_vpnc_dbus_handle_start): send launch failure signal when we fail to launch vpnc
16604
16605 2005-05-11  Dan Williams  <dcbw@redhat.com>
16606
16607         * vpn-daemons/vpnc/nm-vpnc-service.c
16608                 - (nm_vpnc_start_vpnc_binary): NULL-ify GError before using it
16609                 - (nm_vpnc_config_file_generate): Attempt to ensure that the path for the config
16610                         file exists before trying to write it out.
16611
16612 2005-05-10  Dan Williams  <dcbw@redhat.com>
16613
16614     * gnome/applet/applet-dbus-device.c
16615         - (nmwa_dbus_set_device): remove check for valid key and key type, which 
16616             prevented just entering ESSID and leaving key and key type up to
16617             NetworkManager (which should have them already cached)
16618
16619 2005-05-08  Dan Williams  <dcbw@redhat.com>
16620
16621         * src/NetworkManagerPolicy.c
16622                 - (nm_policy_activation_finish): Don't set NM_ACT_STAGE_ACTIVATED here, instead...
16623                 - (nm_policy_schedule_activation_finish): Set NM_ACT_STAGE_ACTIVATED here to
16624                         fix a situation where NM is told to terminate and the device stops activation,
16625                         but the main thread isn't aware of that because it would never have run
16626                         nm_policy_activation_finish() to set the ACTIVATED flag, because the main loop
16627                         had already quit.
16628
16629         * src/NetworkManagerDevice.c
16630                 - (nm_device_probe_wired_link_state): cosmetic fixes
16631                 - (nm_device_activate_stage5_ip_config_commit): Don't check link state if
16632                         we've failed to activate or been canceled.
16633                 - (nm_ac_test): nm_debug -> nm_info for "waiting for device to cancel" message
16634
16635 2005-05-08  Dan Williams  <dcbw@redhat.com>
16636
16637         * src/NetworkManagerWireless.c
16638                 - (nm_wireless_qual_to_percent): Fix #if -> #ifdef, print out the "updated"
16639                         value of WEXT quality structures, and add a debug message when we cannot
16640                         determine any quality % at all
16641
16642 2005-05-08  Dan Williams  <dcbw@redhat.com>
16643
16644         * src/dhcp-manager/nm-dhcp-manager.c
16645                 - (nm_dhcp_manager_begin_transaction): Tell dhclient to release leases when
16646                         it goes down.
16647
16648 2005-05-06  Dan Williams  <dcbw@redhat.com>
16649
16650         * gnome/applet/applet-dbus-device.c
16651           gnome/applet/applet-dbus-info.c
16652           gnome/applet/applet-dbus.c
16653           gnome/applet/applet.c
16654           gnome/applet/applet.h
16655                 - (nmwa_get_device_for_nm_device) -> (nmwa_get_device_for_nm_path)
16656
16657         * gnome/applet/applet-dbus.c
16658                 - (nmwa_dbus_filter): trap DeviceCarrierOn/DeviceCarrierOff signals
16659                         so we notice when wired device's carriers come back on.  Should
16660                         fix issue with wired devices being grayed out even if the cable
16661                         is in, for devices that support carrier detection.
16662
16663         * gnome/applet/applet.c
16664                 - (nmwa_driver_notify): bash focus-stealing prevention in the face
16665                 - (nmwa_act_stage_to_pixbuf): Clarify wireless ACT_STAGE_DEVICE_CONFIG
16666                         tooltip message
16667                 - (nmwa_menu_item_activate, nmwa_menu_add_device_item, nmwa_menu_item_data_free):
16668                         Fix situation where applet wouldn't respond to menu selections
16669
16670         * src/NetworkManager.c
16671           src/NetworkManagerDevice.c
16672           src/NetworkManagerDbus.c
16673           src/NetworkManagerDbus.h
16674                 - (nm_dbus_signal_device_status_change) -> (nm_dbus_schedule_device_status_change_signal)
16675
16676         * src/NetworkManagerDbus.c
16677                 - (nm_dbus_send_network_not_found, nm_dbus_schedule_network_not_found_signal):
16678                         Remove, no longer used or relevant
16679                 - (nm_dbus_signal_device_status_change): Better signal enum->string matching
16680                 - (nm_dbus_schedule_device_status_change_signal): add
16681
16682         * src/NetworkManagerDevice.c
16683                 - (nm_device_worker_thread_stop): don't try to join a NULL worker thread
16684                 - (nm_device_set_link_active): Fix up switching for non-carrier-detect devices,
16685                         ie don't deactivate them unless explicitly told to by the user.  Also send
16686                         CARRIER_OFF / CARRIER_ON signals when link changes
16687                 - (nm_device_set_essid, nm_device_set_enc_key, nm_device_is_up, nm_device_set_mode):
16688                         Don't print error message when device is no longer around
16689                 - (nm_device_deactivate): kill any current DHCP process attached to this device,
16690                         not just during activation
16691
16692         * src/NetworkManagerPolicy.c
16693                 - (nm_policy_auto_get_best_device): Ignore semi-supported devices completely from
16694                         auto-device-selection.
16695                 - (nm_policy_device_change_check): Don't interrupt semi-supported devices
16696
16697         * src/NetworkManagerSystem.c
16698                 - (nm_system_device_set_up_down_with_iface): Quiet first warning message when device
16699                         is no longer present (Bill Moss)
16700
16701         * src/backends/shvar.c
16702                 - (svOpenFile): Open read-only to make SELinux happy
16703
16704         * src/backends/NetworkManagerRedHat.c
16705                 - (nm_system_device_get_system_config): Use SYSCONFDIR rather than hardcoding
16706                         the path to the ifcfg-* files
16707
16708 2005-05-05  Dan Williams  <dcbw@redhat.com>
16709
16710         * Expose activation stages to NetworkManager clients, like the applet
16711         * Add Diana's progress icons to the applet, cued off NM activation stage
16712         * Use more descriptive tooltips, cued off NM activation stage
16713
16714 2005-05-05  Ray Strode  <rstrode@redhat.com>
16715
16716         * src/nm-netlink-monitor.c:
16717                 - Use clear_event_source instead of g_nullify_pointer() again.
16718
16719 2005-05-05  Dan Williams  <dcbw@redhat.com>
16720
16721         * gnome/applet/main.c
16722                 - Fix session management so the applet is actually managed now
16723
16724         * gnome/applet/passphrase-dialog.c
16725                 - (nmi_passphrase_dialog_show): bash focus-stealing prevention in the face
16726
16727 2005-05-05  Dan Williams  <dcbw@redhat.com>
16728
16729         Patch from Bill Moss:
16730         * gnome/libnm_glib/libnm_glib.c
16731                 - Fix for dbus-0.33
16732
16733 2005-05-05  Dan Williams  <dcbw@redhat.com>
16734
16735         Suggestion from Bill Moss:
16736         * src/NetworkManagerSystem.c
16737                 - (nm_system_device_set_up_down_with_iface): ignore ENODEV
16738
16739
16740         * src/NetworkManager.c
16741                 - (nm_data_free): move destruction of the various managers after
16742                         release of device list, because deactivating and freeing a device
16743                         requires at least the named manager
16744                 - (nm_poll_and_update_wireless_link_state):
16745                   (nm_device_link_activated):
16746                   (nm_device_link_deactivated):
16747                         don't grab the device list lock when actually updating device
16748                         link status or strength, since nm_device_set_link_active()
16749                         needs to call nm_get_active_device(), which also locks the device list.
16750
16751         * src/NetworkManagerDevice.c
16752                 - (nm_device_set_link_active): if a device's link switches from off->on,
16753                         and it's wired, and the active device is wireless (or there is no
16754                         active device), activate the new device whose link just came on
16755                 - (link_to_specific_ap): try to smooth over intermittency in wireless links
16756                         my only calling the link to the current ap "failed" when more than 2
16757                         consecutive link checks have failed
16758
16759 2005-05-04  Dan Williams  <dcbw@redhat.com>
16760
16761         * src/NetworkManagerDevice.c
16762                 - (nm_device_probe_wireless_link_state): don't lock the scan mutex here
16763                         but let link_to_specific_ap() do the locking where it needs
16764
16765         Patch from Bill Moss:
16766         * src/NetworkManagerSystem.c
16767                 - Set MTU of VPN devices to 1412
16768
16769 2005-05-04  Dan Williams  <dcbw@redhat.com>
16770
16771         * Remove NM_STATE_SCANNING from NetworkManager.h and applet code
16772
16773         * Fix some holes in device activation and retaining the currently connected
16774                 access point
16775
16776 2005-05-03  Dan Williams  <dcbw@redhat.com>
16777
16778         * Kill dhcpcd.  We now use "dhcdbd", a dbus daemon that controls dhclient.
16779           This means that NetworkManager shouldn't have DHCP issues anymore.  It also
16780           means you need dhcdbd, which you can get here (get the latest one):
16781
16782                 http://people.redhat.com/jvdias/dhcdbd/
16783
16784           Technically NetworkManager can use any DHCP daemon that uses the same DBUS
16785           interface as dhcdbd.
16786
16787         * Rewrite device activation to facilitate the new DHCP infrastructure and
16788           future improvements.  Its now "activation request" based, ie there is a single
16789           activation request composed of the device, access point, and other info which
16790           follows the entire activation process.  There are 5 stages of the activation
16791           process which correspond to:
16792
16793                 1) Device preparation
16794                 2) Device configuration (bring it up, set ESSID/Key/etc)
16795                 3) IP Config Start (fire off DHCP if we're using it)
16796                 4) IP Config Get (grab config from DHCP or static config files)
16797                 5) IP Config Commit (set device's IP address, DNS, etc)
16798
16799           Note that there is no longer a "scanning" step, since the access point must
16800           be known _before_ activation starts.  If the access point drops out or does
16801           not exist for some reason, the entire activation process fails and must be
16802           restarted for a different access point or device.
16803
16804         Patch from Bill Moss:
16805         * gnome/applet/applet.c
16806                 - Fix type of vpn_failure dialog -> vpn_banner dialog
16807
16808 2005-04-27  Dan Williams  <dcbw@redhat.com>
16809
16810         * gnome/applet/applet-dbus-vpn.c
16811           gnome/applet/applet.c
16812           gnome/applet/applet.h
16813                 - Fix up active VPN handling so that we reliably know when a VPN
16814                         connection has been deactivated
16815
16816         * src/vpn-manager/nm-vpn-manager.c
16817                 - Remove duplicate VPNConnectionChange signal
16818
16819 2005-04-27  Dan Williams  <dcbw@redhat.com>
16820
16821         Patch from Peter Jones:
16822         * Remove usage of varargs to fix crashes on PPC (RH #154336)
16823
16824         Patch from Bill Moss:
16825         * src/NetworkManagerSystem.c
16826                 - Fix checking of return value from ioctl()
16827
16828 2005-04-27  Dan Williams  <dcbw@redhat.com>
16829
16830         * Fix choosing of wireless networks and "Other wireless network..." from the applet
16831         * Warn and exit if icons cannot be found
16832
16833 2005-04-27  Dan Williams  <dcbw@redhat.com>
16834
16835         Patch from Tom Parker:
16836         * Update debian backend
16837
16838 2005-04-27  Dan Williams  <dcbw@redhat.com>
16839
16840         * Merge the applet and the info-daemon, and move the converged
16841                 applet under gnome/applet
16842         * Move libnm_glib to gnome/libnm_glib
16843         * Convert most dbus calls between the applet, info-daemon, and NM
16844                 into async calls
16845         * Fix a few things valgrind noticed
16846         * Make NM broadcast state more reliably
16847
16848 2005-04-22  Pawan chitrakar  <pawan@nplinux.org>
16849
16850         * configure.in: Added ne in ALL_LINGUAS
16851
16852 2005-04-15  Dan Williams  <dcbw@redhat.com>
16853
16854         * libnm_glib/libnm_glib: Fix up for dbus-0.32, and remove
16855                 code for dbus 0.2x versions
16856
16857 2005-04-15  Dan Williams  <dcbw@redhat.com>
16858
16859         Patches from Tom Parker:
16860         - Fix memleaks
16861         - Join with worker thread rather than polling for its exit
16862
16863         Patch from Bill Moss:
16864         - Cull duplicate ESSIDs from the scan list, taking highest strength AP
16865
16866 2005-04-15  Dan Williams  <dcbw@redhat.com>
16867
16868         - Fixes to pass 'make distcheck'
16869
16870 2005-04-15  Dan Williams  <dcbw@redhat.com>
16871
16872         Initial VPN Support
16873                 - supports 'vpnc'
16874                 - reworks device IP configuration, backend files have changed and will need
16875                         to be updated for all distributions.  I will try to do what I can for
16876                         them, but I cannot test them.
16877
16878         - Move named directory to src/named-manager
16879         - Make backends directory self-contained
16880
16881 2005-04-06  Dan Williams  <dcbw@redhat.com>
16882
16883         Add debug code for socket/file descriptor leaks.  We register every socket
16884         that we open (except for stuff in dhcpcd/) for tracking, and print out the
16885         list of sockets that we forgot to close on shutdown.  This also consolidates
16886         about 4 places where we opened sockets into 1 function in NetworkManagerUtils.c
16887
16888 2005-04-06  Dan Williams  <dcbw@redhat.com>
16889
16890         * dhcpcd/dhcpcd.c
16891                 - (dhcp_interface_free): fix a file descriptor leak that may have
16892                         caused network drivers to not unload due to refcounts > 0
16893
16894 2005-04-04  Dan Williams  <dcbw@redhat.com>
16895
16896         * panel-applet/NMWirelessAppletDbus.c
16897                 - (nmwa_dbus_call_nm_method): remove some commented code
16898
16899         * src/NetworkManagerAPList.[ch]
16900                 - (nm_ap_list_remove_ap_by_essid): new function
16901
16902         * src/NetworkManagerDevice.c
16903                 - (nm_device_wireless_force_use): remove access points from the ignore list
16904                         when the user forces them
16905
16906         * src/nm-dbus-device.c
16907                 - (nm_dbus_device_get_active_network): fix up escaping of object paths
16908
16909 2005-04-04  Dan Williams  <dcbw@redhat.com>
16910
16911         Patch from Tom Parker: include "nm-utils.h" for backend files that need it
16912
16913 2005-04-04  Dan Williams  <dcbw@redhat.com>
16914
16915         * src/NetworkManagerDevice.c:
16916                 - (nm_completion_scan_has_results): restore pre-completion-patch behavior
16917                         of only erroring after the second consecutive scan times out.  Also
16918                         don't exit when the card requires more time than we can give it, just
16919                         log the event and continue.
16920
16921 2005-04-01  Steve Murphy  <murf@e-tools.com>
16922
16923         * configure.in: Added "rw" to ALL_LINGUAS.
16924
16925 2005-04-01  Dan Williams <dcbw@redhat.com>
16926
16927         Perform scans during device activation, if needed.  Both activation 
16928         and scans run in the same GMainContext.  Therefore, if an access point
16929         is not found by the time the device starts activation, it will not
16930         be available until after activation.  We now try to scan during
16931         activation (in nm_wa_test) every 15s so that all available access
16932         points are more likely to be found and available for the activation
16933         procedure.
16934
16935         Also change nm_wireless_link_state_handle() to only update the "best"
16936         AP if we are not forcing a device and if we are not about to change
16937         state.  This attempts to work around a race when forcing a device,
16938         where the forced AP would get cleared out too soon by the link state
16939         checking timeout in the main thread, and the activation attempt with
16940         that AP would fail.
16941
16942 2005-04-01  Dan Williams <dcbw@redhat.com>
16943
16944         * po/POTFILES.in
16945                 - Update with new translatables
16946
16947 2005-03-31  Dan Williams <dcbw@redhat.com>
16948
16949         * panel-applet/NMWirelessAppletDbus.c
16950                 - Fix device names now that hal has changed device parenting for
16951                         network devices.
16952
16953 2005-03-31  Dan Williams <dcbw@redhat.com>
16954
16955         Tighten up handling of wireless devices that don't support wireless
16956         scanning (ie, Orinoco).  Due to restructuring of code, these devices
16957         hadn't been doing pseudo-scanning for a while either and would just
16958         spin waiting for an access point.  They are now manual devices where
16959         the user must choose the access point from the menu every time.  All
16960         "allowed" access points are listed in the applet's menu regardless
16961         of whether or not they can be seen by the card, since it can't scan
16962         anyway.
16963
16964         * src/NetworkManager.c
16965                 - (nm_wireless_link_state_handle): new function, but only update
16966                         the "best" ap for non-scanning devices when its not activating,
16967                         and when no device is being forced on the card
16968                 - (nm_link_state_monitor): split wireless link state handling out
16969                         into separate function
16970
16971         * src/NetworkManagerDevice.c
16972                 - (nm_device_copy_allowed_to_dev_list): new function
16973                 - (nm_device_new): populate non-scanning cards' AP lists with
16974                         access points from the "allowed" list
16975                 - (nm_device_new): don't start a scanning timeout for devices that
16976                         can't scan
16977                 - (nm_device_activation_schedule_finish): new parameter, should be
16978                         the AP that failed to be connected to, pass it on to the
16979                         activation finish function in NetworkManagerPolicy.c
16980                 - (nm_device_activate_wireless): don't ever try to get a new AP
16981                         for non-scanning devices, just fail.  The user must choose
16982                         a new access point manually.
16983                 - (nm_device_activate): grab the AP that failed connection and
16984                         pass it on
16985                 - (nm_device_update_best_ap): Clear the best AP if we don't have
16986                         a link to it, user must manually choose a new one
16987                 - (nm_device_do_pseudo_scan): remove function
16988                 - (nm_device_wireless_process_scan_results): remove bits for non-
16989                         scanning cards since they never get here
16990                 - (nm_device_wireless_scan): remove bits for non-scanning devices,
16991                         and fake the scan list for test devices a bit earlier
16992
16993         * src/NetworkManagerPolicy.c
16994                 - (nm_policy_activation_finish): use the failed_ap that we get
16995                         passed rather than getting the best_ap from the card, which
16996                         may have changed since we were scheduled
16997                 - (nm_policy_allowed_ap_list_update): for non-scanning devices,
16998                         update their scan list directly from the allowed list when
16999                         we get updates to the allowed list from NetworkManagerInfo
17000
17001         * src/NetworkManagerPolicy.h
17002                 - New member for failed access point in NMActivationResult
17003
17004   -------------------------------------
17005
17006         Driver Notification patch: notifies the user when their driver
17007                 sucks.  Gives them the option to ignore further insertions
17008                 of the card that has the sucky driver.
17009
17010         * NetworkManager.h
17011                 - Remove the SEMI_SUPPORTED member from the NMDriverSupportLevel
17012                         enum and replace it with NO_CARRIER_DETECT and
17013                         NO_WIRELESS_SCAN
17014
17015         * panel-applet/NMWirelessApplet.[ch]
17016                 - Merge essid.glade -> wireless-applet.glade
17017                 - Implement the "Your driver sucks" notification dialog
17018
17019         * panel-applet/NMWirelessAppletDbus.c
17020                 - Change stuff from getSupportsCarrierDetect->getDriverSupportLevel
17021                 - Grab hardware address for each device from NM too
17022                 - Check whether the driver for each device sucks or not whenever
17023                         a new device is noticed
17024
17025         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
17026                 - Deal with stuff being in wireless-applet.glade now rather than essid.glade
17027
17028         * src/NetworkManager.c
17029                 - Fix a double-unref on device removal
17030
17031         * src/NetworkManagerUtils.c
17032                 - Set appropriate driver support level on a device that doesn't
17033                         support scanning or carrier detection
17034
17035         * src/nm-dbus-device.c
17036                 - New "getHWAddress" dbus method on devices
17037                 - getSupportsCarrierDetect -> getDriverSupportLevel
17038
17039 2005-03-31  Dan Williams <dcbw@redhat.com>
17040
17041         * src/NetworkManagerDevice.c
17042                 - (nm_device_wireless_scan): Fix leak of scan results in some
17043                         instances
17044
17045 2005-03-29  Dan Williams <dcbw@redhat.com>
17046
17047         * src/NetworkManager.c
17048                 - (nm_poll_and_update_wireless_link_state): make code less indented
17049
17050         Patch from Bill Moss:
17051         * src/NetworkManager.c
17052                 - (nm_device_update_link_state): Update signal strength on wireless
17053                         devices every time we update link state too.
17054
17055 2005-03-29  Dan Williams <dcbw@redhat.com>
17056
17057         * src/NetworkManagerDevice.c
17058                 - (nm_device_set_essid): Work around Orinoco cards which need
17059                         extra time after setting the ESSID
17060
17061 2005-03-29  Dan Williams <dcbw@redhat.com>
17062
17063         * src/NetworkManagerDevice.c
17064                 - Merge one more bit of Peter Jones' completion patch
17065
17066 2005-03-29  Dan Williams <dcbw@redhat.com>
17067
17068         * src/NetworkManagerDevice.c
17069                 - (nm_device_force_use): Fix possible segfault
17070
17071 2005-03-29  Dan Williams <dcbw@redhat.com>
17072
17073         * src/NetworkManagerDevice.c
17074                 - Use iw_get_ext() where we should rather than iw_set_ext()
17075
17076 2005-03-29  Dan Williams <dcbw@redhat.com>
17077
17078         * src/NetworkManagerDevice.c
17079                 - (nm_device_set_up_down): remove check for unsupported devices
17080                         that caused NM to not bring devices up when they were
17081                         added to the device list.
17082
17083 2005-03-28  Dan Williams <dcbw@redhat.com>
17084
17085         * src/NetworkManagerDevice.c
17086                 - (mdio_read): Fix two bugs that caused all devices to fail
17087                         the MII carrier detection support checks
17088
17089 2005-03-26  Dan Williams <dcbw@redhat.com>
17090
17091         * src/NetworkManagerDevice.c
17092                 - (nm_device_wireless_scan): Remove duplicated scanning code
17093
17094 2005-03-25  Dan Williams <dcbw@redhat.com>
17095
17096         * panel-applet/NMWirelessApplet.c
17097                 - (nmwa_about_cb): Add some more contributors
17098                 - (nmwa_update_state): show the applet when there's no connection
17099                 - Enable the "Stop/Resume all wireless devices" option in the
17100                         context menu
17101                 - New "no connection" icon
17102
17103         * src/NetworkManager.c
17104                 - (nm_poll_and_update_wireless_link_state): don't do anything if
17105                         wireless is disabled or we're asleep
17106
17107         * src/NetworkManagerDHCP.c
17108                 - Remove trailing "\n" on debug messages
17109
17110         * src/NetworkManagerDbus.c
17111                 - (nm_dbus_network_status_from_data): new state "asleep"
17112
17113         * src/NetworkManagerDevice.c
17114                 - Merge most of Peter Jones' "completion" patch that greatly reduces
17115                         latency and wait times for most operations
17116                 - (nm_device_wireless_scan): Don't scan when asleep
17117
17118         * src/NetworkManagerPolicy.c
17119                 - (nm_policy_get_best_device): return no device when asleep
17120                 - (nm_policy_allowed_ap_list_update): From Bill Moss: merge properties
17121                         for all wireless devices on update, not just active device
17122
17123         * src/NetworkManagerUtils.c
17124                 - Merge Peter Jones' "completion" patch
17125
17126         * src/nm-dbus-nm.c
17127                 - (nm_dbus_nm_set_wireless_enabled): bring down wireless devices when
17128                         we're told to disable them
17129                 - (nm_dbus_nm_sleep, nm_dbus_nm_wake): new functions for sleep/wake
17130
17131         * utils/nm-utils.h
17132                 - New variants of the warn/info/error/debug print functions that can take
17133                         variables rather than static strings
17134
17135 2005-03-24  Dan Williams <dcbw@redhat.com>
17136
17137         * src/NetworkManagerUtils.c
17138                 - (nm_get_device_driver_name): driver names are now on the parents of
17139                         "Network Interface" objects, so look for them there
17140
17141 2005-03-24  Dan Williams <dcbw@redhat.com>
17142
17143         * test/nmtest.c
17144                 - Escape some forgotten object paths before we shove them through dbus
17145
17146 2005-03-24  Dan Williams <dcbw@redhat.com>
17147
17148         * dhcpcd/dhcpcd.[ch]
17149           src/NetworkManagerDHCP.c
17150                 - Switch names from "*_record_*" -> "*_element_*" to clarify things a bit
17151                         (ie, dhcp_option_record_len -> dhcp_option_element_len)
17152
17153         * src/NetworkManagerDbus.c
17154                 - spacing cleanups
17155
17156         * src/nm-dbus-dhcp.c
17157                 - Make the API suck less.  There is now only 1 type of each function,
17158                         ie only "getInteger" and no longer also "getIntegerv".  All types
17159                         are returned encapsulated in a DBUS_TYPE_ARRAY, even for options
17160                         that will never have more than 1 element.  This should simplify
17161                         things greatly.
17162
17163         * test/nm-dhcp-opt-test.c
17164                 - Make the tool not segfault
17165                 - adapt to new DHCP Options API
17166
17167 2005-03-22  Dan Williams <dcbw@redhat.com>
17168
17169         * src/NetworkManager.c
17170                 - (nm_wired_link_deactivated): actually ignore netlink events from
17171                         wireless devices.
17172
17173 2005-03-22  Dan Williams <dcbw@redhat.com>
17174
17175         * src/NetworkManager.c
17176                 - (nm_wired_link_activated): actually ignore netlink events from
17177                         wireless devices.
17178
17179 2005-03-17  Dan Williams <dcbw@redhat.com>
17180
17181         Patch from Tom Parker:
17182         * src/nm-netlink-monitor.c
17183                 - Include unistd.h
17184         * info-daemon/NetworkManagerInfoDbus.c
17185                 - (nmi_dbus_update_network_auth_method): free GConf values
17186
17187         Patch from Nathaniel McCallum <npmccallum@gentoo.org>:
17188         * src/NetworkManagerDevice.c
17189                 - (nm_device_set_wireless_config): wait for successful
17190                         association longer for some cards (Atheros a/b/g)
17191
17192 2005-03-15  Ray Strode  <rstrode@redhat.com>
17193
17194         * src/NetworkManager.c:
17195         (sigterm_pipe_handler):
17196         remove bogus FIXME
17197
17198 2005-03-15  Ray Strode  <rstrode@redhat.com>
17199
17200         * src/NetworkManagerDbus.c:
17201         Fix some sign weirdness that gcc4 doesn't like,
17202         and add a header file so PPC can hopefully find
17203         SIGTRAP
17204
17205 2005-03-14  Ray Strode  <rstrode@redhat.com>
17206         
17207         Fourth (probably working) cut at porting to
17208         dbus 0.30 api and new hal. This cut adds
17209         some new logging macros to make debugging
17210         easier.
17211
17212         * dispatcher-daemon/NetworkManagerDispatcher.c:
17213         * info-daemon/NetworkmanagerInfo.c:
17214         * info-daemon/NetworkManagerInfoPassphraseDialog.c:
17215         * info-daemon/NetworkManagerInfoVPN.c:
17216         * src/NetworkManager.c:
17217         * src/NetworkManagerAP.c:
17218         * src/NetworkManagerAPList.c:
17219         * src/NetworkManagerDHCP.c:
17220         * src/NetworkManagerDbus.c:
17221         * src/NetworkManagerDevice.c:
17222         * src/NetworkManagerPolicy.c:
17223         * src/NetworkManagerSystem.c:
17224         * src/NetworkManagerUtils.c:
17225         * src/NetworkManagerWireless.c:
17226         * src/autoip.c:
17227         * src/nm-dbus-nm.c:
17228         * src/backends/NetworkManagerDebian.c:
17229         * src/backends/NetworkManagerGentoo.c:
17230         * src/backends/NetworkManagerRedHat.c:
17231         * src/backends/NetworkManagerSlackware.c:
17232         use new logging macros.
17233
17234         * dispatcher-daemon/NetworkManagerDispatcher.c:
17235         (nmd_dbus_filter): s/dbus_free/g_free/
17236
17237         * info-daemon/Makefile.am: link in utils library.
17238         * info-daemon/NetworkmanagerInfo.c: use new logging 
17239         macros.
17240         (nmi_dbus_get_network): don't assume enumerations
17241         are 32-bit.
17242         (nmi_dbus_nmi_message_handler): don't free what 
17243         doesn't belong to us.
17244
17245         * libnm_glib/libnm_glib.c:
17246         (libnm_glib_get_nm_status): 
17247         (libnm_glib_init): don't free what doesn't
17248         belong to us.
17249         (libnm_glib_dbus): strdup result, so it doesn't get
17250         lost when message is unref'd.
17251
17252         * panel-applet/NMWirelessAppletDbus.c:
17253         (nmwa_dbus_update_devices): s/dbus_free/g_free/
17254
17255         * src/NetworkManager.c:
17256         (nm_monitor_wired_link_state): request initial status 
17257         dump of all cards when we start up, instead of relying
17258         on /sys/.../carrier.
17259         (nm_info_handler), (nm_set_up_log_handlers): 
17260         log handlers to specify what syslog priorites 
17261         the logging macros default to.
17262
17263         * src/NetworkManagerAPList.c: 
17264         (nm_ap_list_populate_from_nmi):
17265         s/dbus_free_string_array/g_strfreev/
17266
17267         * src/NetworkManagerDbus.c:
17268         (nm_dbus_get_network_object):
17269         validate d-bus message argument types.
17270         Advance message iterator after reading argument,
17271         prepend instead of append to GSList.
17272
17273         * src/NetworkManagerDevice.c:
17274         (nm_device_probe_wired_link_status):
17275         remove redundant /sys in /sys path. remove wrong
17276         contents == NULL means has carrier assumption.
17277
17278         * src/nm-netlink-monitor.c 
17279         (nm_netlink_monitor_request_status): implement
17280         function to ask kernel to dump interface link
17281         status over netlink socket.
17282
17283         * test/*.c: s/dbus_free/g_free/
17284
17285         * utils/nm-utils.h:
17286         (nm_print_backtrace): new macro to print backtrace.
17287         (nm_get_timestamp): new macro to get sub-second precise
17288         unix timestamp.
17289         (nm_info), (nm_debug), (nm_warning), (nm_error):
17290         new logging functions. nm_info just prints,
17291         nm_debug includes timestamp and function,
17292         nm_warning includes function, nm_error includes
17293         backtrace and sigtrap.
17294
17295 2005-03-11  Ray Strode  <rstrode@redhat.com>
17296
17297         Third (unfinished, partially working) cut at porting to 
17298         dbus 0.30 api and new hal.
17299
17300         * info-daemon/NetworkManagerInfoDbus.c:
17301                 don't free null arrays.
17302
17303         * panel-applet/NMWirelessAppletDbus.c: 
17304         * src/nm-dbus-device.c:
17305         * src/nm-dbus-net.c: 
17306         * src/NetworkManagerDbus.c: more 
17307         STRING -> OBJECT_PATH fun
17308         * src/NetworkManagerDevice.c:
17309         * src/NetworkManagerDevice.h:
17310         (rename nm_device_get_link_active): rename to 
17311         nm_device_has_active_link
17312         (nm_device_wireless_link_active): rename to
17313         nm_device_probe_wireless_link_state
17314         (nm_device_wired_link_active): rename to
17315         nm_device_probe_wired_link_state.  Rewrite to
17316         use carrier file since hal doesn't maintain
17317         link state anymore.
17318         (nm_device_update_link_active): rename to
17319         nm_device_update_link_state
17320         * src/NetworkManagerPolicy.c 
17321           (nm_policy_activation_finish): check for NULL
17322           MAC address.
17323
17324         * src/Makefile.am:
17325         * src/NetworkManagerMain.h: 
17326         * src/NetworkManager.c:
17327         * src/nm-netlink-monitor.c:
17328         * src/nm-netlink-monitor.h: New class to support
17329         monitoring wired ethernet link status, since HAL
17330         doesn't export that information anymore.
17331
17332 2005-03-09  Ray Strode  <rstrode@redhat.com>
17333
17334         Second (unfinished, unworking) cut at porting to 
17335         dbus 0.30 api.
17336
17337         * dispatcher-daemon/NetworkManagerDispatcher.c:
17338         * info-daemon/NetworkManagerInfoDbus.c:
17339         * panel-applet/NMWirelessAppletDbus.c:
17340         * src/NetworkManagerDbusUtils.c:
17341         * src/NetworkManagerDbusUtils.h:
17342         * src/nm-dbus-device.c:
17343         * src/nm-dbus-nm.c:
17344         * test/nmtest.c: support dbus "object path" type
17345
17346         * configure.in: 
17347         * Makefile.am:
17348         * info-daemon/Makefile.am:
17349         * libnm_glib/Makefile.am:
17350         * panel-applet/Makefile.am:
17351         * dispatcher-daemon/Makefile.am
17352         * src/Makefile.am:
17353         * test/Makefile.am:
17354         * utils/Makefile.am: 
17355         * utils/nm-utils.c: 
17356         * utils/nm-utils.h: new utils static lib
17357
17358 2005-03-07  Ray Strode  <rstrode@redhat.com>
17359
17360         * info-daemon/NetworkManagerInfoDbus.c:
17361         * libnm_glib/libnm_glib.c:
17362         * panel-applet/NMWirelessAppletDbus.c:
17363         * src/NetworkManager.c:
17364         * src/NetworkManagerDbus.c:
17365         * src/NetworkManagerDevice.c:
17366         * src/NetworkManagerUtils.c:
17367         * src/nm-dbus-device.c:
17368         * src/nm-dbus-dhcp.c:
17369         * src/nm-dbus-net.c:
17370         * src/nm-dbus-nm.c:
17371         * test/nminfotest.c:
17372         First (unfinished, unworking) cut at porting to dbus 0.30 api.
17373
17374 2005-03-04  Dan Williams  <dcbw@redhat.com>
17375
17376         * configure.in
17377                 - Mark HEAD as 0.4
17378
17379 2005-03-04  Dan Williams  <dcbw@redhat.com>
17380
17381         Patch from Peter Jones:
17382         - Make stuff work with gcc 4.0
17383
17384 2005-02-28  Maxim Dziumanenko <mvd@mylinux.com.ua>
17385
17386         * uk.po: Added "uk" (Ukrainian) to ALL_LINGUAS.
17387
17388 2005-02-27  Jim Huang  <jserv@kaffe.org>
17389
17390         * configure.in: Added "zh_TW" (Traditional Chinese) to ALL_LINGUAS.
17391
17392 2005-02-27  Dan Williams  <dcbw@redhat.com>
17393
17394         Patch from Bill Moss:
17395         * panel-applet/NMWirelessAppletDbus.c
17396                 - Make sure strength for current access point is up-to-date when we
17397                         update the gui data model
17398
17399 2005-02-27  Alessio Frusciante  <algol@firenze.linux.it>
17400
17401         * configure.in: Added "it" (Italian) to ALL_LINGUAS.
17402
17403 2005-02-27  Dan Williams  <dcbw@redhat.com>
17404
17405         * src/backends/NetworkManagerRedHat.c
17406                 - (nm_system_init): Kill any dhclient processes lying around as well
17407                         as stopping 'nifd' if its already been started.  NetworkManager
17408                         subsumes the functions of nifd (kicking mDNSResponder, autoip)
17409
17410 2005-02-27  Dan Williams  <dcbw@redhat.com>
17411
17412         * panel-applet/NMWirelessApplet.c
17413                 - (nmwa_destroy): Really mean to destroy GUI data model first, then
17414                         dbus data model, not the GUI data model twice.
17415
17416 2005-02-27  Dan Williams  <dcbw@redhat.com>
17417
17418         * panel-applet/NMWirelessApplet.[ch]
17419           panel-applet/NMWirelessAppletDbus.[ch]
17420                 - Move to incremental network updates.  Instead of blowing away our list
17421                         of devices every time we get a signal from NetworkManager, we now
17422                         incrementally add/remove networks when NetworkManager notifies us that
17423                         a new network has appeared or disappered.  Strength updates now happen
17424                         on-the-fly for each access point as well.  There are now two copies of
17425                         data from NetworkManager: one for the dbus side, and one for the gui side.
17426                         When the dbus side data is modified, it is copied over to the gui side
17427                         so we don't have to hold the data_mutex for long periods of time (and
17428                         therefore block animation of the applet's icon).
17429                 - Clean up some memleaks too
17430
17431         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
17432                 - Minor code beautification
17433
17434         * src/NetworkManagerAPList.c
17435                 - (nm_ap_list_merge_scanned_ap): return whether or not the access point is
17436                         completely new and whether or not an existing one's strength was updated.
17437                         Try to fix multiple access points and signal strength by using the highest
17438                         signal strength in each scan for any given ESSID.
17439
17440         * src/NetworkManagerDbus.[ch]
17441                 - (nm_dbus_signal_wireless_network_change): consolidate signals that deal with
17442                         wireless networks; now we have only WirelessNetworkUpdate which includes
17443                         a UINT32 for Appeared, Disappeared, or StrengthChanged (see NetworkManager.h).
17444                 - Kill usage of DbusMessageIter
17445
17446         * src/NetworkManagerDevice.c
17447                 - (nm_device_wireless_process_scan_results): Use the same timestamp for all APs
17448                         in the same scan result list.  Copy ESSIDs-by-address earlier on, for each
17449                         AP rather than all-at-once.  Also don't ever remove the AP a card is
17450                         currently associated with from the network list.
17451                 - Update for new signals during scan, send out Appeared, Disappeared, or
17452                         StrengthChanged when necessary.
17453
17454 2005-02-25  Dan Williams  <dcbw@redhat.com>
17455
17456         * README
17457                 - Line break the README
17458
17459 2005-02-25  Dan Williams  <dcbw@redhat.com>
17460
17461         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
17462                 - Remove usage of gtk_window_set_default_size()
17463
17464         * panel-applet/essid.glade
17465                 - Stick default size here
17466                 - Add in random crap that current glade wants to add in now
17467
17468 2005-02-25  Dan Williams  <dcbw@redhat.com>
17469
17470         * src/backends/NetworkManagerRedHat.c
17471                 - For non-caching-nameserver/non-named case, ensure that nscd is running
17472                         and that we actually tell nscd to reload the hosts cache when it changes
17473
17474 2005-02-25  Dan Williams  <dcbw@redhat.com>
17475
17476         * info-daemon/NetworkManagerInfoDbus.c
17477                 - (nmi_dbus_get_network_properties): whack usage of DbusMessageIter
17478
17479         * test/nminfotest.c
17480                 - Whack usage of DbusMessageIter
17481                 - Clean up DbusError and DbusMessage handling and freeing
17482                 - Remove unused unregister handler
17483
17484         * test/nmtest.c
17485                 - Whack usage of DbusMessageIter
17486
17487         * test/nmtestdevices.c
17488                 - Whack usage of DbusMessageIter
17489
17490 2005-02-25  Dan Williams  <dcbw@redhat.com>
17491
17492         * NetworkManager.h
17493                 - New signal type NMNetworkStatus in preparation for the "WirelessNetworkUpdate"
17494                         signal
17495
17496 2005-02-25  Dan Williams  <dcbw@redhat.com>
17497
17498         * named/nm-named-manager.c
17499                 - Ensure that pid and watch variables for child named process get cleared out
17500                         when the child goes away.
17501
17502 2005-02-22  Dan Williams  <dcbw@redhat.com>
17503
17504         * src/NetworkManagerPolicy.c
17505                 - (nm_policy_activation_finish): Deactivate a device if its activation fails,
17506                         and NULL out data->active_device so that we have to choose another one.
17507                         This may make NetworkManager keep attempting to connect to a wired network
17508                         if it fails, but if it keeps failing the wired network has more problems than
17509                         just NetworkManager.
17510
17511         * src/backends/NetworkManagerRedHat.c
17512                 - (nm_system_update_dns): fix to actually run nscd -i hosts when nscd
17513                         is already running
17514
17515         * named/nm-named-manager.c
17516                 - (rewrite_resolv_conf): Call nm_system_update_dns() when not using
17517                         named so that the distro can flush whatever name service caching
17518                         daemon it uses
17519
17520 2005-02-21  Dan Williams  <dcbw@redhat.com>
17521
17522         * src/NetworkManagerDHCP.[ch]
17523                 - (nm_device_dhcp_remove_timeouts): new function
17524
17525         * src/NetworkManagerDevice.c
17526                 - Use nm_device_dhcp_remove_timeouts() everywhere that we need to
17527                         remove the DHCP timeouts.
17528
17529 2005-02-21  Dan Williams  <dcbw@redhat.com>
17530
17531         * panel-applet/NMWirelessApplet.[ch]
17532           panel-applet/menu-info.[ch]
17533                 - Give the panel applet some major love: menu items are no longer
17534                         subclasses of GtkCheckMenuItem, they are actual GtkCheckMenuItems.
17535                         This allows the applet to actually reflect theme changes correctly,
17536                         since themeing of subclassed items in GTK _sucks_.
17537
17538 2005-02-18  Dan Williams  <dcbw@redhat.com>
17539
17540         * libnm_glib/libnm_glib.[ch]
17541           test/libnm_glib_test.c
17542                 - Clean up libnm_glib API a bit, callback is now passed a libnm_glib_ctx
17543                         and its data, and doesn't have to free the callback data anymore
17544
17545 2005-02-18  Dan Williams  <dcbw@redhat.com>
17546
17547         * panel-applet/NMWirelessApplet.c
17548                 - Revert 2005-02-18 William Jon McCann fix for standard
17549                         copyright string until it passes 'make distcheck'.
17550                         With standard copyright string, xgettext complains
17551                         about "Non-ASCII string at ...".
17552
17553 2005-02-18  Dan Williams  <dcbw@redhat.com>
17554
17555         * panel-applet/essid.glade
17556           panel-applet/NMWirelessAppletOtherNetworksDialog.c
17557                 - Correct spelling of "adaptor"->"adapter"
17558
17559 2005-02-18  William Jon McCann  <mccann@jhu.edu>
17560
17561         * panel-applet/NMWirelessApplet.c: Use GTK_CHECK_VERSION() macro.
17562         (nmwa_about_cb): Use standard copyright string.  Update comment
17563         text to reflect that it is a notification area applet.  Remove
17564         leading newline in authors list.
17565         (nmwa_menu_show_cb, nmwa_setup_widgets): Populate menu on show
17566         instead of on parent menu item activation.  Fixes #167550.
17567
17568 2005-02-18  William Jon McCann  <mccann@jhu.edu>
17569
17570         * panel-applet/essid.glade: Capitalize items as per HIG.
17571           Fixes #167632
17572
17573 2005-02-16  William Jon McCann  <mccann@jhu.edu>
17574
17575         * panel-applet/gtkcellrendererprogress.[ch]: Only compile these
17576         files for GTK 2.4 or lower, since now public in GTK 2.6.
17577
17578         * panel-applet/essid.glade: Don't specify window size.
17579         
17580 2005-02-17  Dan Williams  <dcbw@redhat.com>
17581
17582         Caught by Bill Moss:
17583         * dhcpcd/client.c
17584                 - Time remaining for DHCP transaction calculation was incorrectly
17585                         inside a #ifdef DEBUG
17586
17587 2005-02-15  Christophe Merlet  <redfox@redfoxcenter.org>
17588
17589         * configure.in: Added fr (French) to ALL_LINGUAS.
17590
17591 2005-02-14  Dan Williams  <dcbw@redhat.com>
17592
17593         * src/NetworkManagerDHCP.c
17594                 - (set_domain_searches): Fix free of invalid pointer
17595
17596 2005-02-14  Dan Williams  <dcbw@redhat.com>
17597
17598         Patch from Peter Jones:
17599         * dhcpcd/client.c
17600                 - Ensure we return RET_DHCP_CEASED everywhere we should
17601         * dhcpcd/udpipgen.c
17602                 - Use faster TOS for IP packets
17603                 - Don't set ip_id since we're UDP
17604
17605         Patch from Tomislav Vujec:
17606         * src/nm-dbus-dhcp.c
17607           test/nm-dhcp-opt-test.c
17608                 - Clean up warnings to enable cvs tree compilation.
17609
17610 2005-02-14  Tomislav Vujec  <tvujec@redhat.com>
17611
17612         * configure.in
17613           po/hr.po
17614                 - Add the Croatian locale.
17615
17616 2005-02-14  Colin Walters  <walters@verbum.org>
17617
17618         * src/NetworkManagerDHCP.c (set_domain_searches): Handle space-separated
17619         list of domains to search.
17620         
17621         * src/NetworkManagerMain.h (NMData): Handle multiple domain searches.
17622
17623 2005-02-13  Dan Williams  <dcbw@redhat.com>
17624
17625         * dhcpcd/client.c
17626                 - Debug output cleanups of DHCP option printing and parsing.
17627
17628 2005-02-13  Dan Williams  <dcbw@redhat.com>
17629
17630         Patch from Dan Reed:  DHCP options D-BUS API
17631                 Exposes the DHCP options that a device receives to clients over D-BUS.
17632
17633         * configure.in
17634                 - A few cleanups
17635
17636         * dhcpcd/client.h
17637                 - Correct names, option length, and types for DHCP options
17638
17639         * dhcpcd/dhcpcd.[ch]
17640                 - Clarify function names that access DHCP options & data
17641
17642         * src/NetworkManagerDHCP.c
17643                 - Use new DHCP data access functions
17644
17645         * src/NetworkManagerDbus.c
17646                 - Message handler for DHCP functions
17647
17648         * src/nm-dbus-dhcp.[ch] (new)
17649                 - DHCP dbus methods
17650
17651         * test/nm-dhcp-opt-test.c
17652                 - Test DHCP D-BUS API and return all present DHCP options
17653
17654 2005-02-12  Dan Williams  <dcbw@redhat.com>
17655
17656         * test/Makefile.am
17657           test/nmclienttest.c
17658           test/nmtest.c
17659                 - Move nmclienttest.c -> nmtest.c
17660
17661 2005-02-12  Dan Williams  <dcbw@redhat.com>
17662
17663         * dhcpcd/buildmsg.c
17664                 - Pad DHCP packets until they are at least 300 bytes in size.
17665
17666 2005-02-11  Dan Williams  <dcbw@redhat.com>
17667
17668         * dhcpcd/client.c
17669                 - (dhcp_init): only print out client ID and class ID if they are specified
17670
17671         * src/NetworkManagerDbus.[ch]
17672           src/nm-dbus-nm.[ch]
17673           src/nm-dbus-device.[ch]
17674           src/nm-dbus-net.[ch]
17675                 - Move NM, Device, and Net functions to separate files and use the
17676                         dbus method list stuff in NetworkManagerDbusUtils.c to do
17677                         method dispatching
17678
17679         * src/NetworkManagerDbusUtils.c
17680                 - Add new validate_method called before each dispatch (if present)
17681                         that can validate the method call
17682
17683         * src/NetworkManagerWireless.c
17684                 - (nm_wireless_qual_to_percent): Fix misplaced "!" that caused signal
17685                         levels never to be evaluated
17686
17687         Patch from j@bootlab.org
17688         * src/NetworkManagerDevice.c
17689                 - Add typedef for "u64"
17690
17691         * src/backends/NetworkManagerDebian.c
17692                 - Copy in Dave Woodhouse's fixes for IPv6
17693
17694 2005-02-11  Dan Williams  <dcbw@redhat.com>
17695
17696         Patch from Dave Woodhouse for IPv6:
17697         * src/NetworkManagerUtils.c
17698                 - (nm_ethernet_address_is_valid): Check for prism54 dummy MAC address
17699                         and multicast addresses
17700
17701         * src/NetworkManagerDevice.c
17702                 - (nm_device_set_up_down): make sure our cached MAC address is up-to-date
17703                         after bringing up a card.
17704
17705 2005-02-10  Dan Williams  <dcbw@redhat.com>
17706
17707         Patch from Dave Woodhouse:
17708         * src/NetworkManagerSystem.h
17709           src/backends/NetworkManagerDebian.c
17710           src/backends/NetworkManagerGentoo.c
17711           src/backends/NetworkManagerSlackware.c
17712                 - New nm_system_device_add_ip6_link_address() function to add link-local
17713                         address on an interface.  Stubbed in Debian, Gentoo, and Slackware.
17714
17715         * src/backends/NetworkManagerRedHat.c
17716                 - (nm_system_device_add_ip6_link_address): implement
17717                 - (nm_system_device_flush_addresses): revert to previous behavior of
17718                         flushing all addresses
17719
17720 2005-02-10  Dan Williams  <dcbw@redhat.com>
17721
17722         Patch from Tom Parker:
17723         * src/NetworkManagerDevice.c
17724                 - Remove the "#include <pci/types.h>" since both the ethtool.h and
17725                         mii.h headers are broken, and instead use our own typedefs
17726
17727 2005-02-10  Dan Williams  <dcbw@redhat.com>
17728
17729         * dhcpcd/buildmsg.c
17730                 - (fill_host_and_class_id): only fill in client and class IDs if
17731                         they are set by callers.
17732
17733         * dhcpcd/client.c
17734                 - (class_id_setup): don't autogenerate a class ID, only use one
17735                         we're given, if any.
17736                 - (client_id_setup): don't autogenerate a client ID, only use one
17737                         we're given, if any.
17738
17739         * dhcpcd/dhcpcd.c
17740                 - (dhcp_interface_init): ensure that client options are correctly
17741                         NULL terminated
17742
17743         * src/NetworkManagerDHCP.c
17744                 - (nm_device_dhcp_request): pass hostname to dhcp library
17745
17746 2005-02-10  Dan Williams  <dcbw@redhat.com>
17747
17748         * dhcpcd/client.c
17749                 - #rh147661# Don't send kernel version in DHCP requests
17750
17751         * src/NetworkManagerSystem.h
17752           src/backends/NetworkManagerDebian.c
17753           src/backends/NetworkManagerGentoo.c
17754           src/backends/NetworkManagerRedHat.c
17755           src/backends/NetworkManagerSlackware.c
17756                 - Remove the nm_system_device_run_dhcp() and nm_system_device_stop_dhcp()
17757                         functions, they are no longer used anyway
17758
17759         * src/backends/NetworkManagerRedHat.c
17760                 - (nm_system_device_flush_addresses): only flush "scope global" and "scope site"
17761                         addresses in an attempt to keep IPv6 local-scope addresses around
17762
17763 2005-02-10  Dan Williams  <dcbw@redhat.com>
17764
17765         * src/NetworkManager.c
17766                 - (nm_create_device_and_add_to_list): change the add message slightly
17767
17768         * src/NetworkManagerUtils.c
17769                 - (nm_get_wireless_driver_support_level, nm_get_wired_driver_support_level):
17770                         Return driver name to calling function
17771                 - (nm_get_driver_support_level): print out the driver a device is using
17772                         during the support check
17773
17774         Patch from Dave Woodhouse:
17775         * dhcpcd/udpipgen.c
17776                 - (in_cksum): copy last byte of odd-sized packets into a
17777                         'u_short' rather than a 'u_char', should fix wrong checksums
17778                         on big-endian platforms
17779
17780 2005-02-09  Dan Williams  <dcbw@redhat.com>
17781
17782         * Clean up usage of GSList objects and looping through their members
17783         * Clean up DHCP rebind/renew timeouts, hopefully they will work correctly
17784                 now.
17785         * Fix problem where even if scanning was turned off, card would still
17786                 cycle through frequencies.
17787
17788 2005-02-08  Dan Williams  <dcbw@redhat.com>
17789
17790         * panel-applet/NMWirelessApplet.c
17791                 - Fix for gtk 2.4
17792
17793 2005-02-08  Dan Williams  <dcbw@redhat.com>
17794
17795         Patch from Bill Moss
17796         * panel-applet/NMWirelessApplet.c
17797                 - Restore correct ESSID in tooltips
17798
17799 2005-02-07  Dan Williams  <dcbw@redhat.com>
17800
17801         * panel-applet/NMWirelessApplet.[ch]
17802                 - Add a context menu that contains:
17803                         Pause/Resume Wireless Scanning
17804                         Stop/Start All Wireless Devices
17805                         About...
17806                 - Grab active device strength off active device,
17807                         not its network
17808
17809         * panel-applet/NMWirelessAppletDbus.[ch]
17810                 - Add DBUS accessors for "getSupportsCarrierDetect", "setScanningEnabled",
17811                         "getScanningEnabled", "setWirelessEnabled", and "getWirelessEnabled"
17812                 - Update active device strength every 2 seconds, not every 1 second
17813
17814         * panel-applet/menu-info.c
17815                 - Only disable wired devices in the menu when they support carrier detection,
17816                         and don't currently have a link.  Non-carrier-detect devices will always
17817                         remain choosable
17818
17819         * src/Makefile.am
17820           src/NetworkManagerDbusUtils.[ch]
17821                 - Add new new dbus utils sources
17822
17823         * src/NetworkManager.c
17824                 - Fixes for new link detection, we no longer need to call nm_device_update_link_active()
17825                         with the boolean parameter
17826                 - Set scanning_enabled & wireless_enabled to TRUE
17827
17828         * src/NetworkManagerDbus.c
17829                 - Use new dbus util method dispatcher functions for org.freedesktop.NetworkManager methods
17830                 - Implement scanning & wireless enable/disable calls
17831                 - Remove the dbus vtable unregister handlers, weren't doing anything with them anyway
17832
17833         * src/NetworkManagerDevice.c
17834                 - New link detection stuff again...
17835                         o  Create device's mainloop earlier (but don't run it earlier)
17836                         o  Hook up new carrier-detect support stuff
17837                         o  Add in the ethtool & mii support detection code
17838                 - Don't scan if scanning is disabled
17839
17840         * src/NetworkManagerPolicy.c
17841                 - Never automatically choose a device that doesn't support carrier detection
17842                 - Don't automatically choose a wireless device if wireless is disabled
17843
17844 2005-02-07  Dan Williams  <dcbw@redhat.com>
17845
17846         * libnm_glib/libnm_glib.c
17847                 - Small cleanup in element list iteration
17848
17849 2005-02-07  Dan Williams  <dcbw@redhat.com>
17850
17851         * src/NetworkManagerWireless.c
17852                 - (nm_wireless_qual_to_percent): Fix up wireless quality calculations
17853                         to be in line with the WEXT quality specification
17854
17855 2005-02-02  Dan Williams  <dcbw@redhat.com>
17856
17857         Patch from Nathan Fredrickson <nathan@silverorange.com>
17858         * Fix up compile for deprecation of libgnomeui
17859                 - Switch to <glib/gi18n.h> from <libintl.h>
17860                 - Remove <libgnomeui/libgnomeui.h> includes
17861                 - Use gtk_window_set_default_icon_from_file() rather than
17862                         gnome_window_set_default_icon_from_file()
17863
17864         * named/nm-named-manager.c
17865                 - (generate_named_conf): Fix return-nothing in non-void
17866                         function
17867
17868 2005-02-02  Dan Williams  <dcbw@redhat.com>
17869
17870         * Clean up unused variables and the like
17871
17872 2005-02-02  Dan Williams  <dcbw@redhat.com>
17873
17874         * src/NetworkManagerAPList.c
17875                 - (nm_ap_list_merge_scanned_ap): merge strength too
17876
17877         * src/NetworkManagerUtils.c
17878                 - (nm_lock_mutex, nm_register_mutex_desc): new calls to facilitate debugging
17879                         of locking issues by printing out prettier information than g_mutex_lock
17880                 - Print out names of mutexes registered with nm_register_mutex_desc()
17881                 - (nm_try_lock_mutex): don't do the waiting thing when trying to lock, causes
17882                         us to seemingly block here for too long
17883
17884         * src/NetworkManager.c
17885           src/NetworkManagerAPList.c
17886           src/NetworkManagerDevice.c
17887                 - Convert to using nm_lock_mutex/nm_unlock_mutex rather than the glib variants
17888                         so we get better debug information printed
17889
17890         * src/NetworkManagerDbus.c
17891                 - (nm_dbus_devices_handle_request): reduce usage of nm_device_need_ap_switch()
17892                         since it sometimes has locking side effects
17893                 - (nm_device_get_association_pause_value): Reduce 802.11a card pause value to 8s
17894                         from 10s
17895                 - (nm_device_need_ap_switch): If we can't acquire the scan lock, return saying
17896                         we don't need a switch.  This gets called often enough that we can't block
17897                         until the scan mutex is acquired, because we'll block on device activation
17898                         and a few other things, which hangs main thread for too long.
17899
17900         * src/NetworkManagerPolicy.c
17901                 - (nm_policy_auto_get_best_device): reduce the possiblity that
17902                         nm_device_need_ap_switch() will be called               
17903
17904 2005-02-02  Dan Williams  <dcbw@redhat.com>
17905
17906         * panel-applet/NMWirelessApplet.c
17907                 - Display name of wireless network we are connecting to or connected to
17908                         in the tooltip of the applet
17909
17910 2005-02-02  Dan Williams  <dcbw@redhat.com>
17911
17912         * src/NetworkManagerDHCP.c
17913                 - Hopefully fix double-default-route problem by cleaning up the default
17914                         route added by DHCP code right before the DHCP transaction begins
17915
17916 2005-02-02  Dan Williams  <dcbw@redhat.com>
17917
17918         * named/nm-named-manager.c
17919                 - Write out valid resolv.conf when we exit
17920
17921 2005-02-01  Dan Williams  <dcbw@redhat.com>
17922
17923         Patch from Colin Walters:
17924         * named/nm-named-manager.c
17925                 - Make multi-domain search options work
17926
17927 2005-01-31  Dan Williams  <dcbw@redhat.com>
17928
17929         * info-daemon/NetworkManagerInfoDbus.c
17930                 - (nmi_dbus_nmi_message_handler): make sure 'dialog' exists before using it
17931
17932         * src/NetworkManagerDevice.c
17933                 - (nm_device_new): Don't store the entire range struct, use only what we need
17934                         (which is currently avg_quality, max_quality, and frequencies).  Also
17935                         zero device structure when we've free'd it to maybe expose errors down
17936                         the line.
17937                 - (nm_device_update_signal_strength): grab the scan mutex before getting
17938                         quality data from the card since quality will be useless during a scan.
17939                         Call updated wireless qual-to-percent function with values stored in
17940                         nm_device_new() earlier.
17941                 - Remove some unused functions (nm_device_get_max_quality(), nm_device_get_noise(),
17942                         nm_device_get_bad_crypt_packets())
17943                 - (nm_device_activate_wireless_adhoc): use new frequency values we go in
17944                         nm_device_new()
17945                 - (get_initial_auth_method): always use the Auth method that's in the allowed
17946                         list if available.  Problem was this: when the WEP key is wrong, NM will
17947                         try OS then SK modes, and then get stuck in SK mode after that.  This
17948                         should reset it.
17949                 - (nm_device_wireless_process_scan_results): work with new qual-to-percent
17950                         function
17951
17952         * src/NetworkManagerWireless.c
17953                 - (nm_wireless_qual_to_percent): try to make this function actually work and
17954                         mimic iwlib behavior.  Use card's idea of quality divided by max_qual
17955                         if that's all present, otherwise fall back to signal-to-noise ratios.
17956
17957 2005-01-29  Dan Williams  <dcbw@redhat.com>
17958
17959         * initscript/RedHat/NetworkManager
17960                 - Don't spit out sysctl stuff to console
17961
17962         * libnm_glib/libnm_glib.c
17963                 - (libnm_glib_init): call dbus_g_thread_init()
17964
17965         * panel-applet/NMWirelessAppletDbus.c
17966                 - (nmwa_dbus_worker): call dbus_g_thread_init()
17967
17968         * src/NetworkManager.c
17969                 - (main): call dbus_g_thread_init()
17970
17971         * src/NetworkManagerAPList.c
17972                 - (nm_ap_list_print_members): use LOG_ERR instead of LOG_DEBUG
17973                         so we can actually see what's there in a normal syslog
17974
17975         * src/NetworkManagerDevice.c
17976                 - (nm_device_activate_wireless): print out the "waiting for access point"
17977                         message only once, then say what access point we actually got after
17978                         the wait.
17979                 - (nm_device_need_ap_switch): If a scan is in progress when we're in this
17980                         function, wait until the scan is done.  Scans may change the ESSID of
17981                         the card, making this function think we need to switch access points
17982                 - (nm_device_wireless_process_scan_results): for artificial access points
17983                         don't check against the card's ESSID, but the best_ap's ESSID.  This
17984                         prevents collisions with the scanning code, which may change the card's
17985                         ESSID and cause the access point to get dropped from the device's AP
17986                         list.  Also increase the keep-around time to 2m from 60s since the max
17987                         scan interval could be 60s in some cases.
17988
17989         * src/NetworkManagerPolicy.c
17990                 - (nm_policy_activation_finish): Don't add invalid MAC addresses to GConf
17991                 - (nm_policy_allowed_ap_list_update): When we update, make sure we copy over
17992                         the new properties and ESSIDs to the device's AP list.  Fixes some races
17993                         between NM and NMI.
17994
17995 2005-01-27  Dan Williams  <dcbw@redhat.com>
17996
17997         * info-daemon/NetworkManagerInfoDbus.c
17998                 - (nmi_dbus_add_network_address): if the network doesn't yet exist in
17999                         GConf, make a minimal entry for it (essid & timestamp)
18000
18001         * src/NetworkManagerAPList.c
18002                 - (nm_ap_list_populate_from_nmi): Don't try to grab network data if
18003                         NetworkManagerInfo isn't running
18004
18005         * src/NetworkManagerDbus.[ch]
18006                 - (nm_dbus_nmi_is_running): new function
18007
18008         * src/NetworkManagerDevice.c
18009                 - (nm_device_wireless_force_use): Don't set the created AP's MAC
18010                         address to garbage.
18011
18012         * src/NetworkManagerPolicy.c
18013                 - (nm_policy_activation_finish): On successful activation, make sure
18014                         the "best" AP has a MAC address, and don't tell NMI to add the
18015                         current AP's MAC address to GConf if the AP is an Ad-hoc AP.
18016                 - (nm_policy_allowed_ap_list_update): Update a wireless card's "best"
18017                         access point after refreshing our allowed list if it doesn't already
18018                         have a "best" access point.
18019
18020 2005-01-25  Dan Williams  <dcbw@redhat.com>
18021
18022         * panel-applet/NMWirelessAppletDbus.c
18023                 - (nmwa_dbus_filter): Fix dbus 0.23 ServiceOwnerChanged checks
18024                         so we check for NM_DBUS_SERVICE rather than not for it
18025
18026         * libnm_glib/libnm_glib.c
18027                 - (libnm_glib_dbus_filter): Fix for dbus 0.23, trapping
18028                         ServiceOwnerChanged signal
18029
18030 2005-01-25  Dan Williams  <dcbw@redhat.com>
18031
18032         * configure.in
18033                 - Check DBUS version in configure, and set the C macros
18034                         DBUS_VERSION_[MAJOR,MINOR,MICRO]
18035
18036         * info-daemon/NetworkManagerInfoDbus.c
18037                 - Remove #if 0-d section of code that quit NMI if NM went away.
18038
18039         * panel-applet/NMWirelessAppletDbus.c
18040                 - Trap the "ServiceOwnerChanged" signal that's new in dbus-0.23
18041
18042         * src/NetworkManager.c
18043           src/NetworkManagerMain.h
18044           src/NetworkManagerDbus.c
18045                 - Trap the "ServiceOwnerChanged" signal that's new in dbus-0.23
18046                 - Make updating of our Allowed Wireless Network lists from NMI
18047                         an idle function in the main thread now, with a high priority.
18048
18049 2005-01-24  Dan Williams  <dcbw@redhat.com>
18050
18051         * panel-applet/gtkcellview.[ch]
18052           panel-applet/menu-info.c
18053                 - Fix GTK version checks to be <= rather than <
18054
18055         * test/Makefile.am
18056                 - Include the libtool archive of libnm_glib rather than
18057                         trying to pull in the .so
18058
18059 2005-01-24  Dan Williams  <dcbw@redhat.com>
18060
18061         * src/NetworkManagerDevice.c
18062           src/NetworkManagerDevicePrivate.h
18063                 - Block nm_device_new() until our device's worker thread has had a
18064                         chance to start up.  Fixes a race between main thread and worker
18065                         thread starting that caused activation requests to get lost.
18066
18067 2005-01-24  Dan Williams  <dcbw@redhat.com>
18068
18069         * initscript/RedHat/NetworkManager
18070                 - Remove the ### BEGIN INIT INFO section, which caused chkconfig
18071                         to add the NM startup script at priority 50, which was
18072                         way too early
18073
18074 2005-01-24  Colin Walters  <walters@redhat.com>
18075
18076         * named/named.conf: Use any port for query source instead of
18077         restricting to port 53.
18078
18079 2005-01-24  Dan Williams  <dcbw@redhat.com>
18080
18081         * initscript/RedHat/NetworkManager
18082                 - Remove the ### BEGIN INIT INFO section, which caused chkconfig
18083                         to add the NM startup script at priority 50, which was
18084                         way too early
18085
18086 2005-01-24  Dan Williams  <dcbw@redhat.com>
18087
18088         Patch from Tom Parker <palfrey@tevp.net>
18089         * Fix up compile warnings & errors in the wireless applet
18090
18091 2005-01-24  Dan Williams  <dcbw@redhat.com>
18092
18093         * panel-applet/NMWirelessApplet.c
18094                 - Convert 24x24 icons back to 22x22 and use the 22x22 ones
18095
18096 2005-01-24  Dan Williams  <dcbw@redhat.com>
18097
18098         * panel-applet/gtkcellview.[ch]
18099                 - Only compile these files for GTK 2.4 or lower, since 
18100                         GtkCellView is now public in GTK 2.6.  Fixes crasher
18101                         when choosing "Other Wireless Networks" from the panel
18102                         applet menu
18103
18104 2005-01-21  Dan Williams  <dcbw@redhat.com>
18105
18106         * src/NetworkManager.c
18107                 - Daemonize earlier so that glib doesn't get confused (?)
18108
18109 2005-01-21  Dan Williams  <dcbw@redhat.com>
18110
18111         * panel-applet/NMWirelessApplet.[ch]
18112           panel-applet/NMWirelessAppletDbus.c
18113           panel-applet/menu-info.c
18114           src/NetworkManagerDevice.c
18115                 - Disable wired devices in the menu when they have no link.
18116
18117 2005-01-21  Dan Williams  <dcbw@redhat.com>
18118
18119         * Cache last-known-good wireless authentication method in
18120                 NetworkManagerInfo, and use that method first during
18121                 wireless device activation.  Should speed up devices that
18122                 need Shared Key authentication method since Open System is
18123                 now the default.
18124
18125         * Remove the hack to not do full activation on wired connections
18126                 that are active when we launch, it causes too many problems
18127                 with name resolution and was a hack in the first place.
18128
18129         * Re-work wireless device activation again somewhat to have a
18130                 clearer chain of events and to use last-known-good
18131                 authentication method of the access point.  Also provide
18132                 better status throughout activation to ensure the applet
18133                 can tell the user exactly what's going on.
18134
18135         * Remove the "find wireless network" code and now simply attempt
18136                 to activate with that access point.  This reduces the delay
18137                 between selecting "Other wireless Network" and actually
18138                 connecting to that network.
18139
18140         * Correctly stop the device's worker thread when its removed.
18141
18142 2005-01-21  Dan Williams  <dcbw@redhat.com>
18143
18144         * dhcpcd/client.c
18145                 - Clean up some of the debug messages
18146
18147 2005-01-21  Dan Williams  <dcbw@redhat.com>
18148
18149         * Add new icons, more frames of animation
18150         * Remove some hacks to get the panel applet to display correct
18151                 status, an NM update will soon follow that will fix the
18152                 real issue.
18153
18154 2005-01-19  Kjartan Maraas  <kmaraas@gnome.org>
18155
18156         * panel-applet/NMWirelessApplet.c: #include <config.h> must be
18157         the first include for working i18n. Also, don't include it in .h files
18158         * panel-applet/NMWirelessApplet.h: Same
18159         * panel-applet/NMWirelessAppletOtherNetworkDialog.c: Same
18160         * panel-applet/menu-info.c: Same
18161
18162 2005-01-18  Dan Williams <dcbw@redhat.com>
18163
18164         * dhcpcd/client.c
18165                 - Remove some debug messages
18166                 - Wrap others in #ifdef DEBUG/#endif
18167
18168         * src/NetworkManager.c
18169                 - Remove some debug messages
18170                 - Clarify some debug messages
18171                 - Remove code related to old single-thread wireless scanning
18172
18173         * src/NetworkManagerAP.[ch]
18174                 - New AP property "last_seen" to track how recently an AP was
18175                         found in a scan
18176                 - Start using 'const' more in function arguments
18177
18178         * src/NetworkManagerAPList.[ch]
18179                 - (nm_ap_list_merge_scanned_ap): new, selectively update attributes
18180                         of an AP found in an AP list from a source AP, or if not found
18181                         in the list add the source AP
18182                 - (nm_ap_list_combine): remove, no longer needed
18183
18184         * src/NetworkManagerDevice.c
18185                 - Each device now has a "worker" thread from start to end of its life.
18186                         Scanning for wireless devices now happens in that thread,
18187                         not in a single "wireless scanning thread" for all devices as
18188                         previously.  Activation consists of adding an idle handler to the
18189                         thread's main loop/context, which gets run at the next available
18190                         opportunity.
18191                 - Wireless scanning is also simplified, there is now only one list of
18192                         access points per wireless device, and APs older than 60s are
18193                         removed from the list.  Previously, we kept results for the last
18194                         3 scans and merged whole lists, which was complicated.
18195                 - Cleaned up activation debug messages.
18196                 - Wireless activation and access-point search routines now use Open System
18197                         authentication before trying Shared Key.
18198                 - Removed some code in nm_device_update_best_ap() that could cause cards
18199                         to loose their link to the access point.
18200                 - Scanning now uses a backoff algorithm, where the inverval becomes
18201                         progressively longer between scans when the list of scanned access
18202                         points doesn't change.  A change will revert to the shortest scan
18203                         interval (20s).
18204
18205         * src/NetworkManagerWireless.[ch]
18206                 - Remove code related to old single-thread wireless scanning
18207
18208 2005-01-18  Colin Walters  <walters@redhat.com>
18209
18210         * src/NetworkManagerDHCP.c (set_nameservers): Free and clear list
18211         of older nameservers.
18212
18213 2005-01-18  Colin Walters  <walters@redhat.com>
18214
18215         * named/nm-named-manager.c (generate_named_conf): Many fixes
18216         to config file generation.
18217         (safer_kill): Remove, was too much trouble for little gain.
18218         (nm_named_manager_start): Run named as NM_NAMED_USER.
18219
18220         * configure.in: Add option --with-named-user.
18221
18222 2005-01-14  Colin Walters  <walters@redhat.com>
18223
18224         Patch from ed@catmur.co.uk (Ed Catmur)
18225
18226         * named/nm-named-manager.c: Add "context" property.
18227         Use it to add child watch source in specific GMainContext.
18228
18229         * src/NetworkManager.c (nm_data_new): Initialize
18230         named with correct main context.  Start named only
18231         after forking.
18232
18233 2005-01-14  Colin Walters  <walters@redhat.com>
18234
18235         * named/nm-named-manager.c (generate_named_conf): Write config
18236         and pid files into NM_NAMED_DATA_DIR; this allows things to
18237         work better with FC3 named SELinux policy.  Also fix up silly
18238         format error.
18239
18240         * configure.in: Add --with-named-dir option.
18241
18242 2005-01-14  Colin Walters  <walters@redhat.com>
18243
18244         * configure.in: Make named support require passing --with-named.
18245
18246         * named/nm-named-manager.c: Support writing resolv.conf directly
18247         without running named.
18248
18249 2005-01-13  Dan Williams <dcbw@redhat.com>
18250
18251         * named/nm-named-manager.c
18252                 - Use syslog(LOG_WARNING) rather than g_warning() (gnome.org #163961)
18253
18254         * src/NetworkManagerDevice.c
18255                 - Rework wireless link detection code to be more reliable
18256
18257 2005-01-12  Dan Williams <dcbw@redhat.com>
18258
18259         * initscripts/RedHat/NetworkManager
18260                 - Change initial level to "-" rather than "345" so that
18261                         we don't activate ourselves by default on install
18262
18263 2005-01-12  Dan Williams <dcbw@redhat.com>
18264
18265         * libnm_glib/
18266                 - Client library for applications using glib
18267
18268         * configure.in
18269           various Makefiles
18270                 - Split NM_CFLAGS and NM_LIBS into separate variables
18271                         like DBUS_*, HAL_* and GLIB_*
18272
18273         * src/NetworkManager.c
18274           src/NetworkManagerMain.h
18275                 - (nm_schedule_status_signal_broadcast): at the earliest convenience,
18276                         broadcast a status changed signal over DBUS from the main thread.
18277                         Still unused anywhere for the moment.
18278
18279         Patch from j@bootlab.org
18280         * panel_applet/NMWirelessAppletDbus.c
18281           src/NetworkManagerDbus.c
18282                 - Correct INT32->UINT32 mistmatch between NM and the panel applet
18283                         for the "getMode" method call
18284
18285 2005-01-10  Dan Williams <dcbw@redhat.com>
18286
18287         * src/NetworkManagerDevice.c
18288                 - Minor fixups & corrections to "auto" frequency mode, make it
18289                         less chatty with syslog
18290
18291 2005-01-10  Dan Williams <dcbw@redhat.com>
18292
18293         * src/NetworkManagerDevice.c
18294                 - Implement "auto" frequency/channel support, since cards like Atheros
18295                         can't use other frequencies at all when you've told it to use a
18296                         specific one, even for scanning.
18297                 - Grab the scan mutex around places where we can't tolerate wireless
18298                         settings changing underneath us, like nm_device_wireless_network_exists()
18299                         and nm_device_activate_wireless()
18300
18301         * src/NetworkManagerWireless.c
18302                 - Back scan interval off to 20s instead of 14s
18303
18304 2005-01-09  Dan Williams <dcbw@redhat.com>
18305
18306         * src/NetworkManagerDevice.c
18307                 - Don't set mode/freq/bitrate if that mode/freq/bitrate is
18308                         already set.  Stops some drivers like Atmel from continually
18309                         reloading the firmware, which they do upon every configuration
18310                         change.
18311
18312 2005-01-09  Dan Williams <dcbw@redhat.com>
18313
18314         * dhcpcd/client.c
18315                 - Use correct timeout value
18316
18317         * info-daemon/NetworkManagerInfoDbus.c
18318           src/NetworkManagerDbus.c
18319                 - Consolidate communication between NM and NMI by doing only 1 dbus
18320                         method call to get Wireless Network info from NMI instead of 6
18321
18322         * src/NetworkManager.c
18323                 - Make sure to cancel activation when we receive a SIGTERM, otherwise
18324                         when we didn't have an AP to use, we'd wait for one forever without
18325                         quitting
18326
18327         * src/NetworkManagerDevice.c
18328                 - nm_device_activation_cancel(): Fix a race between dhcp and quitting
18329                         activation, dhcp might not have started yet but we don't quit activation
18330                         before starting it, so the quit signal gets lost
18331
18332 2005-01-07  Dan Williams <dcbw@redhat.com>
18333
18334         * dhcpcd/client.c
18335                 - Rework the DHCP client code to be much less chatty when
18336                         it receives non-DHCP UDP packets during the DHCP run
18337                         (reported by and preliminary patches from Bill Moss)
18338
18339         * Move wireless scanning to a separate thread.  This thread forwards the
18340                 results to the main thread when done where they are integrated into
18341                 the device's access point lists.  This keeps the main thread (which
18342                 does all the DBUS communication) from being blocked for long periods
18343                 of time by wireless scanning.
18344
18345         * Make state modification an idle routine in the main loop, and trigger
18346                 state changes rather than polling for them.
18347
18348         * src/backends/NetworkManagerGentoo.c
18349                 - Fix up invalid C90 code (reported by Christoph Ruessler)
18350
18351         * src/NetworkManagerDevice.c
18352                 - Revert IPv6 patch for wired devices from 2004-12-22 for
18353                         router advertisements, causing problems and infinite loop
18354                         during "best" device determination due to link going up/down
18355                         (reported by Bill Moss)
18356
18357         Apply patch from Peter Jones
18358         * src/NetworkManagerDevice.c
18359                 - Shortcut for link-checking for ipw2x00 cards
18360                 - Split out association check into separate routine
18361
18362 2004-01-05  Colin Walters  <walters@redhat.com>
18363
18364         * named/named.conf: Add PID_FILE.
18365
18366         * named/nm-named-manager.c: Always generate a pid
18367         file, since older BIND versions don't support
18368         "pid-file none".
18369
18370 2005-01-01  Satoru SATOH <ss@gnome.gr.jp>
18371
18372         * configure.in (ALL_LINGUAS): Added ja (Japanese).
18373
18374 2004-12-22  Dan Williams <dcbw@redhat.com>
18375
18376         * src/NetworkManagerDevice.c
18377                 - Silently fail when setting bitrate doesn't work
18378
18379
18380         Patches from j@bootlab.org:
18381         * src/backends/NetworkManagerDebian
18382                 - Update backend to match functionality in RedHat backend
18383         * src/NetworkManagerDevice.c
18384                 - Take down then bring up wired devices after connection so
18385                 they send out ipv6 router advertisements
18386
18387 2004-12-21  Colin Walters  <walters@verbum.org>
18388
18389         * panel-applet/NMWirelessAppletDbus.c (nmwa_dbus_update_devices): Correctly
18390         test for NETWORK_MODE_ADHOC; spotted by: Greg <gonufer@gmail.com>.
18391
18392 2004-12-21  Colin Walters  <walters@redhat.com>
18393
18394         * configure.in: Correct named detection.
18395
18396 2004-12-21  Colin Walters  <walters@redhat.com>
18397
18398         * src/NetworkManager.c (nm_data_new): Initialize named.
18399         Also, set up a signal handler for SIGINT/SIGTERM, and exit
18400         the mainloop when these signals are received.
18401         (nm_data_free): Unref named.
18402         (sigterm_handler, sigterm_pipe_handler): New functions for
18403         exiting mainloop.
18404         
18405         * src/NetworkManagerMain.h (NMData): Add signal handling and
18406         nameserver bits.
18407
18408         * src/NetworkManager.c (nm_device_unref): Quit device mainloop on
18409         unref.
18410
18411         * src/NetworkManagerDHCP.c (set_nameservers): New function;
18412         set nameservers from DHCP response data.
18413         (set_domain_search): Set domain search from DHCP response.
18414         (nm_device_dhcp_configure): Invoke them.
18415
18416         * src/NetworkManagerSystem.c
18417         (nm_system_device_update_resolv_conf): Delete.  Deleting
18418         code is totally sweet.
18419
18420         * src/Makefile.am (NetworkManager_LDADD): Add libnamed.
18421
18422         * named/nm-named-manager.h, named/nm-named-manager.c: New files;
18423         implements an object which controls a nameserver.  Currently
18424         uses bind 9.
18425
18426         * configure.in: Check for named.
18427
18428         * Makefile.am (SUBDIRS): Add named dir.
18429
18430         * named/named.conf: New template config file.
18431
18432 2004-12-20  Colin Walters  <walters@redhat.com>
18433
18434         * src/NetworkManagerPolicy.c (nm_policy_get_best_device): Fix usage of '=='
18435         instead of '='.
18436
18437 2004-12-17  Dan Williams  <dcbw@redhat.com>
18438
18439         * Ad Ad-Hoc networking mode support.  In Ad-Hoc mode, we only try to get
18440                 link-local addresses instead of doing DHCP.
18441
18442         * In the panel applet, there's a new "Create new Wireless Network..." item
18443
18444         * The panel applet also sticks around now even if NetworkManager dies, but
18445                 it doesn't hide its icon when NM isn't around.  Not hiding the icon is
18446                 a bug, I'll fix that later.
18447
18448         * We also don't use 'nscd' anymore in the RH backend, it was impeding name
18449                 lookups after a switch rather than actually doing them.
18450
18451         * Clean up some of those warnings in nm_ap_list_* functions
18452
18453         * Delay between scans changed to 15s instead of 10s
18454
18455 2004-12-15  Dan Williams  <dcbw@redhat.com>
18456
18457         Patch from Tom Parker
18458         * Add autoip/Link Local Addressing support when we fail to get a DHCP
18459                 address
18460
18461         * Longer pause after setting ESSID on cards that support a larger number
18462                 of channels to give the card time to find the right channel
18463
18464         * Add system hook to restart mDNSResponder (or whatever the local implementation
18465                 of Multicast DNS is) when we activate interfaces
18466
18467 2004-12-15  Dan Williams  <dcbw@redhat.com>
18468
18469         * Rework the DHCP code again to revert to sending full ethernet frames
18470                 rather then relying on the kernel to do the right thing with our
18471                 packets.
18472
18473 2004-12-06  Dan Williams  <dcbw@redhat.com>
18474
18475         * dhcpcd/client.c
18476                 - Fix some minor errors in dhcp_handle_transaction() that caused
18477                         unexpected early timeouts of DHCP transactions
18478
18479         * dhcpcd/client.h
18480                 - DHCP retransmit time from 4s -> 5s
18481
18482 2004-12-05  Dan Williams  <dcbw@redhat.com>
18483
18484         * Major rework of the DHCP code, taking some cues from pump.  We don't
18485                 write raw Ethernet packets anymore, which simplifies the code quite
18486                 a bit.  The new code should be more robust, not hang in recvfrom()
18487                 as much, and generally work better.  This also means that we need
18488                 to force HAL/dbus to use a created GMainContext rather than the
18489                 default context, since having the DHCP renew/rebind thread using
18490                 its own GMainContext seemed to give dbus a fit.  There is also more
18491                 debugging information printed from the DHCP loop to help with future
18492                 problems.
18493
18494         * Also, if the DHCP server doesn't give us the "routersOnSubnet" option,
18495                 assume that the default gateway should be the DHCP server.
18496
18497         Patch from Matthew Schick <matt oss-institute org>
18498         * src/backends/NetworkManagerGentoo.c
18499                 - Fix compilation error due to missing "ip4_broadcast"
18500
18501 2004-12-03  Dan Williams  <dcbw@redhat.com>
18502
18503         * initscript/Makefile.am
18504         * initscript/Debian/NetworkManager
18505         * initscript/Gentoo/NetworkManager
18506         * initscript/RedHat/NetworkManager
18507         * initscript/NMLaunchHelper.c
18508                 - Remove NMLaunchHelper, if you need to wait until the network
18509                         comes up, use the dead code from CVS.
18510
18511 2004-12-01  Colin Walters  <walters@redhat.com>
18512         
18513         * configure.in: Suck in gcc warnings code from Rhythmbox,
18514         but use fewer default flags, and in particular add -Wno-unused,
18515         since the codebase has a lot of unused variables.
18516
18517         * test/nmtestdevices.c (create_device): 
18518         * test/nminfotest.c (get_network_string_property) 
18519         (get_networks_of_type): 
18520         * test/nmclienttest.c (main): 
18521         * src/NetworkManagerDbus.c (nm_dbus_create_error_message): 
18522         * initscript/NMLaunchHelper.c (get_nm_status): 
18523         * info-daemon/NetworkManagerInfoPassphraseDialog.c (update_button_cb): 
18524         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_create_error_message): 
18525         Fix declarations after statements.
18526
18527 2004-12-01  Colin Walters  <walters@redhat.com>
18528
18529         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_return_vpn_password): New method.
18530         (nmi_dbus_get_vpn_userpass): New method.
18531         (nmi_dbus_nmi_message_handler): Invoke it.
18532
18533         * info-daemon/NetworkManagerInfoDbus.h (nmi_dbus_return_vpn_password): Prototype.
18534
18535         * info-daemon/NetworkManagerInfoVPN.h,
18536         info-daemon/NetworkManagerInfoVPN.c: New files; responds
18537         to requests for VPN passwords.
18538
18539         * configure.in (GNOME_KEYRING_LIBS): Check for gnome-keyring.
18540
18541 2004-12-01  Colin Walters  <walters@redhat.com>
18542
18543         * test/nmtestdevices.c, test/nmclienttest.c: Add missing
18544         includes.
18545
18546 2004-12-01  Colin Walters  <walters@redhat.com>
18547
18548         * panel-applet/NMWirelessAppletDbus.c
18549         (nmwa_dbus_update_active_device_strength): Fix missing
18550         return value.
18551
18552 2004-12-01  Colin Walters  <walters@redhat.com>
18553
18554         * panel-applet/NMWirelessApplet.c: Add missing include.
18555
18556 2004-12-01  Colin Walters  <walters@redhat.com>
18557
18558         * src/NetworkManagerWireless.c (nm_wireless_qual_to_percent):
18559         Remove useless CLAMP (); the value is unsigned, and the case tests
18560         qual->qual < 100, so the value must always be between 0 and 100.
18561
18562 2004-12-01  Colin Walters  <walters@redhat.com>
18563
18564         * dhcpcd/buildmsg.c, dhcpcd/dhcp_test.c: Add missing includes.
18565
18566 2004-11-22  Colin Walters  <walters@verbum.org>
18567
18568         * src/backends/NetworkManagerRedHat.c (nm_system_update_dns): Run
18569         "nscd -i hosts" to invalidate the host cache instead of restarting nscd,
18570         which is essentially a noop since nscd caches hosts on disk too.
18571         
18572 2004-11-22  Colin Walters  <walters@redhat.com>
18573
18574         * src/Makefile.am (NetworkManager_SOURCES): Add
18575         NetworkManagerDevicePrivate.h.
18576
18577 2004-11-22  Dan Williams <dcbw@redhat.com>
18578
18579         * src/NetworkManagerDevicePrivate.h
18580                 - Split out the NMDevice struct to a different file so that stuff like
18581                         NetworkManagerDHCP.c and NetworkManagerSystem.c can use it
18582
18583         * dhcpcd/client.c
18584                 - fprintf->syslog
18585                 - (dhcpSendAndRecv): do non-blocking sends and receives, and check to see if we
18586                         need to cancel the dhcp request during the send and recv
18587
18588         * dhcpcd/client.h
18589                 - Move the DHCP option enum to dhcpcd.h
18590
18591         * src/NetworkManagerDHCP.c
18592                 - Split out the actual IP/netmask/etc setting code
18593                 - New Renew/Rebind functions
18594                 - New timer setup function for renew/rebind operations
18595
18596         * src/NetworkManagerDevice.c
18597                 - For device activation, if we are using DHCP then keep the activation thread
18598                         alive until device deactivation.  We need to renew/rebind the DHCP address
18599                         after the T1 (renew) and T2 (rebind) times have expired.
18600                 - Increase some timeouts after bringing wireless cards up/down
18601
18602 2004-11-17  Dan Williams <dcbw@redhat.com>
18603
18604         * Cache access point MAC addresses in NetworkManagerInfo after you've explicitly
18605                 connected to them.  Then, after a scan, match up non-ESSID-broadcasting access
18606                 points with any cached MAC addresses from NetworkManagerInfo.  Allows us to
18607                 show known access points that don't broadcast their ESSID in the menus without
18608                 any user intervention whatsoever.
18609
18610         * info-daemon/NetworkManagerInfoDbus.c
18611                 - (nmi_dbus_get_network_addresses, nmi_dbus_add_network_address): new functions
18612                         for dbus method calls "getNetworkAddresses" and "addNetworkAddress"
18613
18614         * src/NetworkManagerAP.[ch]
18615                 - Add a "user_addresses" data member to the NMAccessPoint structure
18616                 - (nm_ap_get_user_addresses, nm_ap_set_user_addresses): new functions for accessing
18617                         the user_addresses data member
18618
18619         * src/NetworkManagerAPList.c
18620                 - (nm_ap_list_get_ap_by_address): check user_addresses list too, instead of just
18621                         the AP's reported address
18622                 - (nm_ap_list_update_network): grab the user_addresses list from NetworkManagerInfo
18623
18624         * src/NetworkManagerDHCP.c
18625                 - Increase DHCP timeout from 25s -> 30s
18626
18627         * src/NetworkManagerDbus.[ch]
18628                 - (nm_dbus_get_network_addresses, nm_dbus_add_network_address): have NMI get/set
18629                         user addresses
18630
18631         * src/NetworkManagerDevice.c
18632                 - (nm_device_set_wireless_config): bring down the interface, wait 4s, bring it up,
18633                         wait 2s, then configure it.  Sometimes Prism54 cards will freeze up with
18634                         "mgnt tx queue full", seemingly in response to NM controlling the card too much.
18635                         So, we take the card down to clear it out.
18636                 - (nm_device_do_normal_scan): Copy over AP ESSIDs from the allowed access point list
18637                         too, since that's where the user_addresses are
18638
18639         * src/NetworkManagerPolicy.c
18640                 - (nm_state_modification_monitor): Tell NMI to add an AP's hardware address to
18641                         that wireless networks' user_addresses list upon successful activation
18642
18643 2004-11-16  Dan Williams <dcbw@redhat.com>
18644
18645         * src/NetworkManagerDevice.[ch]
18646                 - (nm_device_clear_activation_fail): new function
18647
18648         * src/NetworkManagerPolicy.c
18649                 - (nm_state_modification_monitor): clear the activation_failed flag on devices
18650                         when we've dealt with the failure so the user doesn't get failure-dialog-spammed
18651
18652 2004-11-16  Dan Williams <dcbw@redhat.com>
18653
18654         * src/NetworkManagerDevice.c
18655                 - (nm_device_activate_wireless): Unref best_ap upon success so we don't
18656                         leak the structure, better updating of now_scanning status
18657                 - (nm_device_wireless_network_exists): Rewrite for better/faster checking
18658
18659 2004-11-15  Dan Williams <dcbw@redhat.com>
18660
18661         Major rework of link detection code.  We now use DHCP
18662         as part of the link detection which proves to be much more robust,
18663         and also supports Open System authentication for wireless networks.
18664
18665         We no longer use external DHCP client programs.  Instead, we use 
18666         our own DHCP client, based on substantially reworked bits of 'dhcpcd'
18667         which was written by:
18668                 Yoichi Hariguchi <yoichi@fore.com>
18669                 Sergei Viznyuk <sv@phystech.com>
18670                 http://www.phystech.com/download/
18671         It resides in the "dhcpcd" directory and was refactored into a general
18672         purpose DHCP client library by me.
18673
18674         Also misc fixes (CPPFLAGS->AM_CPPFLAGS, move some stuff around),
18675         move src/backends/NetworkManagerSystem.h -> src/NetworkManagerSystem.h
18676
18677 2004-11-15  Dan Williams <dcbw@redhat.com>
18678
18679         Patch from Tom Parker <palfrey@tevp.net>:
18680
18681         * src/NetworkManagerDevice.c
18682                 - Less output to console when no access
18683                         points are found during a scan
18684
18685 2004-11-15  Dan Williams <dcbw@redhat.com>
18686
18687         Patch from Tom Parker <palfrey@tevp.net>:
18688
18689         * src/backends/interface_parser.c
18690                 - Use g_strdup ()
18691                 - Check for inp == NULL
18692                 - use syslog ()
18693
18694 2004-11-13  Colin Walters  <walters@redhat.com>
18695
18696         Patch from Tom Parker <palfrey@tevp.net>:
18697
18698         * src/Makefile.am (CPPFLAGS): Switch to AM_CPPFLAGS.
18699         
18700         * src/backends/NetworkManagerRedHat.c: Switch to
18701         including shvar.h instead of shvar.c.
18702
18703         * src/backends/NetworkManagerDebian.c: Don't include
18704         interface_parser.c in source file.
18705
18706         (libnmbackend_la_SOURCES): Don't include shvar.[ch]
18707         and interface_parser.[ch].
18708         * src/Makefile.am (libnmbackend_la_SOURCES) <TARGET_REDHAT>:
18709         Include shvar.c and shvar.h here.
18710         (libnmbackend_la_SOURCES) <TARGET_DEBIAN>: Include
18711         interface_parser.c and interface_parser.h here.
18712
18713 2004-11-12  Colin Walters  <walters@redhat.com>
18714
18715         * configure.in: Strip out TARGET_DISTRO and
18716         SYSTEM_BACKEND_FILE variables.  Switch to Automake
18717         conditionals.
18718
18719         * src/Makefile.am (noinst_LTLIBRARIES): Add libnmbackend.la.
18720         (libnmbackend_la_SOURCES): Use Automake conditionals
18721         to add distro-specific files.
18722
18723         * initscript/Makefile.am (SUBDIRS): Update to
18724         use conditionals.
18725
18726 2004-11-12  Colin Walters  <walters@redhat.com>
18727
18728         Patches from j bootlab org
18729
18730         * src/Makefile.am (EXTRA_NetworkManager_SOURCES): 
18731         Add interface_parser.[ch].
18732
18733         * src/backends/NetworkManagerDebian.c (nm_system_device_run_dhcp): Invoke
18734         dhclient with "-lf /var/lib/dhcp/dhclient-%s.leases".
18735
18736 2004-11-12  Colin Walters  <walters@redhat.com>
18737
18738         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_service_init): Delete
18739         call to nmi_dbus_is_running too, not necessary anymore.
18740         * info-daemon/NetworkManagerInfoDbus.c: Include stdlib.h to
18741         pick up exit().
18742
18743 2004-11-11  Colin Walters  <walters@verbum.org>
18744
18745         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_is_running):
18746         Delete.
18747         (nmi_dbus_service_init): Call dbus_bus_acquire_service with
18748         the DBUS_SERVICE_FLAG_PROHIBIT_REPLACEMENT flag, and
18749         then check the result for DBUS_SERVICE_REPLY_SERVICE_EXISTS.
18750         This avoids a race condition that made it pretty easily
18751         possible to get two NetworkManagerInfo daemons running.
18752
18753 2004-11-11  Colin Walters  <walters@verbum.org>
18754         
18755         * src/NetworkManager.c (main): Use daemon(3).
18756
18757         * info-daemon/NetworkManagerInfo.c (main): Ditto.
18758
18759         * dispatcher-daemon/NetworkManagerDispatcher.c (main): Ditto.
18760
18761 2004-11-10 Dan Williams <dcbw@redhat.com>
18762
18763         Patches from j bootlab org
18764         * src/NetworkManagerDevice.c
18765                 - (nm_device_activate_wireless): wait 5 seconds before attempting to detect
18766                         whether the card has a link or not, some cards are slow
18767                 - (nm_device_activation_configure_ip): make ipv6 work a bit better
18768
18769         * info-daemon/NetworkManagerInfoPassphraseDialog.c
18770                 - Disable the "Login" button on the passphrase dialog until the user
18771                         enters a valid passphrase or key
18772
18773         Patches from Tom Parker <palfrey tevp net>
18774         * src/backends/NetworkManagerDebian.c
18775                 - Add static IP support to the debian backend
18776
18777         * src/backends/interface_parser.[ch]
18778                 - Parse debian interface config files
18779
18780 2004-11-08 Dan Williams <dcbw@redhat.com>
18781
18782         * src/NetworkManagerDevice.c
18783                 - Some random fprintf->syslog conversions
18784                 - (nm_device_wireless_network_exists): double-check for network
18785                 - (nm_device_find_and_use_essid): Copy over encryption key no matter what
18786
18787         * src/NetworkManagerWireless.[ch]
18788                 - (nm_wireless_[128|64]bit_ascii_to_hex): make "ascii" argument unsigned again
18789                         so that the binary->ascii conversion works (if unsigned, the bitshift
18790                         will fill with zeros, which is what's required).  Also mask bitshift
18791                         result with 0xF for futher assurance.
18792
18793 2004-11-06 Dan Williams <dcbw@redhat.com>
18794
18795         * src/NetworkManagerUtils.c
18796                 - (nm_get_wireless_driver_support_level): default to
18797                         FULLY_SUPPORTED rather than UNSUPPORTED, forgot to
18798                         flip this when changing from whitelist->blacklist of
18799                         wireless drivers
18800
18801 2004-11-05 Dan Williams <dcbw@redhat.com>
18802
18803         Patch from Robert Paskowitz:
18804         * src/backends/NetworkManagerGentoo.c
18805                 - Update static IP config code
18806
18807 2004-11-05 Dan Williams <dcbw@redhat.com>
18808
18809         * info-daemon/NetworkManagerInfoDbus.c
18810           src/NetworkManagerDbus.[ch]
18811           src/NetworkManagerDevice.c
18812                 - Keep track of the # of attempts to get the WEP key
18813                         from the user and pass that along to the info daemon
18814
18815 2004-11-05 Dan Williams <dcbw@redhat.com>
18816
18817         * src/NetworkManagerUtils.c
18818                 - Blacklist wireless cards rather than whitelisting them.
18819                 - Grab driver name from HAL rather than trying to find it
18820                         ourselves.
18821
18822 2004-11-03 Dan Williams <dcbw@redhat.com>
18823
18824         * panel-applet/NMWirelessAppletOtherNetworkDialog.c,
18825                 - Disable OK button until valid data is entered
18826                         for encryption stuff too
18827
18828         * panel-applet/NMWirelessApplet.c
18829                 - Report card strength for current AP if the card
18830                         doesn't report strength data for scanned access
18831                         points
18832
18833         * src/NetworkManagerDevice.c
18834                 - Smooth out cards reported quality, Atmel card was
18835                         intermittently reporting no quality data but soon
18836                         recovers
18837
18838         * src/NetworkManagerWireless.c
18839                 - Better quality data percentage calculation.  Atmel
18840                         cards (mine at least) seem to report the quality
18841                         in percentage format already, so honor that
18842
18843         Patch from <j@bootlab.org>
18844         * NetworkManager.h
18845           info-daemon/NetworkManagerInfoPassphraseDialog.c
18846           info-daemon/passphrase.glade
18847           panel-applet/NMWirelessAppletOtherNetworkDialog.c
18848           panel-applet/essid.glade
18849           src/NetworkManagerAP.c
18850           src/NetworkManagerDevice.c
18851           src/NetworkManagerWireless.[ch]
18852                 - Support ASCII WEP keys, in both 40/64 bit and 104/128 bit
18853
18854 2004-11-03 Dan Williams <dcbw@redhat.com>
18855
18856         * src/NetworkManagerDevice.[ch]
18857                 - (nm_device_set_enc_key): Add parameter to set Authentication
18858                         Mode (Open System, Shared Key, or None).  We're still using
18859                         Shared Key for now though.
18860
18861 2004-11-02  Bryan Clark  <clarkbw@cvs.gnome.org>
18862
18863         * panel-applet/menu-info.c: change from bold text to light
18864         colored, may cause problems with some themes, i've tested a lot
18865         and they seem fine. 
18866
18867         * panel-applet/NMWirelessApplet.c: fix strength tooltip
18868
18869 2004-11-01  Colin Walters  <walters@verbum.org>
18870
18871         * src/NetworkManagerWireless.h, src/NetworkManagerWireless.c
18872         (nm_wireless_128bit_key_from_passphrase): Add const.
18873
18874         * src/NetworkManagerAP.h, src/NetworkManagerAP.c
18875         (nm_ap_set_enc_key_source): Add const.
18876         
18877 2004-11-01  Colin Walters  <walters@verbum.org>
18878
18879         * .cvsignore: Update.
18880
18881 2004-10-29 Dan Williams <dcbw@redhat.com>
18882
18883         * src/NetworkManagerDevice.c
18884                 - (nm_device_wireless_network_exists): Actually use the encryption
18885                         key we got from the applet when attempting to find a wireless network
18886                 - Don't bring devices down so much since on some cards it triggers
18887                         firmware hotplugs each time
18888
18889         * src/NetworkManagerDbus.c
18890                 - (nm_dbus_nm_set_active_device): free the passphrase we may have gotten
18891                         from the caller
18892
18893 2004-10-29 Dan Williams <dcbw@redhat.com>
18894
18895         * src/NetworkManager.c
18896                 - (nm_hal_device_property_modified): unlock a locked active
18897                         wireless device when a wired connection gets a link.
18898                         (Means you'll switch to wired whenever you plug in no
18899                         matter what).
18900
18901 2004-10-29 Dan Williams <dcbw@redhat.com>
18902
18903         * panel-applet/NMWirelessAppletOtherNetworksDialog.[ch]
18904                 - New files, implement the "Other wireless network" dialog
18905
18906         * panel-applet/NMWirelessApplet.c
18907                 - Move "other wireless network" dialog to separate file
18908
18909         * panel-applet/NMWirelessAppletDbus.[ch]
18910                 - Take key and key_type paramaters for the set_device function
18911
18912         * panel-applet/essid.glade
18913                 - Add UI bits for encryption settings
18914
18915         * src/NetworkManagerDbus.c
18916                 - Retrieve key and key_type params for "setActiveDevice" method call
18917                         and pass them on
18918                 - unref AP returned from nm_device_get_best_ap() when needed
18919
18920         * src/NetworkManagerDevice.c
18921                 - (nm_device_get_best_ap): ref the ap before returning it
18922                 - unref AP returned from nm_device_get_best_ap() when needed
18923                 - (nm_device_activate_wireless): add "ap" parameter so we don't
18924                         need to call nm_device_get_best_ap() here, it was pretty much
18925                         redundant anyway
18926                 - (AP_NEED_KEY): break second link check condition out into separate
18927                         function, and fix segfault when ap->enc_key_source was NULL
18928                 - (nm_device_find_and_use_essid): take key and key_type parameters and
18929                         pass them along to nm_device_wireless_network_exists().  If the
18930                         network does exist, set the passed-in key+key_type on the AP
18931
18932         * src/NetworkManagerPolicy.c
18933                 - unref AP returned from nm_device_get_best_ap() when needed
18934
18935 2004-10-28 Dan Williams <dcbw@redhat.com>
18936
18937         * src/NetworkManagerUtils.c
18938                 - (nm_spawn_process): Fix a potential dereference of NULL
18939
18940         Patches from Peter Jones:
18941
18942         * src/NetworkManagerDevice.c
18943                 - (nm_device_test_wireless_extensions): Better check for
18944                         wireless devices
18945
18946         * src/NetworkManagerUtils.c
18947                 - (nm_spawn_process): Pass in valid stdout and stderr so
18948                         executed programs don't randomly SIGPIPE and fail
18949                 - (nm_get_wired_driver_support_level): quash hal warning
18950                         when checking for USB ethernet device
18951
18952 2004-10-27 Dan Williams <dcbw@redhat.com>
18953
18954         * info-daemon/NetworkManagerInfo.c
18955           info-daemon/NetworkManagerInfoDbus.c
18956           info-daemon/NetworkManagerInfoPassphraseDialog.c
18957           panel-applet/NMWirelessApplet.c
18958                 - Properly escape gconf keys
18959
18960         * src/NetworkManager.c
18961                 - remove unused variables
18962
18963         * src/NetworkManagerAP.c
18964                 - (nm_ap_new_from_ap): Don't redundantly set new APs
18965                         refcount since it got set in nm_ap_new()
18966
18967         * src/NetworkManagerAPList.c
18968                 - (nm_ap_list_combine): Give up ownership of newly created
18969                         access points to the ap list, fixes memleak
18970
18971         * src/NetworkManagerDevice.c
18972                 - Remove cached_ap_list4 member since its not really needed
18973                 - (nm_device_wireless_network_exists): Try to get correct
18974                         encryption status of a found AP if its already in our
18975                         device list
18976                 - (nm_device_do_normal_scan): Clean up scanning a bit, make
18977                         memory allocs/deallocs a bit clearer and shorter-lived
18978
18979 2004-10-26 Ray Strode <rstrode@redhat.com>
18980
18981         * panel-applet/NMWirelessApplet.c:
18982           (custom_essid_item_selected):  kill some compiler
18983         warnings 
18984
18985 2004-10-26 John (J5) Palmieri <johnp@redhat.com>
18986
18987         * info-daemon/NetworkManagerInfoDbus.c
18988                 - (nmi_dbus_is_running): New function for determining if nmi is already running
18989                 - (nmi_dbus_service_init): exit if another instance of nmi is already running
18990
18991 2004-10-23 Dan Williams <dcbw@redhat.com>
18992
18993         * info-daemon/NetworkManagerInfoDbus.c
18994                 - Trap the "DeviceActivationFailed" signal
18995
18996         * docs/NetworkManager DBUS API.txt
18997                 - Add "DeviceActivationFailed" signal
18998
18999         * panel-applet/NMWirelessAppletDbus.c
19000                 - Quash the "NetworkManager service not available" message
19001
19002         * src/NetworkManagerDbus.[ch]
19003                 - Add the "DeviceActivationFailed" signal
19004
19005         * src/NetworkManagerDevice.c
19006                 - Add support for activation_failed flag
19007                 - Fix deadlock where activation thread didn't clean itself up, making
19008                         main thread still believe it was alive forever (didn't reset activation
19009                         flags like activating, just_activated, etc when IP configuration
19010                         failed)
19011
19012         * src/NetworkManagerPolicy.c
19013                 - Implement logic for DeviceActivationFailed signal, and when activation fails
19014                         for wireless networks, try to fall back to some other access point
19015
19016 2004-10-23 Dan Williams <dcbw@redhat.com>
19017
19018         * panel-applet/NMWirelessApplet.[ch]
19019                 - Place the GtkMenuBar inside a GtkEventBox, and add the Event Box
19020                         to the applet object, so we can get tooltips
19021                 - Add tooltips (RH #136866)
19022
19023         * src/NetworkManagerDevice.c
19024                 - When trying to find a wireless network, try to connect with encryption
19025                         turned on first, so that we can more accurately detect whether or not
19026                         we need to use encryption for the actual association later on
19027
19028 2004-10-21 Dan Williams <dcbw@redhat.com>
19029
19030         * Add some support for telling NetworkManagerInfo to tell the user
19031                 that they are using a device that's not fully supported
19032
19033         * Fix some assertions in debug messages due to null access point args
19034
19035 2004-10-21 Dan Williams <dcbw@redhat.com>
19036
19037         * src/NetworkManagerDevice.c
19038                 - Don't try to activate/bring up/down unsupported
19039                         devices
19040
19041         * src/NetworkManagerUtils.c
19042                 - Fix case of PCI ID checks for driver support levels
19043
19044 2004-10-21 Dan Williams <dcbw@redhat.com>
19045
19046         * NetworkManager.h
19047                 - New file, now contains commonly used structures and bits
19048                         for the dbus API of NetworkManager
19049
19050         * Makefile.am
19051                 - Deliver NetworkManager.h to ${includedir}/NetworkManager
19052
19053         * src/NetworkManager.h
19054                 - Rename -> src/NetworkManagerMain.c
19055
19056         * Various fixups all around to use NetworkManager.h and new
19057                 src/NetworkManagerMain.h, remove redundant bits that got
19058                 moved into NetworkManager.h
19059
19060         * src/NetworkManagerDevice.[ch]
19061           src/NetworkManagerUtils.[ch]
19062           src/NetworkManagerPolicy.c
19063           src/NetworkManagerDbus.c
19064                 - Whitelist wireless drivers, and blacklist some wired
19065                         drivers.  Also blacklist cipsec and ethernet-over-usb
19066                         devices at this time (RH #135722, RH #135648)
19067                 - Don't leak unsupported devices out over dbus, or allow
19068                         them to be set as the active device.  Skip over them
19069                         during automatic device picking
19070
19071         * test/nmclienttest.c
19072                 - Clean up the dbus code a lot
19073
19074 Tue Oct 19 14:20:29 2004  Jonathan Blandford  <jrb@redhat.com>
19075
19076         * configure.in: post release bump.
19077
19078 Tue Oct 19 14:19:24 2004  Jonathan Blandford  <jrb@redhat.com>
19079
19080         * configure.in:
19081         * NEWS: Released NetworkManager-0.3.1
19082
19083 2004-10-18 Dan Williams <dcbw@redhat.com>
19084
19085         Patches from Thom May:
19086         * test/nmtestdevices.c
19087                 - Include <string.h>
19088         * src/backends/NetworkManagerDebian.c:
19089                 - (nm_system_device_run_dhcp, nm_system_device_stop_dhcp)
19090                         (nm_system_device_flush_routes, nm_system_device_flush_addresses)
19091                         Move to using g_strdup_printf rather than arbitrary buffers
19092                 - (nm_system_device_setup_static_ip4_config) Implement function.
19093                 - (nm_system_kill_all_dhcp_daemons) Use killall -q rather than killall
19094
19095 2004-10-17 Dan Williams <dcbw@redhat.com>
19096
19097         * info-daemon/NetworkManagerInfoDbus.c
19098                 - Display name of network in the "network not found" dialog
19099
19100         * panel-applet/NMWirelessAppletDbus.c
19101                 - (nmwa_dbus_call_nm_method): new function replaces all other
19102                         nmwa_dbus_get_[string|string_array|int|boolean] methods
19103                 - nmwa_dbus_get_network_name() and nmwa_dbus_get_device_name()
19104                         consolidated into nmwa_dbus_get_object_name()
19105
19106 2004-10-15 Dan Williams <dcbw@redhat.com>
19107
19108         * src/NetworkManagerDbus.c
19109           info-daemon/NetworkManagerInfoDbus.c
19110                 - Display an error dialog when the user tries to use an
19111                         "Other wireless network" that's not found.
19112
19113 2004-10-15 Dan Williams <dcbw@redhat.com>
19114
19115         * panel-applet/NMWirelessApplet.[ch]
19116                 - Fix up corner cases in applet state, making it
19117                         look more responsive.  Change state to "connecting" when
19118                         the user is forcing a device too.
19119
19120 2004-10-15 Dan Williams <dcbw@redhat.com>
19121
19122         * src/NetworkManagerAPList.c
19123                 - (nm_ap_list_update_network): Disown AP after the list takes ownership
19124
19125         * src/NetworkManagerDbus.c
19126                 - (nm_dbus_nm_set_active_device): Simplify the device setting logic
19127
19128         * src/NetworkManagerDevice.c
19129                 - Disown APs after the device's AP list takes ownership
19130
19131 2004-10-15 Dan Williams <dcbw@redhat.com>
19132
19133         * panel-applet/NMWirelessApplet.c
19134                 - Update our applet state from the GUI thread
19135
19136         * panel-applet/NMWirelessAppletDbus.c
19137                 - Greatly simplify the locking to make the GUI thread
19138                         smoother.  Update a private copy of the device list
19139                         and active device and only when done talking to
19140                         NetworkManager turn it over to the GUI thread.
19141
19142 2004-10-15 Dan Williams <dcbw@redhat.com>
19143
19144         * src/NetworkManagerAP.[ch]
19145                 - Add "artificial" get/set functions, set for APs that
19146                         aren't discovered as part of a scan but instead
19147                         discovered by force-setting the ESSID
19148
19149         * src/NetworkManagerDevice.[ch]
19150                 - (nm_device_wireless_network_exists): pass back whether
19151                         or not the discovered AP was encrypted.  Also, try
19152                         falling back to encrypted mode on the card if unencrypted
19153                         association doesn't work
19154                 - (nm_device_find_and_use_essid): If the network requested
19155                         did in fact exists, but it wasn't in our scan list, add
19156                         an "artificial" entry for it.  Some Cisco cards don't
19157                         see non-ESSID-broadcasting APs in their scan but can still
19158                         associate with them if you know the ESSID, this works around
19159                         that behavior
19160                 - (nm_device_do_normal_scan): Carry "artificial" APs over from scan
19161                         to scan if the card is currently associated with that AP
19162
19163 2004-10-15 Dan Williams <dcbw@redhat.com>
19164
19165         ---- We have a website ----
19166         http://people.redhat.com/dcbw/NetworkManager
19167
19168         Patch from Robert Paskowitz:
19169         * src/NetworkManager.c
19170                 - (main): Make sure we are run as root
19171         * src/NetworkManagerDevice.c
19172                 - Fix type in ad-hoc setting function
19173
19174         Patch from Thom May:
19175         * src/backends/NetworkManagerDebian.c
19176                 - Make Debian backend compile again
19177
19178 2004-10-14 Dan Williams <dcbw@redhat.com>
19179
19180         * Tagged NetworkManager-0_3
19181
19182 2004-10-14 Dan Williams <dcbw@redhat.com>
19183
19184         Patch from Robert Paskowitz:
19185         * NEWS
19186           src/NetworkManagerDevice.[ch]
19187           src/backends/NetworkManagerDebian.c
19188           src/backends/NetworkManagerGentoo.c
19189           src/backends/NetworkManagerRedHat.c
19190           src/backends/NetworkManagerSlackware.c
19191                 - Add support for grabbing and using a broadcast address
19192                         from system config files
19193                 - Some Gentoo backend fixes for grabbing network config
19194                 - Fix LOG_WARN->LOG_WARNING
19195
19196 2004-10-14 Dan Williams <dcbw@redhat.com>
19197
19198         * NEWS: a few small fixes in the credits
19199
19200 Thu Oct 14 19:12:58 2004  Jonathan Blandford  <jrb@redhat.com>
19201
19202         * NEWS: prep for release.
19203
19204 Thu Oct 14 16:47:12 2004  Jonathan Blandford  <jrb@redhat.com>
19205
19206         * panel-applet/NMWirelessAppletDbus.c
19207         (nmwa_dbus_update_device_wireless_networks): remove warnings.
19208
19209 Thu Oct 14 16:40:39 2004  Jonathan Blandford  <jrb@redhat.com>
19210
19211         * panel-applet/NMWirelessApplet.c (animation_timeout): Make
19212         applet->state == APPLET_STATE_NO_NM animation.
19213
19214         * panel-applet/NMWirelessApplet.c (custom_essid_item_selected):
19215         set the text correctly.
19216
19217 2004-10-14 Dan Williams <dcbw@redhat.com>
19218
19219         * src/NetworkManager.c
19220                 - Only accept and manager 802.3 and 802.11 devices
19221
19222         * src/NetworkManagerDbus.[ch]
19223                 - (nm_dbus_nm_set_active_device): move most of the actual activation
19224                         logic into NetworkManagerDevice.c
19225                 - (nm_dbus_network_status_from_data): new function
19226                 - (nm_dbus_signal_network_status_change): new function, unused for now
19227                 - (nm_dbus_nm_message_handler): use nm_dbus_network_status_from_data () now
19228
19229         * src/NetworkManagerDevice.[ch]
19230                 - (nm_device_find_and_use_essid): new function.  Search for, and if found use,
19231                         a random ESSID.
19232
19233 2004-10-14 John (J5) Palmieri <johnp@redhat.com>
19234
19235         * info-daemon/NetworkManagerInfo.c 
19236                 - (main): Added session management
19237
19238 2004-10-14 Dan Williams <dcbw@redhat.com>
19239
19240         * panel-applet/NMWirelessAppletDbus.[ch]
19241                 - Expose network_device_[un]ref()
19242                 - Expose wireless_network_[un]ref()
19243                 - (wireless_network_new_with_essid): new function, create and return
19244                         a wireless network with a particular essid
19245
19246         * panel-applet/NMWirelessApplet.c
19247                 - Hook up the "other network" dialog to do something
19248
19249 Wed Oct 13 19:31:53 2004  Jonathan Blandford  <jrb@redhat.com>
19250
19251         * panel-applet/NMWirelessApplet.c: Add an essid dialog.  It
19252         doesn't work yet, but it looks okay.
19253
19254         * panel-applet/icons/*png: Resize to 22x22 and install in the
19255         right place.
19256
19257 2004-10-13 Dan Williams <dcbw@redhat.com>
19258
19259         * panel-applet/NMWirelessApplet.c
19260                 - Add function to print out applet_state in a readable
19261                         manner
19262
19263         * src/NetworkManager.c
19264                 - (main): Don't segfault when nm_dbus_init() fails, we had
19265                         a left-over call to hal_shutdown() into which we passed NULL
19266
19267         * src/NetworkManagerAP.c
19268                 - (nm_ap_set_essid): Allow NULL essids
19269
19270         * src/NetworkManagerAPList.[ch]
19271                 - More use of nm_ap_list_[un]lock ()
19272                 - (nm_ap_list_get_ap_by_essid): don't warn when looking for a NULL
19273                         network/essid, just return nothing.  Also skip over NULL
19274                         essid access points in the list when searching
19275                 - (nm_ap_list_get_ap_by_address): new function
19276                 - (nm_ap_list_update_network): set the access point's key source to
19277                         NULL when the key returned from NetworkManagerInfo is NULL or
19278                         of 0 length
19279                 - nm_ap_list_update_keys() -> nm_ap_list_update_properties(), and
19280                         copy timestamp over too
19281                 - (nm_ap_list_copy_essids_by_address): new function, attempt to
19282                         find the correct ESSID for a blank-essid access point by searching
19283                         through another list and matching access point MAC addresses
19284                 - (nm_ap_list_diff): exclude blank-essid access points from the diffs
19285
19286         * src/NetworkManagerDbus.c
19287                 - (nm_dbus_nm_set_active_device): deal with random networks the user
19288                         may specify.  This is mainly for access points that don't
19289                         broadcast their essid.  So if the user tells us to associate with
19290                         some random ESSID that's not in our access point list, we find
19291                         out if the access point does in fact exist (by attempting association
19292                         and then matching that access point's MAC address with the essid the
19293                         user gave us) and then we switch to it.
19294                 - (nm_dbus_devices_handle_request): don't add blank-essid access points
19295                         to the returned list of networks for the "getNetworks" method
19296
19297         * src/NetworkManagerDevice.[ch]
19298                 - Extra debugging info for link detection
19299                 - (nm_device_ap_list_get_ap_by_address): new function, return an AP
19300                         based on MAC address
19301                 - (nm_device_get_path_for_ap): ignore blank-essid access points
19302                 - (nm_device_wireless_network_exists): new function, find out whether
19303                         a random ESSID exists by attempting to associate with it
19304                 - (nm_device_do_normal_scan): allow blank-essid access points in our
19305                         device list as long as they have an AP MAC address we can use.
19306                         Also send WirelessNetwork[Dis]Appeared signals for non-active
19307                         devices too.  Lets the applet update more frequently.
19308
19309         * src/backends/NetworkManagerGentoo.c
19310                 - Patch from: Robert Paskowitz
19311                         - Update backend code for Gentoo
19312                         - Implement nm_system_device_update_config_info ()
19313
19314         * test/nmclienttest.c
19315                 - (set_network_device): new function, takes a command-line argument
19316                         and tells NetworkManager to use that wireless network
19317
19318 Wed Oct 13 John (J5) Palmieri <johnp@redhat.com>
19319
19320         * info-daemon/NetworkManagerInfo.c (nmi_spawn_notification_icon): Stop respawning
19321         if the notification icon crashes 5 times within 5 seconds of each respawn 
19322
19323 Tue Oct 12 22:53:04 2004  Jonathan Blandford  <jrb@redhat.com>
19324
19325         * panel-applet/NMWirelessApplet.c (nmwa_update_state): remove
19326         g_print.
19327
19328 Tue Oct 12 22:44:15 2004  Jonathan Blandford  <jrb@redhat.com>
19329
19330         * panel-applet/NMWirelessApplet.h: Change the name of the icons.
19331
19332         * panel-applet/NMWirelessApplet.c: (animation_timeout),
19333         (nmwa_update_state), (nmwa_destroy), (nmwa_setup_widgets),
19334         (nmwa_icons_free), (nmwa_icons_load_from_disk), (nmwa_icons_init):
19335         Change the name of the icons.
19336
19337         * panel-applet/menu-info.c: (nm_menu_wired_class_init),
19338         (nm_menu_wired_expose_event), (nm_menu_network_class_init),
19339         (nm_menu_wireless_class_init), (nm_menu_wireless_new),
19340         (nm_menu_wireless_expose_event): Really bad hack to get the style
19341         to draw in the right color.
19342
19343 Tue Oct 12 John (J5) Palmieri <johnp@redhat.com>
19344
19345         * info-daemon/NetworkManagerInfo.c (main):  Add child watch to respawn
19346         Notification if it crashes
19347
19348 Fri Oct  8 07:19:55 2004  Jonathan Blandford  <jrb@redhat.com>
19349
19350         * panel-applet/NMWirelessAppletDbus.c (nmwa_dbus_get_double): 
19351         (nmwa_dbus_get_string): remove unused functions
19352
19353         * panel-applet/NMWirelessApplet.c (nmwa_about_cb):
19354         (nmwa_cancel_timeout), (nmwa_get_menu_pos), (nmwa_factory):
19355         remove unused functions
19356
19357         * panel-applet/NMWirelessApplet.c: Rewrite icon code.
19358
19359 2004-10-12 Dan Williams <dcbw@redhat.com>
19360
19361         * panel-applet/NMWirelessAppletDbus.c
19362                 - New functions:
19363                         wireless_network_new
19364                         wireless_network_copy
19365                         network_device_new
19366                         network_device_copy
19367
19368         * src/NetworkManagerDevice.[ch]
19369                 - New functions:
19370                         nm_device_set_mode_managed
19371                         nm_device_set_mode_adhoc
19372                 - Use these functions where appropriate
19373                 - When creating a new wireless device, force the card
19374                         to managed/Infrastructure mode as soon as possible
19375
19376 2004-10-12 Dan Williams <dcbw@redhat.com>
19377
19378         * src/NetworkManagerDevice.c
19379                 - Force wireless cards into Infrastructure mode before we use them
19380
19381 2004-10-12 Dan Williams <dcbw@redhat.com>
19382
19383         * TODO
19384                 - Remove bit about static IP address support
19385
19386         * src/NetworkManagerUtils.c
19387                 - (nm_spawn_process): Add some error reporting
19388
19389         * src/NetworkManagerDevice.c
19390                 - (nm_device_activation_configure_ip): hook up to the static config
19391                         routines in the backends
19392
19393         * src/backends/NetworkManagerRedHat.c
19394                 - (nm_system_device_update_config_info): use shvar.c routines to
19395                         parse the config file iformation, not our own
19396                 - (nm_system_device_setup_static_ip4_config): new function, based
19397                         heavily on 'ifup' script and 'ipcalc' tool code.  Set up a device
19398                         with a static IP address and gateway
19399
19400         * src/backends/shvar.[ch]
19401                 - Parser (filched from initscripts package) for ifcfg-* files
19402
19403         * src/backends/NetworkManagerSystem.h
19404           src/backends/NetworkManagerGentoo.c
19405           src/backends/NetworkManagerDebian.c
19406           src/backends/NetworkManagerSlackware.c
19407                 - Stub nm_system_device_update_config_info() and nm_system_device_setup_static_ip4_config()
19408
19409 2004-10-11 Dan Williams <dcbw@redhat.com>
19410
19411         * TODO
19412                 - Remove bit about more robust AP diffing since I just implemented it
19413
19414 2004-10-11 Dan Williams <dcbw@redhat.com>
19415
19416         * src/NetworkManagerAP.c
19417                 - (nm_ap_new, nm_ap_new_from_ap): Don't crash when we don't have
19418                         enough RAM to allocate new AP structures, but return NULL instead
19419
19420         * src/NetworkManagerAPList.[ch]
19421                 - (nm_ap_list_is_empty): new function
19422                 - (nm_ap_list_combine): new function, combine two access point lists
19423                 - (nm_ap_list_copy_keys): new function, copy keys from one list
19424                         into another
19425
19426         * src/NetworkManagerDevice.[ch]
19427                 - Rename some functions to be clearer:
19428                         nm_device_get_best_ap_frozen -> nm_device_is_best_ap_frozen
19429                         nm_device_just_activated     -> nm_device_is_just_activated
19430                         nm_device_activating         -> nm_device_is_activating
19431                         nm_device_now_scanning       -> nm_device_is_scanning
19432                 - Cache the last 4 scans so that the access point list is more stable.
19433                         We combine the lastest two scans and use that as the AP list,
19434                         and diff that combined list against the combination of the earliest
19435                         two cached scans for the WirelessNetworkAppeared/Dissappeared signals
19436
19437 2004-10-08 John (J5) Palmieri <johnp@redhat.com>
19438
19439         * info-daemon/NWManagerInfo.h
19440                 - (struct NetworkManagerInfo): add shutdown_timeout GSource
19441
19442         * info-daemon/NWManagerInfoDbus.c
19443                 - (shutdown_callback): new function
19444                 - (nmi_dbus_filter): Create a 30 second timeout until shutdown
19445                         if NetworkManager goes away.  Kill the timeout
19446                         if NetworkManager restarts before the 30 seconds
19447                         are up.
19448                 - (nmi_dbus_service_init): 
19449                         - call gtk_main_quit if NetworkManager is not running
19450                         - add filters to monitor dbus service creations and
19451                                 deletions
19452         
19453 2004-10-08 John (J5) Palmieri <johnp@redhat.com>
19454
19455         * panel-applet/NMWirelessApplet.c
19456                 - (nmwa_update_state): Hide notification icon if we are only
19457                         showing one wired card and no wireless interfaces 
19458                         (Red Hat Bug #134895)
19459
19460         * panel-applet/NMWirelessAppletDbus.c
19461                 - (nmwa_dbus_filter): changed exit to gtk_main_quit ()
19462
19463         * info-daemon/NWManagerInfo.c
19464                 - (main): Terminated the notification_icon_cmd array with a NULL
19465
19466 2004-10-08  Hendrik Brandt  <hebra@cvs.gnome.org>
19467
19468         * configure.in (ALL_LINGUAS): Added de (German).
19469
19470 2004-10-08 Dan Williams <dcbw@redaht.com>
19471
19472         * src/NetworkManagerDevice.c
19473                 - Be a bit more robust about link checking, ie make sure that
19474                         the WEP key we were given actually has some data in it
19475
19476 2004-10-08 Dan Williams <dcbw@redhat.com>
19477
19478         * info-daemon/NetworkManagerInfo.c (main):
19479                 - Initialize GError object to NULL
19480
19481 2004-10-08 Dan Williams <dcbw@redhat.com>
19482
19483         * panel-applet/NMWirelessAppletDbus.c
19484                 - Die if NetworkManagerInfo dies, since it manages our lifetime
19485
19486 2004-10-08 Dan Williams <dcbw@redhat.com>
19487
19488         * info-daemon/NetworkManagerInfo.[ch]
19489           info-dameon/NetworkManagerInfoDbus.[ch]
19490           info-daemon/NetworkManagerInfoPassphraseDialog.[ch]
19491                 - Preserve original label text in the passphrase dialog so that
19492                         it actually gets updated with the new network name the next
19493                         time around.  Previously, we were overwriting it so you'd get
19494                         the wrong network name to enter a key for
19495                 - Add a "Key Type" combo to the passphrase dialog, user selects
19496                         encryption key type now, type is stored in GConf too
19497                 - Adjust NM<->NMI DBUS protocol to pass the key type back to NM too
19498
19499         * src/NetworkManagerAP.[ch]
19500                 - Remove all the encyption method magic.  It's now set by the user
19501                         and NetworkManager retrieves the type of encryption key from
19502                         NetworkManagerInfo
19503
19504         * src/NetworkManagerAPList.[ch]
19505           src/NetworkManagerDbus.[ch]
19506                 - Adjust to new way of setting encryption key and method
19507                 - Pull encryption method down from NMI along with key
19508
19509         * src/NetworkManagerDevice.[ch]
19510                 - Removed encryption method fallback magic as the method is now
19511                         determined by the user.  This greatly simplifies the connection
19512                         logic.
19513                 - More robust connection/link logic.  Besides removing the encryption
19514                         method fallback magic, check whether or not the card is receiving
19515                         invalidly encrypted packets, which usually indicates that we have
19516                         a bad WEP key set.
19517                 - Don't blindly forge ahead when DHCP fails (still not completely fixed)
19518
19519         * test/nminfotest.c
19520                 - Test out new "Key Type" stuff in the NMI passphrase dialog
19521
19522 2004-10-07 Dan Williams <dcbw@redhat.com>
19523
19524         * info-daemon/NetworkManagerInfo.conf
19525                 - Allow root user to run NMI too
19526
19527 2004-10-06 Dan Williams <dcbw@redhat.com>
19528
19529         * src/NetworkManagerDevice.[ch]
19530           src/NetworkManagerDbus.c
19531           doc/NetworkManager DBUS API.txt
19532                 - Add a new status tag "scanning", which is set when there
19533                         is no active network connection, but NetworkManager is
19534                         looking for an access point to associate with
19535
19536         * panel-applet/main.c
19537                 - Cast the applet appropriately for gtk_widget_show_all ()
19538
19539 Mon Oct  4 12:55:41 2004  Jonathan Blandford  <jrb@redhat.com>
19540
19541         * panel-applet/eggtrayicon.[ch]:
19542         * panel-applet/main.c: Add missing file
19543
19544 2004-10-04 Dan Williams <dcbw@redhat.com>
19545
19546         * src/NetworkManagerDevice.[ch]
19547                 - Add a slightly more robust method of determining if the WEP key
19548                         is correct or not, by checking the WEP-discarded packet count
19549                         on the card
19550
19551         * info-daemon/NetworkManagerInfo.c
19552                 - (nmi_gconf_notify_callback): Fix GConf essid escaping, should
19553                         un-escape values we pull out rather than escaping them
19554
19555 2004-10-03  Marcel Telka  <marcel@telka.sk>
19556
19557         * configure.in (ALL_LINGUAS): Added sk.
19558
19559 Fri Oct  1 18:26:03 2004  Jonathan Blandford  <jrb@redhat.com>
19560
19561         * panel-applet/menu-info.c (nm_menu_wired_class_init): update look
19562         and feel.  We should be back to working, and have a good, clean
19563         look.
19564
19565 2004-09-30 Dan Williams <dcbw@redhat.com>
19566
19567         * info-daemon/NetworkManagerInfo.c
19568           info-daemon/NetworkManagerInfoDbus.c
19569           test/nminfotest.c
19570                 - Escape ESSIDs in gconf
19571
19572         * src/NetworkManagerDevice.c
19573                 - Fix pseudo-scanning to use netowrk list from info daemon
19574
19575 Wed Sep 29 18:18:24 2004  Jonathan Blandford  <jrb@redhat.com>
19576
19577         * configure.in: Add a temporary --enable-notification-icon.  This
19578         will prolly go away.
19579
19580         * info-daemon/Makefile.am:
19581         * info-daemon/NetworkManagerInfo.c:
19582         * info-daemon/NetworkManagerInfo.h: Use a notification icon.
19583
19584         * panel-applet/Makefile.am:
19585         * panel-applet/NMWirelessApplet.c: Turn into a notification icon
19586         * panel-applet/NMWirelessApplet.h:
19587
19588 Tue Sep 28 16:35:20 2004  Jonathan Blandford  <jrb@redhat.com>
19589
19590         * panel-applet/NMWirelessApplet.c: Fix deadlock.  Add a separator
19591         before 'select custom ESSID'.
19592
19593         * panel-applet/menu-info.c: Start rewrite for better headers.  Not
19594         fully complete, but syncing in prep for merge.
19595
19596         * panel-applet/icons/*png: New images
19597
19598 2004-09-28 Dan Williams <dcbw@redhat.com>
19599
19600         * src/NetworkManager.c
19601           src/NetworkManagerDevice.c
19602           src/NetworkManagerPolicy.c
19603                 - Don't blow away an active wired connection on startup
19604
19605 2004-09-28  Bryan Clark  <clarkbw@cvs.gnome.org>
19606
19607         Changes from J5
19608         
19609         * info-daemon/NetworkManagerInfo.conf: fixed own permissions
19610
19611         * info-daemon/NetworkManagerInfoDbus.c: added service name to
19612         syslog output
19613
19614 Wed Sep 22 14:19:48 2004  Jonathan Blandford  <jrb@redhat.com>
19615
19616         * panel-applet/NMWirelessApplet.c: Only add essid's if we actually
19617         have a wireless card.
19618
19619 Wed Sep 22 14:05:48 2004  Jonathan Blandford  <jrb@redhat.com>
19620
19621         * panel-applet/NMWirelessApplet.c: move the custom essid item.
19622         Also, get the right device strings.
19623
19624 Wed Sep 22 13:51:45 2004  Jonathan Blandford  <jrb@redhat.com>
19625
19626         * panel-applet/menu-info.c (nm_menu_network_draw_indicator): Flip
19627         the logic to make this right.
19628
19629         * panel-applet/NMWirelessApplet.c (sort_networks_function): sort
19630         devices so that wired networks are always first.
19631
19632 2004-09-22    <clarkbw@cvs.gnome.org>
19633
19634         * initscript/Debian/.cvsignore:
19635         * initscript/Slackware/.cvsignore:
19636         Added new cvsignores for Makefile, Makefile.in
19637         
19638         * test/.cvsignore:
19639         Added nmtestdevices
19640         
19641         * src/NetworkManagerDevice.c: 
19642         * src/NetworkManager.c: 
19643         Updated the wireless/wired HAL device strings from net.ethernet to
19644         net.80203 or net.80211 depending on wired or wireless respectively
19645         
19646         * examples/python/NetworkManager.py: 
19647         s/Quality/Strength/
19648
19649         * examples/python/systray/network_tray.py:
19650         Lots of little changes and fixes.  been rotting for a while so I
19651         figured I'd finally sync them all with CVS
19652
19653 Tue Sep 21 18:05:34 2004  Jonathan Blandford  <jrb@redhat.com>
19654
19655         * configure.in: Add graphics
19656
19657         * panel-applet/Makefile.am: Add graphics
19658
19659         * panel-applet/icons/*: Add graphics
19660
19661         * panel-applet/NMWirelessApplet.c: Use new menu times to display
19662         the icons fully lined up.
19663
19664         * panel-applet/menu-info.c: 
19665         * panel-applet/menu-info.h: Add another menu type.
19666
19667 Fri Sep 17 14:04:34 2004  Jonathan Blandford  <jrb@redhat.com>
19668
19669         * panel-applet/NMWirelessApplet.c: Redo the menu item code.
19670
19671         * panel-applet/menu-item.[ch]: Wireless menu item.
19672
19673 2004-09-15  John (J5) Palmieri <johnp@redhat.com>
19674
19675         * info-daemon/NetworkManagerInfo.conf
19676                 - Created a more robust security policy for the DBus service
19677                         - everything is denied by default
19678                         - root can own and send to the service
19679                         - users logged in at the console can send to the service
19680
19681 2004-09-13  Dan Williams <dcbw@redhat.com>
19682
19683         * src/NetworkManagerDevice.c
19684                 - (nm_device_get_essid): use iw_get_basic_config() rather than
19685                         iw_get_ext (SIOCGIWESSID) since prism54 cards don't like
19686                         the latter
19687
19688 2004-09-13  Dan Williams <dcbw@redhat.com>
19689
19690         * TODO: fix typo
19691
19692         * docs/NetworkManager DBUS API.txt
19693                 - Update for new signal strength changes
19694
19695         * panel-applet/NMWirelessApplet.c
19696                 - Make panel icon show strength of the current connection
19697                 - Cleanups and memleak fixes
19698
19699         * panel-applet/NMWirelessApplet.h
19700                 - Add data members for signal strength on devices and networks
19701
19702         * panel-applet/NMWirelessAppletDbus.c
19703                 - Free more DBusErrors
19704                 - Update for new signal strength changes
19705                 - Make devices and networks more like real objects, use ref/unref methods
19706                 - Actually unlock the mutex when updating the active device
19707
19708         * src/NetworkManagerAP.c
19709                 - Change AP functions and data members from "quality"->"strength"
19710
19711         * src/NetworkManagerDbus.c
19712                 - Kill "getMaxQuality" and "getQuality" methods
19713                 - Add "getStrength" methods for Networks and Devices
19714
19715         * src/NetworkManagerDevice.[ch]
19716                 - Add accessors for device strength
19717                 - Add functions to update strength for a device.  Note that not all drivers
19718                         actually support signal strength for scanned access points (Atmel drivers
19719                         being one)
19720                 - Calculate signal strength for each AP during scan
19721
19722         * src/NetworkManagerWireless.[ch]
19723                 - Add function to return signal strength % from a device and a raw quality struct
19724
19725         * test/nmclienttest.c
19726                 - Update for new signal strength changes
19727
19728 2004-09-11  Dan Williams <dcbw@redhat.com>
19729
19730         * src/NetworkManager.c
19731                 - Fix race condition between initscripts and NM on card insertion
19732                         which could cause a card to keep an IP address and routes around
19733                         even when it was not the active device
19734
19735         * src/NetworkManagerDbus.c
19736                 - Fix compile errors, free more DBusErrors
19737
19738 2004-09-11  Dan Williams <dcbw@redhat.com>
19739
19740         * docs/NetworkManager DBUS API.txt
19741                 - Add an explanation of NM's API
19742
19743         * src/NetworkManagerDbus.c
19744                 - Free some more DBusErrors if needed
19745
19746 2004-09-11  Dan Williams <dcbw@redhat.com>
19747
19748         * panel-applet/NMWirelessApplet.c
19749           panel-applet/NMWirelessAppletDbus.c
19750                 - Start using NetworkDevice/WirelessNetwork structures in more places
19751                 - Update for unified device/network forcing in NetworkManager
19752
19753         * src/NetworkManager.c
19754                 - some code consolidation
19755
19756         * src/NetworkManagerDbus.c
19757                 - (nm_dbus_nm_set_active_device): "setActiveDevice" now takes either one
19758                         or two arguments:  the first is the NM ID of the device to switch to,
19759                         and the second (optional) argument is the ESSID of a wireless network
19760                         to use as well.
19761                 - Get rid of "setNetwork" method due to above change
19762
19763         * src/NetworkManagerDevice.c
19764                 - (nm_device_new): perform scan and update best AP on device creation
19765                 - nm_device_activation_cancel_if_needed()->nm_device_activation_should_cancel()
19766                 - nm_device_activation_signal_cancel()->nm_device_activation_cancel(), and
19767                         spin waiting for cancellation to finish before returning
19768
19769         * src/NetworkManagerPolicy.c
19770                 - Changes here clarify the situations in which a device switch occurs, and 
19771                         make sure to keep using a forced device and network if the user gives
19772                         us one
19773                 - Remove old unused code
19774
19775 2004-09-11  Martin Willemoes Hansen  <mwh@sysrq.dk>
19776
19777         * configure.in: Added Danish (da) to ALL_LINGUAS.
19778
19779 2004-09-09  Dan Williams <dcbw@redhat.com>
19780
19781         * panel-applet/NMWirelessAppletDbus.c
19782                 - Pull fresh devices and networks from NM when wireless networks
19783                         change.  Provides faster feedback of a forced wireless network
19784
19785         * src/NetworkManagerDbus.c
19786                 - Return error when "getMaxQuality" is called on a wired device
19787                 - Make best_ap freezing actually work again, and signal cancellation
19788                         of activation if there's already a device activation when the user
19789                         freezes the best_ap
19790
19791         * src/NetworkManagerDevice.c
19792                 - Don't clear out the best_ap for wireless devices when the link goes
19793                         down, that's done elsewhere
19794                 - Kill any dhcp daemons when cancelling device activation since they
19795                         may be stuck waiting for a DHCP address, and since we're cancelling
19796                         activation we don't care about that anymore
19797
19798         * src/NetworkManagerPolicy.c
19799                 - Make sure to unref the device we ref earlier (we refed it to make sure
19800                         it stuck around during device activation and such)
19801                 - If we were going to change the best device, but its activating currently
19802                         (and therefore the change didn't occur due to the check earlier)
19803                         we mark the state changed to we come back to it later when device
19804                         activation has canceled and its no longer activating
19805
19806         * src/backends/NetworkManagerRedHat.c
19807                 - SIGKILL dhcp daemons rather than SIGTERM-ing them
19808
19809 2004-09-09  Bryan Clark  <clarkbw@cvs.gnome.org>
19810
19811         * info-daemon/passphrase.glade: 
19812         set passphrase input to activates_default : True
19813
19814         * examples/python/systray/network_tray.py
19815         (network_tray.sort_networks):
19816
19817         Added support for having wireless always scanning
19818
19819 2004-09-09  Dan Williams <dcbw@redhat.com>
19820
19821         NOTE: this commit changes the behavior of wireless devices in
19822         NetworkManager.  They are now up all the time, scanning all
19823         the time.  Only the active device has an IP address and routing
19824         information set up however.  Also, NetworkManager will no longer
19825         opportunistically switch wireless networks when a better one
19826         comes in range, it will remain associated with one wireless network
19827         until that one drops out.
19828
19829         * panel-applet/NMWirelessApplet.c
19830           panel-applet/NMWirelessAppletDbus.c
19831                 - List all wireless cards and their respective networks
19832
19833         * src/NMLoadModules
19834                 - Use full path to /sbin/ip
19835
19836         * src/NetworkManager.c
19837                 - Keep wireless devices up all the time so they can scan
19838
19839         * src/NetworkManagerDbus.c
19840                 - On a WirelessNetworkUpdate signal from NMI, don't update
19841                         the "best" AP
19842
19843         * src/NetworkManagerDevice.c
19844                 - (nm_device_set_link_active): clear out the best ap for
19845                         wireless devices when the link is set to FALSE
19846                 - Scan on all wireless cards, all the time
19847                 - (nm_device_activation_worker): split out the wireless card
19848                         link-waiting code to a separate function
19849                 - Keep wireless cards up even if device activation fails
19850                 - Don't update the "best" ap as much
19851
19852         * src/NetworkManagerPolicy.c
19853                 - Don't update the best ap when checking if its frozen,
19854                         let link checking clear out a frozen best ap for us
19855
19856         * src/NetworkManagerWireless.c
19857                 - Scan on all wireless cards, all the time
19858
19859 2004-09-09  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
19860
19861         * configure.in: Added 'es' (Spanish) to ALL_LINGUAS.
19862
19863 2004-09-09  Ankit Patel <ankit@redhat.com>
19864
19865         * configure.in: Added 'gu' (Gujarati) to ALL_LINGUAS.
19866
19867 2004-09-09  Pablo Saratxaga  <pablo@mandrakesoft.com>
19868
19869         * configure.in: Added Walloon (wa) to ALL_LINGUAS.
19870
19871 2004-09-08  Bryan Clark  <clarkbw@cvs.gnome.org>
19872
19873         * examples/python/NetworkManager.py: 
19874         added CONNECTED, CONNECTING, and DISCONNECTED states
19875         added methods to return number of devices of a single type
19876
19877         * examples/python/systray/network_tray.py: 
19878         did some tweaks to get the menu looking near what it is supposed
19879         to look like.  Also did a Airo card hack to make it show the
19880         correct AP quality
19881
19882 2004-09-08  Dan Williams <dcbw@redhat.com>
19883
19884         * panel-applet/no-networkmanager.png
19885           panel-applet/Makefile.am
19886           panel-applet/NMWirelessApplet.c
19887                 - Add a "NetworkManager not running" icon and use it
19888                 - Use new consolidated GConf keys rather than Preferred/Trusted
19889
19890         * TODO: update
19891
19892         * info-daemon/NetworkManagerInfo.c
19893           info-daemon/NetworkManagerInfoDbus.[ch]
19894           info-daemon/NetworkManagerInfoPassphraseDialog.c
19895                 - There are now no longer two separate lists of wireless networks,
19896                         but one list where each network is "trusted" or not trusted
19897                 - Add a "getNetworkTrusted" dbus method
19898                 - "WirelessNetworkUpdate" signal now sent rather than
19899                         "PreferredNetworkUpdate/TrustedNetworkUpdate" signals
19900                 - Start freeing some dbus errors (not completed yet)
19901
19902         * info-daemon/passphrase.glade
19903                 - Remove the "don't show" hints for pager and taskbar
19904                 - Add a title since its going to be in the taskbar
19905
19906         * src/NetworkManager.[ch]
19907           src/NetworkManagerAPList.[ch]
19908                 - There are now no longer two separate lists of wireless networks,
19909                         but one list where each network is "trusted" or not trusted
19910
19911         * src/NetworkManagerAP.[ch]
19912                 - Add get/set "trusted" accessors and data bit
19913
19914         * src/NetworkManagerDbus.[ch]
19915                 - Add function to get "trusted" status of a network from NetworkManagerInfo
19916                 - Trap new WirelessNetworkUpdate signal rather than old separate signals
19917
19918         * src/NetworkManagerDevice.[ch]
19919                 - Add per-device config data (ip4 addr, gateway, netmask) and accessors
19920                 - (nm_device_new): Get device config from backend when initializing devices
19921                 - (nm_device_activation_worker): Split out device configuration on
19922                         activation to deal with static/dynamic IP differences, and try encryption
19923                         fallbacks on a device if the encryption method for the best AP is not good
19924                 - (nm_device_update_best_ap): convert to new consolidated access point lists from
19925                         NetworkManagerInfo, and copy over latest NMI info to best_ap when setting it
19926
19927         * src/NetworkManagerWireless.c
19928                 - libgcrypt code wasn't converting the MD5 digest to an ascii string, fix it
19929
19930         * src/backends/NetworkManagerRedHat.c
19931           src/backends/NetworkManagerSystem.h
19932                 - (nm_system_device_update_config_info): Add function to get device configuration
19933                         from system data in ifcfg-* files
19934
19935         * src/backends/NetworkManagerDebian.c
19936           src/backends/NetworkManagerGentoo.c
19937           src/backends/NetworkManagerSlackware.c
19938                 - Add stub functions for getting device configuration
19939
19940 2004-09-07  Dan Williams <dcbw@redhat.com>
19941
19942         * src/backends/NetworkManagerRedhat.c
19943           src/backends/NetworkManagerSlackware.c
19944                 - Use full path to /sbin/ip everywhere
19945
19946 2004-09-07  Dan Williams <dcbw@redhat.com>
19947
19948         Patch from: Narayan Newton <narayan_newton@yahoo.com>
19949
19950         * configure.in
19951           initscript/Makefile.am
19952           initscript/Slackware/Makfile.am
19953           initscript/Slackware/rc.networkmanager
19954           src/Makefile.am
19955           src/backends/NetworkManagerSlackware.c
19956                 - Add Slackware support
19957
19958 2004-09-07  Dan Williams <dcbw@redhat.com>
19959
19960         Patches below from:
19961                 <j@bootlab.org>
19962                 Mark Roach <mrroach@okmaybe.com>
19963                 Thom May <thom@debian.org>
19964
19965         * configure.in
19966           initscript/Debian/NetworkManager
19967           initscript/Debian/Makefile.am
19968                 - Initscript for Debian
19969
19970         * src/backends/NetworkManagerDebian.c
19971                 - Add missing system init function to allow compilation
19972                         on Debian
19973
19974 2004-09-03  Raphael Higino <raphaelh@cvs.gnome.org>
19975
19976         * configure.in: Added 'pt_BR' to ALL_LINGUAS.
19977
19978 2004-09-03  Akagic Amila <bono@linux.org.ba>
19979
19980         * configure.in: Added 'bs' to ALL_LINGUAS.
19981
19982 2004-09-02  Colin Walters  <walters@verbum.org>
19983
19984         * src/backends/NetworkManagerRedHat.c (nm_system_device_run_dhcp)
19985         (nm_system_device_stop_dhcp, nm_system_device_flush_routes): Use
19986         g_strdup_printf instead of arbitrarily sized buffers.
19987
19988 2004-09-01  Colin Walters  <walters@verbum.org>
19989
19990         * NetworkManager.pc.in: New file.
19991
19992         * Makefile.am, .cvsignore, configure.in: Add NetworkManager.pc.
19993
19994 2004-09-01  Amanpreet Singh Alam  <aalam@redhat.com>
19995         
19996         * configure.in: Punjabi(pa) is added to po/.
19997
19998 2004-08-31  Dan Williams <dcbw@redhat.com>
19999
20000         * Remove 'debug' extern global from all files since we now
20001                 use syslog()
20002
20003         * src/NetworkManager.[ch]
20004                 - Break out routine that get the net.interface property from HAL,
20005                         removing that logic from nm_create_device_and_add_to_list()
20006                 - (nm_create_device_and_add_to_list): make this a bit more general so
20007                         it doesn't do the talking to HAL.  Also add arguments to facilitate
20008                         the create of test devices.
20009                 - (nm_data_mark_state_changed): rename from nm_data_set_state_modified()
20010                 - (nm_data_new, main, nm_print_usage): add new argument "--enable-test-devices"
20011                         which makes NetworkManager listen for dbus commands to create test
20012                         devices, which have no backing hardware.  Use when you're on a plane
20013                         for example, and/or forgot your wireless card at home.  Test devices
20014                         _cannot_ be created unless NM is started with --enable-test-devices.
20015
20016         * src/NetworkManagerDbus.[ch]
20017                 - New "getLinkActive" method for devices
20018                 - New "setLinkActive" method for devices (only works on test devices)
20019                 - New "createTestDevice" method on NetworkManager object to create a test
20020                         device of a specified type (ie wired, wireless).  UDI is created from
20021                         scratch, as is the interface name.  Only works when NM is started with
20022                         --enable-test-devices switch.
20023                 - New "removeTestDevice" method on NetworkManager object which removes a
20024                         test device.  Only works when NM is started with --enable-test-devices
20025
20026         * src/NetworkManagerDevice.[ch]
20027                 - Logic to facilitate test devices.  Add variables to NMDevice struct to indicate
20028                         whether a device is a test device or not, and what its link status is.
20029                 - Deal with test devices in most functions.  For those that work directly on hardware
20030                         special-case test devices.
20031                 - (nm_device_new): don't create a test device if test devices weren't enabled on the
20032                         command-line.
20033                 - (nm_device_update_link_active): split out logic for wired and wireless device link
20034                         checking to separate functions to facilitate test device link checking.
20035                 - (nm_device_set_enc_key): Since some drivers for wireless cards are daft and
20036                         don't make a distinction between System Authentication and Encryption
20037                         (namely Cisco aironet), we use Open System auth when setting a WEP key
20038                         on the card.  We don't deal with Shared Key auth yet.
20039                 - (nm_device_activation_worker): split the activation cancel check logic out into
20040                         a separate routine nm_device_activation_cancel_if_needed()
20041                 - (nm_device_activation_signal_cancel): rename from nm_device_activation_cancel()
20042                 - (nm_device_fake_ap_list): Test wireless devices obviously cannot scan, so create
20043                         a list of fake access points that they can "see"
20044                 - (nm_device_is_test_device): return whether or not a device is a test device
20045
20046         * src/NetworkManagerPolicy.c
20047                 - (nm_policy_get_best_device): attempt to deal with wireless network selection,
20048                         previously if you "locked"/forced NM to use a wireless device but then
20049                         selected a wireless network for NM to use, it would switch to a wired device.
20050                         So, if the active device is wireless and it has a "forced" best AP, use it
20051                         if the "forced" best AP is still valid
20052                 - (nm_state_modification_monitor): deal with NULL best devices, for example
20053                         there were no usable network devices, or the last one was removed
20054
20055         * src/backends/NetworkManager*.c
20056                 - Deal with test devices, mostly just return success for operations like getting
20057                         a DHCP address
20058
20059         * test/nmtestdevices.c
20060                 - Test tool to create/remove/link-switch test devices
20061
20062 2004-08-30  Bryan Clark  <clarkbw@cvs.gnome.org>
20063
20064         * examples/python/NetworkManager.py: 
20065         added convience functions has_wired_device and has_wireless_device
20066
20067         * examples/python/systray/network_tray.py: 
20068         cleaned up a bunch of cruft, added support for listing wireless
20069         networks just like the real applet.  This is probably all I'm
20070         going to work on this applet from now on.
20071         TODO: add support for actually changing networks and devices
20072
20073         * examples/python/NetworkManager.py (NetworkManager.get_device): 
20074         changed "nm.networks" into a dict from a list so I can store all
20075         the cool information about networks in there
20076
20077         * examples/python/systray/network_tray.py: 
20078         Added nice message when you try to run without running make first
20079
20080         * examples/python/NetworkManager.py: 
20081         Bug fixes to the code so we get all the device information
20082         that we need in get_device()
20083         
20084         * examples/python/NMTester.py: 
20085         Fixed _print_device_list to print_device_list
20086
20087 2004-08-29  Seth Nickell  <seth@gnome.org>
20088
20089         * configure.in:
20090
20091         Actually properly setup the Debian backend in configure.
20092         
20093 2004-08-29  Colin Walters  <walters@verbum.org>
20094
20095         * test/nminfotest.c: Include string.h and stdlib.h.
20096         (get_network_string_property, get_networks_of_type): Return NULL.
20097
20098         * test/nmclienttest.c (get_device_name, get_active_device): Return
20099         NULL.
20100
20101         * src/backends/NetworkManagerRedHat.c (nm_system_device_stop_dhcp): Just
20102         use strlen, fgets always NULL-terminates the string.
20103
20104         * src/NetworkManagerDbus.c (nm_dbus_nmi_filter,
20105         dbus_message_get_member): Remove /* in comment.
20106
20107         * src/NetworkManagerUtils.c (LOCKING_DEBUG): Ditto.
20108
20109         * src/NetworkManager.c (quit): Unused, delete.
20110         (nm_data_free): Cast arg to GFunc.
20111
20112         * panel-applet/NMWirelessAppletDbus.c: Need to include
20113         string.h, and dbus-glib-lowlevel.h (the latter is needed
20114         for dbus_connection_setup_with_g_main at present).
20115         (nmwa_dbus_update_wireless_network_list): Parenthesize
20116         assignment in conditional.
20117         (nmwa_dbus_worker): Return NULL.
20118
20119         * panel-applet/NMWirelessApplet.c (nmwa_redraw)
20120         (nmwa_get_menu_pos, nmwa_toplevel_menu_activate)
20121         (nmwa_menu_add_text_item, nmwa_setup_widgets): Kill unused variables.
20122         (nmwa_populate_menu): Return NULL on failure, instead of just
20123         return;
20124
20125         * initscript/NMLaunchHelper.c (g_timeout_add): Cast arg to GSourceFunc.
20126
20127         * info-daemon/NetworkManagerInfoNetworksDialog.c (nmi_networks_dialog_init): Kill unused
20128         variables.
20129
20130         * info-daemon/NetworkManagerInfo.c (nmi_print_usage): Unused,
20131         delete.
20132         
20133 2004-08-29  Colin Walters  <walters@verbum.org>
20134
20135         * src/NetworkManagerDbus.c (nm_dbus_get_network_timestamp): Return
20136         a GTimeVal instead of time_t.  This is easier to work with,
20137         since time_t may be a long or double, we don't know.
20138
20139         * src/NetworkManagerDbus.h: Update prototype.
20140         
20141         * src/NetworkManagerAP.c (struct NMAccessPoint): Store a GTimeVal
20142         instead of time_t.
20143         (nm_ap_get_timestamp): Update to return GTimeVal.
20144         (nm_ap_set_timestamp): Update to take GTimeVal.
20145         
20146         * src/NetworkManagerDevice.c (nm_device_update_best_ap): Update
20147         to handle GTimeVal.
20148
20149         * src/NetworkManagerAPList.c (nm_ap_list_update_network): Handle
20150         GTimeVal change.
20151         (nm_ap_list_print_members): Fix warnings in printf format.
20152
20153 2004-08-29  Colin Walters  <walters@verbum.org>
20154         
20155         * panel-applet/NMWirelessApplet.c: Include config.h.
20156
20157 2004-08-29  Colin Walters  <walters@verbum.org>
20158
20159         * configure.in: Generate config.h.
20160
20161         * configure.in: Dump dependency on OpenSSL; we can't
20162         use it since this package is GPL:
20163         http://www.gnome.org/~markmc/openssl-and-the-gpl.html
20164         Instead, check for libgcrypt, use it if available,
20165         otherwise use included MD5 code.
20166
20167         * src/gnome-keyring-md5.h, src/gnome-keyring-md5.c:
20168         Suck in from gnome-keyring, munge a bit.
20169         
20170         * src/Makefile.am (NetworkManager_SOURCES) <!WITH_GCRYPT>: Include
20171         gnome-keyring-md5.h gnome-keyring-md5.c.
20172         (NetworkManager_LDADD) <WITH_GCRYPT>: Add dep on LIBGCRYPT_LIBS.
20173
20174         * src/NetworkManagerWireless.c (nm_md5): New function, uses
20175         libgcrypt or included gnome-keyring md5 bits.
20176         (nm_wireless_128bit_key_from_passphrase): Use nm_md5.
20177
20178 2004-08-28  Kjartan Maraas  <kmaraas@gnome.org>
20179
20180         * configure.in: Add «nb» and «no» to ALL_LINGUAS.
20181
20182 2004-08-27  Bryan Clark  <bclark@redhat.com>
20183
20184         * examples/python/systray/Makefile: 
20185
20186         Updated the clean section
20187         
20188         * examples/python/systray/trayiconmodule.c: 
20189         * examples/python/systray/trayicon.override: 
20190         * examples/python/systray/network_tray.py: 
20191         * examples/python/systray/eggtrayicon.h: 
20192         * examples/python/systray/eggtrayicon.c: 
20193         * examples/python/systray/Makefile: 
20194         * examples/python/README: 
20195         * examples/python/NetworkManager.py: 
20196         * examples/python/NMTester.py: 
20197
20198         Initial commit of these python example files
20199
20200 Fri Aug 28 2004 Dan Williams <dcbw@redhat.com>
20201
20202         * panel-applet/NMWirelessApplet.c
20203                 - Make current device bold
20204                 - Show more user-friendly device name if we got one from hal
20205
20206         * panel-applet/NMWirelessAppletDbus.c
20207                 - Grab "info.product" key from hal for network devices
20208                 - Cache the current active device
20209
20210 2004-08-27  Adam Weinberger  <adamw@gnome.org>
20211
20212         * configure.in: Added en_CA to ALL_LINGUAS.
20213
20214 2004-08-27  Christian Rose  <menthos@menthos.com>
20215
20216         * configure.in: Added "sv" to ALL_LINGUAS.
20217
20218 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20219
20220         * Tag NetworkManager-0.2
20221
20222 Thu Aug 26 17:23:16 2004  Jonathan Blandford  <jrb@redhat.com>
20223
20224         * initscripts/Makefile.am
20225         * configure.in: Make pass distcheck
20226
20227         * po/ChangeLog: added
20228
20229 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20230
20231         * panel-applet/NMWirelessApplet.c
20232                 - Remove debugging code
20233                 - Enable device switching from menus
20234
20235         * panel-applet/NMWirelessAppletDbus.[ch]
20236                 - Method for asking NM to switch devices
20237
20238         * src/NetworkManagerDevice.c
20239                 - Set dev->activating earlier, avoids race between
20240                         the dbus signal of "DeviceActivating" and setting
20241                         dev->activating (which is what NM's "status" method call
20242                         looks at)
20243
20244 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20245
20246         * panel-applet/NMWirelessApplet.[ch]
20247                 - Rework menu code to add devices to menu, and to show
20248                         signal strength for each access point.  Code cleanups
20249                         too.
20250
20251         * panel-applet/NMWirelessAppletDbus.c
20252                 - Grab network devices from NetworkManager too
20253                 - Grab quality information from NM for wireless networks
20254
20255         * src/NetworkManagerDbus.[ch]
20256                 - Add dbus methods for getting the HAL UDI from a device and
20257                         for getting its base quality, if its wireless
20258                 - Consolidate some functions (wireless network notifications,
20259                         device notifications)
20260                 - Add method for requesting NM to use a particular device
20261
20262         * src/NetworkManager.c
20263                 - Change for function consolidations from NetworkManagerDbus.c
20264                 - Implement active device locking and user-requested devices
20265                         (ie, tell NM to use a particular device instead of the one
20266                         it autochose)
20267
20268         * src/NetworkManagerDevice.c
20269                 - Add method for getting the base quality of a device, if its
20270                         wireless
20271                 - Grab device base quailty info from iwlib during scans
20272
20273         * src/NetworkManagerPolicy.c
20274                 - Use a user-requested device rather than the auto-chosen device
20275                         if we are told to
20276
20277 Thu Aug 26 15:12:36 2004  Jonathan Blandford  <jrb@redhat.com>
20278
20279         * Makefile.am: add po as a supdir
20280
20281         * autogen.sh: use gnome-autogen.sh
20282
20283         * initscript/Gentoo/.cvsignore:
20284         * initscript/RedHat/.cvsignore: Shut up cvs
20285
20286         * panel-applet/Makefile.am: Define GNOMELOCALEDIR for bonobo.
20287
20288         * panel-applet/NMWirelessApplet.c: (nmwa_populate_menu),
20289         (nmwa_fill): Use gettext.
20290
20291         * configure.in: add gettext support
20292         * po/.cvsignore:
20293         * po/NetworkManager.pot:
20294         * po/POTFILES.in:
20295
20296 2004-08-26  Seth Nickell  <seth@gnome.org>
20297
20298         * panel-applet/NMWirelessApplet.c: (nmwa_destroy),
20299         (nmwa_menu_item_activate), (nmwa_toplevel_menu_activate),
20300         (nmwa_add_menu_item), (nmwa_menu_item_data_free),
20301         (nmwa_dispose_menu_items), (nmwa_populate_menu),
20302         (nmwa_setup_widgets), (do_not_eat_button_press), (nmwa_new):
20303         * panel-applet/NMWirelessApplet.h:
20304
20305         Use a menu bar instead of a button for the main clickable
20306         thingy.
20307         
20308 2004-08-25  Dan Williams <dcbw@redhat.com>
20309
20310         * src/NetworkManagerDevice.c
20311                 - (nm_device_set_enc_key): always set device to "open" mode instead of
20312                         turning encryption off, because the Cisco driver doesn't associate
20313                         with WEP-enabled access points unless we are in "open"
20314
20315 2004-08-25  Dan Williams <dcbw@redhat.com>
20316
20317         * src/NetworkManagerWireless.c
20318                 - Don't try to defererence blank passphrases
20319
20320 2004-08-25  Dan Williams <dcbw@redhat.com>
20321
20322         * panel-applet/NMWirelessApplet.c
20323                 - Rebuild the menu whenever a user clicks
20324
20325 2004-08-25  Dan Williams <dcbw@redhat.com>
20326
20327         * panel-applet/NMWirelessApplet.c
20328                 - (nmwa_udpate_state): Set panel icon to "wired" (for lack of better ones)
20329                         when NM isn't around or when its not connected
20330
20331         * src/NetworkManagerDevice.c
20332                 - (nm_device_activation_worker): Make sure to reset dev->activating if we get
20333                         canceled.
20334
20335 2004-08-25  Dan Williams <dcbw@redhat.com>
20336
20337         * panel-applet/NMWirelessAppletDbus.c
20338                 - (nmwa_dbus_get_bool, nmwa_dbus_get_network_encrypted): correct method name
20339                         for getting encryption, and don't stop on "val" once we've gotten it
20340                         from NetworkManager.  Short form:  encryption should now show up.
20341
20342 2004-08-25  Dan Williams <dcbw@redhat.com>
20343
20344         * panel-applet/NMWirelessApplet.c
20345                 - Set ESSID on a gconf trusted network too when force-setting the wireless
20346                         network to associate with
20347
20348 2004-08-25  Dan Williams <dcbw@redhat.com>
20349
20350         * panel-applet/*
20351                 - Rework the panel applet to do all DBUS communication in a separate
20352                         thread
20353
20354 2004-08-25  Dan Williams <dcbw@redhat.com>
20355
20356         * info-daemon/NetworkManagerInfo.[ch]
20357                 - Remove "get_next_priority" function
20358
20359         * info-daemon/NetworkManagerInfoDbus.[ch]
20360                 - Convert "priority" functions to "timestamp"
20361
20362 2004-08-25  Dan Williams <dcbw@redhat.com>
20363
20364         * src/NetworkManagerAP.[ch]
20365                 - Add a "enc_method_good" member and accessors to an Access Point
20366                         to signal when we've found the correct encryption method
20367                         for an access point
20368                 - Add a "timestamp" member and accessors, remove "priority" member
20369                         and accessors (use timestamps instead)
20370                 - Rename "wep_key"->"enc_key"
20371                 - (nm_ap_get_enc_key_hashed): new, return the correct mangled key
20372                         for a specified encryption method using the access points
20373                         source encryption key/passphrase
20374
20375         * src/NetworkManagerAPList.c
20376                 - When updating a network with dbus, grab timestamp now instead of
20377                         priority
20378
20379         * src/NetworkManagerDBus.[ch]
20380                 - Add signal for "DeviceActivating"
20381                 - Switch priority->timestamp
20382
20383         * src/NetworkManagerDevice.c
20384                 - Change references of "wep_key" -> "enc_key" or "key"
20385                 - Signal DeviceActivating when starting activation
20386                 - When activating a wireless device, if the access point we are connecting
20387                         to is encrypted, and we have a source key, try to generate a mangled
20388                         key and use that (ie, generate real WEP key from a passphrase)
20389                 - Rework device activation to fallback to other encryption methods if
20390                         a previous one didn't work (ie, try mangling a key as a 104-bit passphrase
20391                         first, then if that doesn't work fall back to direct hex key).
20392                 - (nm_device_update_best_ap): fix a deadlock, and use timestamps instead of
20393                         priority.  We now prefer the latest access point used, rather than using
20394                         a priority scheme
20395                 - (nm_device_do_normal_scan): make the encryption method "unknown" on access
20396                         points we've just discovered, and merge in correct info from the global
20397                         access point lists
20398
20399 2004-08-25  Seth Nickell  <seth@gnome.org>
20400
20401         Patch from Matthew Garrett <mjg59@srcf.ucam.org> for adding
20402         Debian support.
20403         
20404         * src/Makefile.am:
20405         * src/backends/NetworkManagerDebian.c: (nm_system_device_run_dhcp),
20406         (nm_system_device_stop_dhcp), (nm_system_device_flush_routes),
20407         (nm_system_device_flush_addresses), (nm_system_enable_loopback),
20408         (nm_system_delete_default_route),
20409         (nm_system_kill_all_dhcp_daemons), (nm_system_update_dns),
20410         (nm_system_load_device_modules):
20411
20412 2004-08-24  Dan Willemsen <dan@willemsen.us>
20413
20414         * src/NetworkManager.c
20415           src/backends/NetworkManagerGentoo.c
20416           src/backends/NetworkManagerRedHat.c
20417           src/backends/NetworkManagerSystem.h
20418                 - Implement preliminary Gentoo support, adding a
20419                         nm_system_init function to the backend specification
20420
20421         * configure.in
20422                 - Distribution auto-detection, lowercase any user-fed
20423                         distribution names
20424
20425         * initscript/.cvsignore
20426           initscript/Makefile.am
20427           initscript/RedHat/Makefile.am
20428           initscript/RedHat/NetworkManager
20429           initscript/Gentoo/Makefile.am
20430           initscript/Gentoo/NetworkManager
20431                 - Refactored initscript code separately for each
20432                         distribution
20433
20434 2004-08-23  Dan Williams <dcbw@redhat.com>
20435
20436         * configure.in
20437           src/Makefile.am
20438           src/NetworkManagerDevice.c
20439           src/NetworkManager.c
20440           src/NetworkManagerUtils.[ch]
20441           src/backends/NetworkManagerSystem.h
20442           src/backends/NetworkManagerRedHat.c
20443           src/backends/NetworkManagerGentoo.c
20444                 - Refactor system-specific code into separate backends for
20445                         each distribution
20446
20447 2004-08-23  Dan Willemsen <dan@willemsen.us>
20448
20449         * dispatcher-daemon/NetworkManagerDispatcher.c
20450           info-daemon/NetworkManagerInfo.[ch]
20451           info-daemon/NetworkManagerInfoDbus.c
20452           info-daemon/NetworkManagerInfoPassphraseDialog.c
20453           src/NetworkManager.c
20454           src/NetworkManagerAP.c
20455           src/NetworkManagerAPList.c
20456           src/NetworkManagerDbus.c
20457           src/NetworkManagerDevice.c
20458           src/NetworkManagerPolicy.c
20459           src/NetworkManagerUtils.[ch]
20460           src/NetworkManagerWireless.c
20461                 - Used syslog functions for logging instead of NM_DEBUG_DISPLAY & fprintf
20462
20463         * src/NetworkManager.c
20464                 - Fixed usage wording for --no-daemon
20465
20466 2004-08-23  Dan Williams <dcbw@redhat.com>
20467
20468         * panel-applet/NMWirelessApplet.c
20469                 - Update our state every second to get more responsive panel icon
20470                 - (nmwa_update_state): remove bogus applet->pix_state = PIX_WIRED that
20471                         was causing our marching ants status blips to never move when
20472                         looking for a wireless network
20473
20474         * src/NetworkManagerDevice.c
20475                 - (nm_device_activation_begin): return if activation has already begun
20476                 - (nm_device_do_normal_scan): merge WEP key and priority from the
20477                         trusted/preferred network into the device's access point when the
20478                         scan list is processed
20479
20480 2004-08-23  Dan Williams <dcbw@redhat.com>
20481
20482         * initscript/NetworkManager
20483                 - Use NMLaunchHelper rather than sleeping
20484
20485         * initscript/NMLaunchHelper.c
20486           Makefile.am
20487                 - Add helper program that exits only when NM activates a device,
20488                         or 10 seconds have passed, whichever happens first.  This
20489                         stops the boot processes until we have a network connection,
20490                         which NM can't do because it daemonizes and brings the connection
20491                         up in the background.  Allows stuff like NFS to not die.
20492
20493 2004-08-20  Dan Williams <dcbw@redhat.com>
20494
20495         * info-daemon/NetworkManagerInfoPassphraseDialog.c
20496                 - (nmi_passphrase_dialog_ok_clicked): when updating the wep key
20497                         for a network, set the essid as well since it may not exist yet
20498                 - (nmi_passphrase_dialog_init): don't star out the passphrase field,
20499                         since WEP keys/passphrases are long and prone to entry-error
20500
20501         * panel-applet/Makefile.am
20502           panel-applet/wired.png
20503                 - Add (pulled from system-config-network temporarily)
20504
20505         * panel-applet/NMWirelessApplet.[ch]
20506                 - Show wired picture when a wired connection is used
20507                 - Rename wireless icon enums, adding WIRELESS
20508
20509         * src/NetworkManagerDevice.c
20510                 - (nm_device_activate_wireless): unset encryption before bringing
20511                         down the card and setting the essid
20512                 - (nm_device_activatin_worker): request a key from the user if the
20513                         AP we are connecting to is encrypted but we don't have a key
20514                         for it yet
20515                 - (nm_device_set_user_key_for_network): fix missing '== 0' for a
20516                         strcmp() that prevented a user-entered key from actually getting
20517                         used
20518
20519 2004-08-16  Dan Williams <dcbw@redhat.com>
20520
20521         * initscript/NetworkManager
20522                 - Check for /sbin/ip
20523                 - Do sysctl magic that network service does
20524                 - sleep 4s after start to allow network time to come up [hack]
20525
20526         * src/Makefile.am
20527           src/NMLoadModules
20528                 - Load all network device kernel modules (hal doesn't know devices
20529                         are ethernet until the module is loaded, and therefore we don't know)
20530
20531         * src/NetworkManager.c
20532                 - (main): daemonize later, launch NMLoadModules to alert HAL of our
20533                         network devices, and bring up the loopback device explicitly
20534
20535         * src/NetworkManagerUtils.[ch]
20536                 - (nm_enable_loopback): new function
20537
20538 2004-08-13  Dan Williams <dcbw@redhat.com>
20539
20540         * configure.in
20541           panel-applet/Makefile.am
20542                 - Fix up cleanfiles and server_DATA/server_in_files
20543
20544         * README
20545                 - Update with some comments on theory of operation
20546
20547         * CONTRIBUTING
20548           Makefile.am
20549                 - Add CONTRIBUTING
20550
20551 2004-08-12  Dan Williams <dcbw@redhat.com>
20552
20553         * info-daemon/passphrase.glade
20554                 - Set window title to " "
20555
20556         * panel-applet/Makefile.am
20557           panel-applet/keyring.png
20558                 - Deliver to correct place
20559
20560         * panel-applet/NMWirelessApplet.[ch]
20561                 - Add comments
20562                 - Remove applet->have_active_device as its no longer used
20563                 - (nmwa_load_theme): load keyring.png too
20564                 - (error_dialog): remove
20565                 - (show_warning_dialog): subsume functionality of error dialog too
20566                 - (nmwa_destroy, nmwa_new): create and dispose of an application-wide GConfClient
20567                 - (nmwa_handle_network_choice): add to deal with user clicking on an item from
20568                         the networks menu
20569                 - (nmwa_menu_item_activated): GtkMenuItem "activate" signal handler
20570                 - (nmwa_button_clicked, nmwa_setup_widgets): create and populate the menu on startup
20571                         and when we get broadcasts of changed wireless access points only, not when the
20572                         user clicks on the button to display the menu (too long of a wait)
20573                 - (nmwa_add_menu_item): Make active network bold, and place a keyring icon beside
20574                         networks that are encrypted
20575                 - (nmwa_dispose_menu, nmwa_menu_item_data_free): dispose of the data we place on each
20576                         menu item with g_object_set_data()
20577
20578         * panel-applet/NMWirelessAppletDbus.[ch]
20579                 - (nmwa_dbus_get_bool): add method to return boolean value from dbus message
20580                 - (nmwa_dbus_get_active_network): add (nmwa_dbus_get_string() wrapper to get active network)
20581                 - (nmwa_dbus_add_networks_to_menu): clean up, only show one instance of each ESSID in the menu
20582                 - (nmwa_dbus_set_network): force NetworkManager to use a particular network for wireless cards
20583                 - (nmwa_dbus_init, nmwa_dbus_filter): Trap network appear/disappear and device
20584                         activation/deactivation signals and rebuild the menu when they happen
20585
20586         * src/NetworkManager.c
20587                 - (main): use new nm_spawn_process() rather than system()
20588
20589         * src/NetworkManagerDbus.c
20590                 - (nm_dbus_devices_handle_request): don't compare AP structure addresses directly, but essids
20591                         instead.  Since we can now force best_aps to stick around, the AP structure to which
20592                         dev->options.wireless.best_ap points to won't necessarily be in the device's device list
20593                         if a scan has happened since the best_ap was frozen.  Also add "setNetwork" method
20594                         to freeze the best_ap.
20595
20596         * src/NetworkManagerDevice.[ch]
20597                 - (nm_device_activation_worker): Use new nm_spawn_process() call rather than system()
20598                 - (nm_device_*_best_ap): add freeze/unfreeze/get_frozen functions, and don't really update
20599                         the best_ap in nm_device_update_best_ap() if the best_ap is frozen AND in the device's
20600                         ap list
20601
20602         * src/NetworkManagerUtils.[ch]
20603                 - (nm_spawn_process): add replacement for system() usage
20604
20605 2004-08-11  Dan Williams <dcbw@redhat.com>
20606
20607         * panel-applet/NMWirelessApplet.[ch]
20608                 - Fix up copyright and credits to include Bastien and Eskil,
20609                         who created the gnome-applets wireless applet, from whose
20610                         skeleton this one was created
20611                 - Rework nmwa_update_state()/nmwa_draw() so that state and which
20612                         pixmap to draw is computed during nmwa_update_state()
20613                 - Applet now shows itself all the time due to panel packing issues
20614                         which caused the applet to previously never come back after hiding.
20615                         When a wired device is the active device, the applet shows "not connected"
20616
20617         * panel-applet/NMWirelessAppletDbus.[ch]
20618                 - Clean up error messages and show what function they are from
20619                 - nmwa_dbus_get_active_wireless_device()->nmwa_dbus_get_active_device()
20620                 - Add new device type getters, and a status getter
20621
20622         * src/NetworkManagerDbus.c
20623                 - (nm_dbus_devices_handle_request): Don't return an active network unless that
20624                         network is actually in the device's ap list
20625                 - (nm_dbus_nm_message_handler): Fix silly mistake returning status
20626
20627         * src/NetworkManagerDevice.c
20628                 - (nm_device_update_best_ap): If the best AP is NULL, clear out the ESSID of the
20629                         card
20630
20631         * test/nmclienttest.c
20632                 - Report status of NetworkManager too
20633
20634 2004-08-11  Dan Williams <dcbw@redhat.com>
20635
20636         * info-daemon/NetworkManagerInfo.c:
20637                 - (main): clean up Seth's code style
20638
20639         * info-daemon/NetworkManagerInfoDbus.c:
20640                 - Use the more aptly-named path/service/interface constants from NetworkManager
20641                 - Don't return empty strings ("") as object paths ever, instead return errors
20642
20643         * panel-applet/NMWirelessApplet.c:
20644                 - Clean up Seth's code style
20645
20646         * src/NetworkManager.[ch]
20647                 - (nm_remove_device_from_list): remove anything having to do with pending_device
20648                 - (main, nm_print_usage): change --daemon=[yes|no] -> --no-daemon
20649
20650         * src/NetworkManagerAPList.[ch]
20651                 - Move Iter struct right above the iter functions to preserve opacity
20652                 - (nm_ap_list_remove_ap): implement
20653                 - (nm_ap_list_update_network): deal with errors returned from nm_dbus_get_network_priority(),
20654                         remove AP if NetworkManagerInfo doesn't know anything about it
20655                 - (nm_ap_list_diff): user NMAPList iterators
20656                 - (nm_ap_list_print_members): implement debugging function
20657
20658         * src/NetworkManagerDbus.[ch]
20659                 - (nm_dbus_nm_get_active_device): remove anything to do with pending_device
20660                 - (nm_dbus_get_user_key_for_network): remove DBusPendingCall stuff (unused),
20661                         and move the actual key setting stuff into NetworkManagerDevice.c
20662                 - (nm_dbus_get_network_priority): return -1 now on errors
20663                 - (nm_dbus_nmi_filter): fix strcmp() error that caused PreferredNetworkUpdate signals to
20664                         get lost, and force the active device to update its "best" ap when AP lists change
20665                 - (nm_dbus_nm_message_handler): Update conditions for returning "connecting" for a "status"
20666                         method call due to pending_device member removal
20667
20668         * src/NetworkManagerDevice.[ch]
20669                 - Move NMDevice structure to the top
20670                 - Add a wireless scan mutex and a best_ap mutex to the Wireless Options structure
20671                 - Remove Pending Action stuff from everywhere
20672                 - (nm_device_activation_*): We now "begin" activation and start a thread to do the
20673                         activation for us.  This thread blocks until all conditions for activation have
20674                         been met (ie for wireless devices, we need a valid WEP key and a "best" ap), and
20675                         then setup up the interface and runs dhclient.  We have to do this because there
20676                         is no guaruntee how long dhclient takes, and while we are blocking on it, we cannot
20677                         run our main loop and respond to dbus method calls or HAL device removals/inserts
20678                 - (nm_device_set_user_key_for_network): Move logic here from NetworkManagerDbus.c so we
20679                         can tell nm_device_activation_worker() that we've got a key
20680                 - (nm_device_*_best_ap): lock access to best_ap member of Wireless Options structure
20681                 - (nm_device_get_path_for_ap): dumb it down so the list doesn't lock against itself when
20682                         diffing (AP appear/disappear signal functions make sure the AP is actually in the device's list)
20683                 - (nm_device_update_best_ap): move logic from nm_wireless_is_ap_better() here
20684
20685         * src/NetworkManagerPolicy.c
20686                 - Remove anything to do with pending_device
20687                 - Adjust device activation to deal with activation-in-worker-thread
20688
20689         * src/NetworkManagerUtils.c
20690                 - Clean up locking debugging a bit
20691
20692         * src/NetworkManagerWireless.[ch]
20693                 - (nm_wireless_is_ap_better): remove, stick logic in nm_device_update_best_ap().  This function
20694                         was badly named and is better as a device function
20695
20696         * panel-applet/.cvsignore: add
20697
20698 2004-08-09  Seth Nickell  <seth@gnome.org>
20699
20700         * panel-applet/NMWirelessApplet.c: (nmwa_timeout_handler),
20701         (nmwa_button_clicked), (nmwa_populate_menu), (nmwa_setup_widgets),
20702         (nmwa_new):
20703         * src/NetworkManagerDbus.c: (nm_dbus_nmi_filter):
20704
20705         Don't load the menus until clicked on (also removes a call outside
20706         normal code paths at first load).
20707
20708         Hide applet when NM is not present.
20709         
20710         Improve printf debugging stuff.
20711         
20712 2004-08-09  Dan Williams <dcbw@redhat.com>
20713
20714         * dispatcher-daemon/NetworkManagerDispatcher.c:
20715                 - Covert uses of dbus_message_iter_* over to dbus_message_get_args
20716                 - Use constants for NetworkManager interface, service, and path
20717
20718 2004-08-09  Dan Williams <dcbw@redhat.com>
20719
20720         * src/NetworkManagerDbus.c:
20721                 - (nm_dbus_nm_get_active_device, nm_dbus_nm_get_devices): Never return an empty object path,
20722                         instead return an error message
20723                 - (nm_dbus_devices_handle_request): Return error when getActiveNetwork/getNetworks is called
20724                         on a wired device.  Also never return an empty object path, instead return an error message
20725
20726 2004-08-06  Seth Nickell  <seth@gnome.org>
20727
20728         * panel-applet/NMWirelessApplet.c: (nmwa_new):
20729
20730         Check the error code when getting a connection.
20731         
20732         * panel-applet/NMWirelessAppletDbus.c: (nmwa_dbus_init):
20733
20734         Check if the NM service exists when initializing (rather than
20735         assuming it does not).
20736         
20737         * src/NetworkManagerDbus.c: (nm_dbus_init):
20738
20739         Don't acquire the well-known service name until we have
20740         registered object/path handlers and can actually receive
20741         calls.
20742         
20743 2004-08-06  Dan Williams <dcbw@redhat.com>
20744
20745         * panel-applet/*
20746                 - Add panel applet
20747
20748         * src/NetworkManagerPolicy.c
20749           src/NetworkManager.c
20750                 - Get access point lists from NetworkManagerInfo on-demand,
20751                         and look for ServiceCreate/ServiceDeleted signals to see when
20752                         we should query NMI for lists
20753         * src/NetworkManagerAPList.c
20754                 - Make sure to init the list's mutex
20755                 - Convert traversals of the list over to the list iter functions
20756
20757         * src/NetworkManagerDbus.[ch]
20758                 - Use more aptly-named path/service/interface constants
20759                 - Treat both active and pending devices the same for "getActiveDevice"
20760                 - Add a "status" method returning "connected", "connecting", or "disconnected"
20761
20762         * src/NetworkManagerDevice.c
20763                 - Honor "ignored" network list when picking best ap to use
20764
20765 2004-08-06  Seth Nickell  <seth@gnome.org>
20766
20767         * aclocal.m4:
20768
20769         Autogenerated, remove from CVS.
20770         
20771         * autogen.sh:
20772
20773         Don't hardcode automake version.
20774         
20775         * configure.in:
20776         * info-daemon/Makefile.am:
20777         * info-daemon/NetworkManagerInfo.c: (main):
20778
20779         Use GnomeProgram et al. for doing session management.
20780         Use popt stuff for argument parsing rather than doing
20781         it manugally.
20782         
20783 2004-08-05  Dan Williams <dcbw@redhat.com>
20784
20785         * test/nminfotest.c
20786                 - Update to new NMI dbus API, check different network types
20787
20788         * info-daemon/NetworkManagerInfoDbus.c
20789                 - Update to new NM dbus API, ie network type sent in query message
20790
20791 2004-08-05  Dan Williams <dcbw@redhat.com>
20792
20793         * An assload of changes
20794
20795 2004-08-02  Dan Williams <dcbw@redhat.com>
20796
20797         * TODO
20798                 - new task: proper logging support
20799
20800         * info-daemon/NetworkManagerInfo.c
20801                 - Correct spelling of "canceled"
20802                 - Correct casting of objects for g_signal_connect()
20803
20804         * info-daemon/NetworkManagerInfoDbus.c
20805                 - Add defines for NetworkManager namespace and object path, and use them
20806                 - Add filter function to trap new signals from NetworkManager:
20807                         WirelessNetworkAppeared, WirelessNetworkDisappeared
20808
20809         * info-daemon/passphrase.glade
20810                 - Change name of "ok" button to "Login to Network..."
20811                 - Mark invisible
20812
20813         * src/NetworkManager.c
20814                 - Code and debug message cleanups
20815                 - Rename "nm_add_current_devices"->"nm_add_initial_devices"
20816                 - (nm_add_initial_devices) Check returned string array of devices
20817                         and don't try to add devices if array is NULL
20818                 - (main) Initialize libhal a bit later, make code a bit clearer
20819
20820         * src/NetworkManagerAP.[ch]
20821                 - New accessor and data member "matched": used to speed up AP list
20822                         diffing
20823                 - New accessor and data member "enc_method": will be used during key
20824                         fallback to cache which passphrase->key conversion actually works
20825                         so we don't have to do it every time
20826
20827         * src/NetworkManagerAPList.[ch]
20828                 - (nm_ap_list_find_ap_in_list) New: find an AP by essid in an AP list
20829                 - (nm_ap_list_diff) New: given two lists of access points, find the differences
20830                         between them, and send WirelessNetworkAppeared/Disappeared signals over
20831                         dbus in response to those differences
20832
20833         * src/NetworkManagerDbus.[ch]
20834                 - (nm_dbus_get_object_path_from_ap) New: given a device and an access point,
20835                         make an object path for that access point (NOTE that we don't yet check to
20836                         make sure that access point is actually in the device's AP list yet)
20837                 - (nm_dbus_get_ap_from_object_path) Renamed from nm_dbus_get_network_from_object_path
20838                 - (nm_dbus_signal_wireless_network_appeared, nm_dbus_signal_wireless_network_disappeared)
20839                         New: signal appearance/disappearance of wireless networks
20840                 - (nm_dbus_set_user_key_for_network) Mark the network/ap as invalid if the user cancelled
20841                         key entry
20842
20843         * src/NetworkManagerDevice.[ch]
20844                 - (nm_device_ap_list_clear) Use nm_ap_list_free rather than doing it ourselves
20845                 - (nm_device_ap_list_get) New: return the AP list (static function)
20846                 - (nm_device_do_normal_scan) Destroy old AP list later, so that we can diff the
20847                         new one resulting from the scan with the old one
20848
20849         * src/NetworkManagerWireless.c
20850                 - (nm_wireless_is_most_prefered_ap) "invalid" access points cannot be "best" access points
20851
20852         * test/nminfotest.c
20853                 - #define object paths and namespaces and use the #defines rather than static strings
20854                 - Test out user-key functionality of NetworkManagerInfo too
20855
20856 2004-07-29  Dan Williams <dcbw@redhat.com>
20857
20858         * info-daemon/NetworkManagerInfoDbus.c
20859           src/NetworkManagerDbus.c
20860                 - Update to current DBus (ie don't use decomposed paths when registering
20861                         object paths/fallbacks)
20862
20863 2004-07-27  Dan Williams <dcbw@redhat.com>
20864
20865         * Remove various Makefile.in files
20866
20867         * TODO
20868                 - Add some more items
20869
20870         * configure.in
20871                 - Add checks for OpenSSL/md5 headers and libs
20872
20873         * src/Makefile.am
20874                 - Use OpenSSL CFLAGS
20875
20876         * src/NetworkManagerAP.[ch]
20877                 - Remove 'stamp' functions, replace with 'invalid' functions
20878                         to support user cancelling WEP key entry
20879
20880         * src/NetworkManagerDbus.c
20881                 - Remove 'stamp' return functions
20882                 - Treat returned user key as a passphrase and convert to a WEP key,
20883                         but don't actually use the WEP key yet.  We use the returned user
20884                         key as a hexadecimal WEP key until we can figure out a UI for
20885                         passphrase-vs-hex key
20886
20887         * src/NetworkManagerWireless.[ch]
20888                 - Add passphrase-to-128bit-key function
20889
20890 2004-07-27  Dan Williams <dcbw@redhat.com>
20891
20892         * TODO
20893                 - Add a couple of items
20894
20895 2004-07-27  Dan Williams <dcbw@redhat.com>
20896
20897         * info-daemon/NetworkManagerInfo.c
20898                 - Update allowed network's GConf key when user enters a WEP key explicitly
20899
20900         * info-daemon/NetworkManagerDbus.c
20901                 - Fix some comments
20902                 - nmi_dbus_get_allowed_networks(): kill warning
20903
20904 2004-07-27  Dan Williams <dcbw@redhat.com>
20905
20906         * initscript/Makefile.in
20907                 - Remove
20908
20909         * initscript/Makefile.am
20910                 - Add correct rules to install the init.d initscript
20911
20912         * info-daemon/NetworkManagerInfoDbus.c
20913                 - Remove debug fprintf
20914
20915         * src/NetworkManagerDbus.[ch]
20916                 - Remove debug fprintfs
20917                 - Add macros for NetworkManagerInfo object path/namespace
20918                 - Use said macros instead of constant strings
20919
20920 2004-07-27  Dan Williams <dcbw@redhat.com>
20921
20922         * initscript/.cvsignore
20923                 - Add
20924
20925         * info-daemon/Makefile.am
20926                 - Install .glade files and keyring.png
20927                 - Fix stupid omission of a \ that caused half the flags not to be
20928                         passed to gcc
20929
20930         * info-daemon/NetworkManagerInfo.c
20931                 - gtk_signal_connect->g_signal_connect
20932                 - Alert NetworkManagerInfo to new glade file location
20933
20934 2004-07-27  Dan Williams <dcbw@redhat.com>
20935
20936         * test/nmclienttest.c
20937           test/nminfotest.c
20938                 - Add missing <dbus/dbus.h> headers
20939                 - Add GPL message at top
20940
20941 2004-07-27  Dan Williams <dcbw@redhat.com>
20942
20943         * src/NetworkManagerAPList.[ch]
20944           src/Makefile.am
20945                 - Add.  Deal with allowed network list additions, deletions, and updates
20946
20947         * dispatcher-daemon/NetworkManagerDispatcher.c
20948                 - Add missing <dbus/dbus.h> header
20949
20950         * info-daemon/NetworkManagerInfo.[ch]
20951                 - Add missing <dbus/dbus.h> header
20952                 - Implement the GConf notify callback to signal NetworkManager of an allowed
20953                         network change
20954                 - Better error checking
20955
20956         * info-daemon/NetworkManagerInfoDbus.[ch]
20957                 - Add missing <dbus/dbus.h> header
20958                 - Convert to using dbus_message_append_args/dbus_message_get_args
20959                 - Implement nmi_dbus_signal_update_allowed_network() to signal NetworkManager
20960                         that an allowed network changed.  We don't want to signal on individual
20961                         keys _inside_ an allowed network really, just want NM to query the info
20962                         daemon for updated info on all keys.
20963                 - Better error checking
20964
20965         * src/NetworkManager.[ch]
20966                 - Add missing <dbus/dbus.h> header
20967                 - Move allowed_ap_list free functions to NetworkManagerAPList.[ch]
20968                 - Zero out NMData structure on free
20969                 - No longer use a thread for allowed_ap_list updating, instead its now done
20970                         through dbus queries against NetworkManagerInfo
20971                 - Populate allowed_ap_list initially before adding existing network devices
20972                         to the device list, so wireless devices can get their "best" AP
20973
20974         * src/NetworkManagerDbus.[ch]
20975                 - Convert to using dbus_message_append_args/dbus_message_get_args
20976                 - Better error checking
20977                 - Implement Allowed Network info functions to request allowed network
20978                         info from NetworkManagerInfo
20979                 - Implement the filter function to process signals from NetworkManagerInfo
20980                         about changing allowed networks
20981
20982         * src/NetworkManagerDevice.c
20983                 - Fix file descriptor leak in nm_device_update_ip4_address()
20984
20985 2004-07-27  Dan Williams <dcbw@redhat.com>
20986
20987         * .cvsignore
20988           src/.cvsignore
20989           test/.cvsignore
20990           dispatcher-daemon/.cvsignore
20991           info-daemon/.cvsignore
20992                 - Add .cvsignore files to reduce noise when diffing
20993
20994 2004-07-24  Dan Williams <dcbw@redhat.com>
20995
20996         * src/NetworkManager.[ch]
20997           src/NetworkManagerDbus.[ch]
20998           src/NetworkManagerDevice.[ch]
20999           src/NetworkManagerPolicy.c
21000           src/NetworkManagerWireless.[ch]
21001                 - Add many more g_return_if_fail()/g_return_val_if_fail() checks
21002                 - Pass the NMData application data structure through all calls
21003                         that need it so we can get rid of nm_get_global_data()
21004                 - Change deallocation of the allowed_ap_list GSList in preparation
21005                         for not completely clearing it every time we get an update,
21006                         but instead getting incremental updates via GConf/dbus
21007
21008 2004-07-22  Dan Williams <dcbw@redhat.com>
21009
21010         * configure.in
21011                 - Add checks for GConf libs & headers & flags
21012
21013         * info-daemon/Makefile.am
21014                 - Add GConf flags & libs to compile/link stages of NetworkManagerInfo
21015
21016         * info-daemon/NetworkManagerInfo.[ch]
21017                 - Don't use gquarks for data storage, just use normal data storage
21018                 - Add gconf bits to watch /system/networking/wireless/allowed_networks
21019
21020         * info-daemon/NetworkManagerDbus.[ch]
21021                 - Add method call for getting allowed networks
21022                 - Add method calls for getting an allowed network's essid, priority, and key
21023                 - Hook the method calls up to GConf
21024                 - Split user key dialog code into separate function (nmi_dbus_get_key_for_network)
21025                 - nmi_dbus_nmi_message_handler(): make sure to unref the reply message after sending
21026                 
21027         * src/NetworkManagerDbus.[ch]
21028                 - Switch for enumeration of networks to using essid instead
21029
21030         * test/Makefile.am
21031           test/nminfotest.c
21032                 - Add test program for NetworkManagerInfo
21033
21034 2004-07-19  Dan Williams <dcbw@redhat.com>
21035
21036         * src/NetworkManagerDbus.c
21037                 - Switch from indexed device paths to names.  Less code, more efficient.
21038                         ie "/org/freedesktop/NetworkManager/0" -> "/org/freedesktop/NetworkManager/eth0"
21039
21040 2004-07-19  Dan Williams <dcbw@redhat.com>
21041
21042         * dispatcher-daemon/NetworkManagerDispatcher.c
21043                 - (nm_dbus_filter): Remove obsolete response to NeedKeyForNetwork signal
21044
21045 2004-07-19  Dan Williams <dcbw@redhat.com>
21046
21047         * Makefile.am
21048                 - Add info-daemon directory
21049
21050         * configure.in
21051                 - Check for glade libs and headers
21052                 - Add info-daemon directory
21053
21054         * src/NetworkManagerAP.c
21055                 - nm_ap_new_from_ap(): Fix bug that resulted in an APs encryption status not getting
21056                         copied over to the new AP.
21057
21058         * src/NetworkManagerDbus.c
21059           src/NetworkManagerDbus.h
21060                 - Deal with nm_device_ap_list_get_ap()->nm_device_ap_list_get_ap_by_index() change
21061                 - Remove nm_dbus_signal_need_key_for_network()
21062                 - Add disabled code for asynchronous user wep key callbacks
21063                 - Add functions for getting, setting, and cancelling user key operations
21064                 - Remove "setKeyForNetwork" device dbus method call, its on NetworkManager object instead
21065                 - Add "setKeyForNetwork" dbus method call on NetworkManager object
21066
21067         * src/NetworkManagerDevice.c
21068           src/NetworkManagerDevice.h
21069                 - nm_device_update_link_active(): revert changes for wireless link detection, the WEP-key-is-wrong
21070                         logic is in device activation now
21071                 - nm_device_activate(): for wireless devices, if we can't associate with access point (perhaps
21072                         key is wrong) trigger get-user-key pending action
21073                 - Implement get-user-key pending action stuff, tie to dbus messages
21074                 - Rename nm_device_ap_list_get_ap() -> nm_device_ap_list_get_ap_by_index()
21075                 - Add nm_device_ap_list_get_ap_by_essid()
21076                 - Instead of copying "best" access points, ref them instead so that the key we set
21077                         sticks around
21078
21079         * src/NetworkManagerPolicy.c
21080                 - Deal with wrong WEP key, but right access point (and if so, return link_active = TRUE)
21081                 - Don't cancel pending actions on a device if its the same device as last iteration
21082                 - Only promote pending_device->active_device if activation was successfull
21083
21084         * src/Makefile.am
21085                 - Rename nmclienttest->nmtest
21086
21087         * info-daemon/Makefile.am
21088           info-daemon/NetworkManagerInfo.c
21089           info-daemon/NetworkManagerInfo.h
21090           info-daemon/NetworkManagerInfoDbus.c
21091           info-daemon/NetworkManagerInfoDbus.h
21092           info-daemon/passphrase.glade
21093           info-daemon/NetworkManagerInfo.conf
21094           info-daemon/keyring.png
21095                 - Import sources for info-daemon, which pops up dialog for passphrase/key when
21096                         NetworkManager asks for it, and also will (soon) provide "allowed" access point
21097                         lists to NetworkManager by proxying user's GConf
21098           
21099
21100 2004-07-15  Dan Williams <dcbw@redhat.com>
21101
21102         * src/Makefile.am
21103                 - Turn on warnings
21104
21105         * src/NetworkManager.c
21106                 - nm_create_device_and_add_to_list(): call nm_device_deactivate() rather
21107                         that doing the deactivation ourselves
21108                 - Cancel an pending actions on a device if its being removed
21109                 - Break up link state checking a bit, make non-active wireless cards
21110                         deactivated to save power
21111                 - Remove unused variables
21112
21113         * src/NetworkManager.h
21114                 - Add support for "pending" device
21115
21116         * src/NetworkManagerAP.h
21117           src/NetworkManagerAP.c
21118                 - Add support for determining whether and AP has encryption enabled or not
21119                 - AP address is now "struct ether_addr" rather than a string
21120
21121         * src/NetworkManagerDbus.h
21122           src/NetworkManagerDbus.c
21123                 - Add signal NeedKeyForNetwork, method SetKeyForNetwork (testing only)
21124                 - Changes for AP address from struct ether_addr->string
21125
21126         * src/NetworkManagerDevice.h
21127           src/NetworkManagerDevice.c
21128                 - Remove unused variables, fix warnings
21129                 - Add support for Pending Actions (things that block a device from being "active"
21130                         until they are completed).
21131                 - First pending action:  Get a WEP key from the user
21132                 - Add nm_device_is_wire[d|less](), rename nm_device_is_wireless()
21133                 - Clean up explicit testing of dev->iface_type to use nm_device_is_wireless()
21134                 - Update wireless link checking to try to determine if the AP we are associated
21135                         with is correct, but the WEP key we are using is just wrong.  If its wrong,
21136                         trigger the GetUserKey pending action on the device
21137                 - If dhclient can't get an IP address, it brings the device down.  Bring it back
21138                         up in that case, otherwise we can't scan or link-check on it
21139                 - Add IP address change notifications at appropriate points (still needs some work)
21140                 - Add nm_device_need_ap_switch(), checks whether we need to switch access points or not
21141
21142         * src/NetworkManagerPolicy.h
21143           src/NetworkManagerPolicy.c
21144                 - Split out "best" access point determiniation into separate function
21145                 - Make device activation 2-stage:  first the device is pending, then
21146                         in the next iteration through it becomes "active" unless it has
21147                         pending actions
21148
21149         * src/NetworkManagerUtils.h
21150           src/NetworkManagerUtils.c
21151                 - Clean up unused variables and warnings
21152                 - Wrap our debug macros in {} to prevent possible confusion
21153
21154         * src/NetworkManagerWireless.c
21155                 - Forgot to return current best priority, which lead to last available AP always
21156                         being chosen no matter what its priority was.  Corrected.
21157
21158 2004-07-15  Dan Williams <dcbw@redhat.com>
21159
21160         * dispatcher-daemon/Makefile.am
21161                 - Turn on warnings
21162
21163         * dispatcher-daemon/NetworkManagerDispatcher.c
21164                 - Remove unused variables due to warnings
21165                 - Fix some comments
21166                 - Print message on receipt of NeedKeyForNetwork signal (testing only)
21167
21168 2004-07-06  Dan Williams <dcbw@redhat.com>
21169
21170         * src/NetworkManager.c
21171                 - Add IPv4 address update for active device during link state check
21172                 - Don't allow wireless cards to be powered up when they are not the
21173                         active device
21174
21175         * src/NetworkManagerDbus.c
21176           src/NetworkManagerDbus.h
21177                 - Add DBUS IPv4 address change signal
21178                 - Add DBUS IPv4 address get method for devices
21179
21180         * src/NetworkManagerDevice.c
21181                 - Make setting the WEP key actually work
21182                 - Move IP address get/set/update stuff here, per-device
21183                 - Power down/bring down wireless device when deactivated
21184                 - For scanning wireless devices, if first scan returned ENODATA, try again
21185
21186         * src/NetworkManagerPolicy.c
21187                 - Only set the WEP key for an allowed access point if there is one.
21188                         We were setting it to be blank if one wasn't specified.
21189
21190         * src/NetworkManagerUtils.h
21191           src/NetworkManagerUtils.c
21192                 - Move the IP address stuff to NetworkManagerDevice.c
21193
21194         * dispatcher-daemon/NetworkManagerDispatcher.c
21195                 - Add device IPv4 address change notification stuff
21196
21197 2004-07-05  Dan Williams <dcbw@redhat.com>
21198
21199         * dispatcher-daemon/NetworkManagerDispatcher.c
21200                 - A bit more descriptive state message
21201                 - Don't segfault when reading directory
21202
21203         * src/NetworkManager.h
21204                 - Remove NMData desired_ap member, its now
21205                         per-device rather than global
21206
21207         * src/NetworkManager.c
21208                 - Remove references to desired_ap
21209                 - Move the allowed AP list refresh stuff into a thread
21210
21211         * src/NetworkManagerDevice.c
21212           src/NetworkManagerDevice.h
21213                 - Each wireless device now has a "best ap"
21214                 - Make device activate/deactivate functions per-device
21215                 - Make wireless scanning per-device
21216                 - Add IPv4 address discover functions, stub IPv6 ones
21217                 - Move ethernet address validation functions to NetworkManagerUtils.c
21218                 - Add wireless access point accessor function
21219                 - Get/Set functions for "best ap"
21220
21221         * src/NetworkManagerPolicy.c
21222                 - Move activate/deactivate stuff into NetworkManagerDevice.c, per-device
21223                 - Deal with per-device "best ap" rather than data->desired_apa
21224                 - Implement allowed access point worker thread
21225                 - Add nm_policy_essid_is_allowed() function
21226
21227         * src/NetworkManagerUtils.c
21228           src/NetworkManagerUtils.h
21229                 - Add nm_ethernet_address_is_valid() function
21230                 - Add IPv4/IPv6 address get functions
21231
21232         * src/NetworkManagerWireless.c
21233           src/NetworkManagerWireless.h
21234                 - Move scanning stuff into NetworkManagerDevice.c, per-device
21235
21236 2004-06-29  Dan Williams <dcbw@redhat.com>
21237
21238         * dispatcher-daemon/NetworkManagerDispatcher.c
21239                 - Implement script callout functionality
21240
21241 2004-06-24  Dan Williams <dcbw@redhat.com>
21242
21243         * NetworkManager.c
21244             - Spacing cleanups
21245             - Flush device routes and ip addresses when added to the device list
21246
21247         * NetworkManagerDbus.c
21248             - Spacing cleanups
21249             - Add missing returns in the two signal functions
21250         
21251         * NetworkManagerPolicy.c
21252             - Spacing and variable cleanups
21253
21254 2004-06-24  Dan Williams <dcbw@redhat.com>
21255
21256         * Makefile.am
21257           Makefile.in
21258           configure.in
21259           dispatcher-daemon/Makefile.am
21260           dispatcher-daemon/Makefile.in
21261           dispatcher-daemon/NetworkManagerDispatcher.c
21262             - Add a daemon that receives signals from NetworkManager
21263                         and will (eventually) call scripts in /etc/somewhere
21264                         when devices go up or down.
21265         
21266         * NetworkManager.c
21267             - Spacing cleanups
21268             - Flush device routes and ip addresses when added to the device list
21269
21270         * NetworkManagerDbus.c
21271             - Spacing cleanups
21272             - Add missing returns in the two signal functions
21273         
21274         * NetworkManagerPolicy.c
21275             - Spacing and variable cleanups
21276             - Rename nm_policy_switch_interface->nm_policy_switch_device
21277             - nm_policy_switch_device():
21278                                 Use kill (pid) instead of system ("kill <pid>")
21279             - nm_state_modification_monitor():
21280                                 Add wireless essid to output of debug statements
21281                                 Correct typo in device compare to switch or not (should be !=)
21282                                 Don't sleep after sending "no longer active" signal, was useless
21283
21284 2004-06-24  Dan Williams <dcbw@redhat.com>
21285
21286         * Initial import