2008-10-15 Dan Williams <dcbw@redhat.com>
[NetworkManager.git] / ChangeLog
1 2008-10-15  Dan Williams  <dcbw@redhat.com>
2
3         * src/nm-device-wifi.c
4                 - (wireless_qual_to_percent): fix quality calculation in a fallback case
5                         (Johannes Berg)
6
7 2008-10-15  Dan Williams  <dcbw@redhat.com>
8
9         * src/NetworkManagerSystem.c
10                 - (ip4_dest_in_same_subnet): tighter checks on subnet matching,
11                         if the ip4_dest is in a smaller subnet contained within a subnet
12                         the machine is currently on, the destination is in the same subnet
13                 - (nm_system_device_set_ip4_route): move subnet checks to callers
14                 - (add_vpn_gateway_route): check if the VPN gateway is in the same
15                         subnet as the parent device, and if so, don't add the direct
16                         host route via the parent device's gateway (bgo #481620)
17                 - (nm_system_apply_ip4_config): check whether the route to be added
18                         is contained within a subnet the device is already on
19
20 2008-10-11  Dan Williams  <dcbw@redhat.com>
21
22         * include/NetworkManager.h
23           introspection/nm-device.xml
24           include/NetworkManagerVPN.h
25                 - Add a few more state reasons for the device deactivated state
26
27         * src/nm-device-interface.c
28           src/nm-device-interface.h
29                 - (nm_device_interface_deactivate): add a 'reason' argument
30
31         * src/nm-device.c
32           src/nm-device.h
33                 - (nm_device_deactivate, nm_device_take_down): add a 'reason' argument
34                 - (nm_device_state_changed): pass the state change reason to
35                         nm_device_take_down()
36                 - (nm_device_set_managed): take a 'reason' argument, and pass it along
37                         to the state change function
38
39         * src/nm-manager.c
40           src/nm-manager.h
41                 - (remove_one_device, handle_unmanaged_devices, sync_devices,
42                    impl_manager_sleep): pass a reason code to nm_device_set_managed()
43                 - (nm_manager_deactivate_connection): add a 'reason' argument and pass
44                         something reasonable along to VPN deactivation
45
46         * src/vpn-manager/nm-vpn-manager.c
47           src/vpn-manager/nm-vpn-manager.h
48                 - (nm_vpn_manager_deactivate_connection): add a 'reason' argument and
49                         pass that along to nm_vpn_connection_disconnect()
50
51 2008-10-11  Dan Williams  <dcbw@redhat.com>
52
53         * src/nm-device-wifi.c
54                 - (can_scan): remove old madwifi hack for not scanning while connected
55
56 2008-10-11  Dan Williams  <dcbw@redhat.com>
57
58         Add support for VPN subnet gateways (bgo #549196)
59
60         * include/NetworkManager.h
61                 - Add key for internal VPN subnet gateway
62
63         * src/vpn-manager/nm-vpn-connection.c
64                 - (ip_address_to_string): return a const from a static buffer so we
65                         don't leak a lot of strings
66                 - (print_vpn_config): print internal VPN gateway as well
67                 - (nm_vpn_connection_ip4_config_get): grab internal VPN gateway from
68                         VPN service too
69                 - (nm_vpn_connection_get_ip4_internal_gateway): new function
70
71         * src/NetworkManagerSystem.c
72           src/NetworkManagerSystem.h
73                 - (nm_system_device_replace_default_ip4_route): split into two, one for
74                         VPN connections and one for normal devices
75                 - (replace_default_ip4_route): break out route stuff into its own function
76                 - (nm_system_replace_default_ip4_route_vpn,
77                    nm_system_replace_default_ip4_route): simplify by having two cases,
78                         one for VPNs and one for normal devices
79
80         * src/NetworkManagerPolicy.c
81                 - (update_routing_and_dns): simplify, use split default route replacement
82                         functions
83
84 2008-10-10  Dan Williams  <dcbw@redhat.com>
85
86         Rework default route handling to consolidate decisions in the policy,
87         and to take active VPN connections into account when changing the default
88         route (bgo #545912)
89
90         * src/NetworkManager.c
91                 - (main): pass the vpn_manager to the policy so it knows about active
92                         VPN connections; clean up the named manager which wasn't done before
93
94         * src/NetworkManagerPolicy.c
95           src/NetworkManagerPolicy.h
96                 - (nm_policy_new): get a clue about the vpn_manager
97                 - (update_default_route): remove, fold into update_routing_and_dns()
98                 - (update_routing_and_dns): handle active VPN connections too; an
99                         active VPN connection becomes the default route if it does not have
100                         server-specified or user-specified custom routes.  Otherwise, the
101                         best active device gets the default route
102                 - (vpn_connection_activated, vpn_connection_deactivated, nm_policy_new,
103                    nm_policy_destroy): track VPN connection activation and deactivation
104                         and update the default route when appropriate
105
106         * src/NetworkManagerSystem.c
107           src/NetworkManagerSystem.h
108                 - (nm_system_vpn_device_unset_from_ip4_config): remove, put functionality
109                         in the VPN connection itself
110                 - (nm_system_vpn_device_set_from_ip4_config,
111                    nm_system_device_set_from_ip4_config): merge together to make
112                         nm_system_apply_ip4_config()
113                 - (add_vpn_gateway_route): add a route to the VPN's external gateway
114                         via the parent device
115                 - (nm_system_apply_ip4_config): simplify
116                 - (add_ip4_route_to_gateway): new function; add a direct route to the
117                         gateway if needed
118                 - (nm_system_device_replace_default_ip4_route): simplify, break gateway
119                         route stuff out into add_ip4_route_to_gateway() for clarity
120
121         * src/nm-device.c
122                 - (nm_device_set_ip4_config): update for nm_system_apply_ip4_config()
123
124         * src/vpn-manager/nm-vpn-connection.c
125           src/vpn-manager/nm-vpn-connection.h
126                 - (nm_vpn_connection_get_ip4_config, nm_vpn_connection_get_ip_iface,
127                    nm_vpn_connection_get_parent_device): add
128                 - (nm_vpn_connection_ip4_config_get): make the requirement of a tunnel
129                         device explicit
130                 - (connection_state_changed): update the named manager now that
131                         nm_system_vpn_device_unset_from_ip4_config() is gone; do something
132                         useful on errors
133
134         * src/vpn-manager/nm-vpn-manager.c
135           src/vpn-manager/nm-vpn-manager.h
136                 - Add a 'connection-activated' signal
137                 - (nm_vpn_manager_get_active_connections): new function; mainly for the
138                         policy to find out about active VPN connections
139
140 2008-10-10  Tambet Ingo  <tambet@gmail.com>
141
142         * src/nm-logging.c (nm_logging_setup): Don't use LOG_CONS when running as
143         a daemon to prevent NM logging spew on console on startup and shutdown (due
144         to dependency loop between NM and syslog).
145
146 2008-10-10  Alexander Sack  <asac@ubuntu.com>
147
148         Implement managed mode. We bind devices configured in /etc/network/interfaces
149         to their connections by updating wired/wireless setting with the
150         mac address of the device.
151
152         * system-settings/plugins/ifupdown/plugin.c
153                 - (get_net_address_for_udi): implement function to retrieve MAC
154                         address of udi from hal in GByteArray format
155                 - (bind_device_to_connection): bind mac address of device to
156                         wired/wireless system connection
157                 - (hal_device_added_cb): call bind_device_to_connection for
158                         system connections with a matching interface.name
159                 - (hal_device_added_cb): ensure that all code paths
160                         properly free the "iface" string.
161
162 2008-10-10  Alexander Sack  <asac@ubuntu.com>
163
164         Parse nm-system-settings.conf and allow admins to either use managed and unmanaged
165         mode of the ifupdown system config plugin.
166
167         * system-settings/plugins/ifupdown/plugin.c
168                 - (SCPluginIfupdown_init): parse nm-system-settings.conf keyfile and set
169                         private unmanage_well_known state field accordingly
170
171 2008-10-10  Alexander Sack  <asac@ubuntu.com>
172
173         Implement unmanaged mode that will prevent all devices in the
174         well_known_udis set from being touched by NetworkManager
175
176         * system-settings/plugins/ifupdown/plugin.c
177                 - (typedef struct SCPluginIfupdownPrivate): add gboolean
178                         unmanage_well_known field used to turn on/off unmanaged
179                         mode
180                 - (hal_device_added_cb,hal_device_remove_cb): emit |unmanaged-devices-changed|
181                         signal when well_known_udis get added/removed
182                 - (SCPluginIfupdown_get_unmanaged_devices): return all well_known_udis
183                         if we are in unmanaged mode
184
185 2008-10-10  Alexander Sack  <asac@ubuntu.com>
186
187         Add support to track network devices that have a configuration
188         with a matching interface.name in /etc/network/interfaces
189
190         * system-settings/plugins/ifupdown/plugin.c
191                 - (typedef struct SCPluginIfupdownPrivate): add hash table
192                         to track |well_known_udis|
193                 - (get_iface_for_udi): helper function to get interface.name
194                         for a udi
195                 - (hal_device_added_cb, hal_device_removed_cb): callbacks
196                         that add and remove devices to and from the well_known_udis
197                         set depending on whether their |interface.name| matches
198                         any interface definition in /etc/network/interfaces
199                 - (SCPluginIfupdown_init): connect callbacks from above with
200                         hal_mgr and setup well_known_udis hashtable
201                 - (GObject__dispose): destroy well_known_udis hashtable
202                 - (hal_device_added_cb2): implement wrapper callback with GFunc
203                         signature. user_data is supposed to be a triple (hal_mgr,
204                         config and devtype)
205                 - (SCPluginIfupdown_init): bootstrap wired and wifi devices for
206                         startup and call hal_device_added_cb2
207
208 2008-10-10  Alexander Sack  <asac@ubuntu.com>
209
210         Remove implementation for not used NMSystemConfigInterface callback functions
211         in ifupdown plugin
212
213         * system-settings/plugins/ifupdown/plugin.c
214                 - (SCPluginIfupdown_unmanaged_devices_changed): removed
215                 - (SCPluginIfupdown_connection_added): removed
216
217 2008-10-08  Dan Williams  <dcbw@redhat.com>
218
219         Add a 'hostname' dispatcher action triggered on hostname changes (bgo #552983)
220
221         * src/NetworkManagerUtils.c
222                 - (nm_utils_call_dispatcher): add a 'hostname' action
223
224         * src/NetworkManagerPolicy.c
225                 - (set_system_hostname): dispatch hostname changes
226
227         * callouts/nm-dispatcher-action.c
228                 - (nm_dispatcher_action): handle 'hostname' actions
229
230 2008-10-08  Dan Williams  <dcbw@redhat.com>
231
232         * src/NetworkManagerSystem.c
233                 - (find_route): ref the route so it doesn't get destroyed when the cache
234                         is cleared
235                 - (nm_system_device_set_priority): unref the route here after it's done
236                         being used
237
238 2008-10-08  Dan Williams  <dcbw@redhat.com>
239
240         * src/nm-serial-device.c
241                 - Turn on serial debugging when NM_SERIAL_DEBUG is set in the environment
242
243 2008-10-08  Tambet Ingo  <tambet@gmail.com>
244
245         * system-settings/plugins/keyfile/nm-keyfile-connection.c (update): Update the
246         connection with new settings before saving it.
247
248 2008-10-06  Dan Williams  <dcbw@redhat.com>
249
250         * src/nm-ip4-config.c
251           src/nm-ip4-config.h
252                 - nm_ip4_config_is_exported -> nm_ip4_config_get_dbus_path
253
254         * src/nm-device-interface.c
255                 - (nm_device_interface_init): make 'ip4-config' a boxed property of type
256                         DBUS_TYPE_G_OBJECT_PATH so that we can make it NULL when we need to
257                         by using '/' for the object path
258
259         * src/nm-device.c
260                 - (src/nm-device.c): marshal missing/unexported ip4-config through
261                         dbus as '/' since dbus-glib can't handle NULL objects nor can
262                         dbus handle NULL object paths
263
264 2008-10-03  Alexander Sack  <asac@ubuntu.com>
265
266         Implement system hostname support for debian/ubuntu
267
268         * system-settings/plugins/ifupdown/plugin.c
269                 - (GObject__get_property): extend announced capabilities; add
270                         NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_HOSTNAME support
271                 - (GObject__set_property,write_system_hostname): implement
272                         NM_SYSTEM_CONFIG_INTERFACE_CAP_MODIFY_HOSTNAME capability.
273                 - (GObject__set_property, GObject__get_property, SCPluginIfupdown_init,
274                    update_system_hostname, get_hostname):
275                         implement hostname property that watches and
276                         parses /etc/hostname
277
278 2008-10-03  Alexander Sack  <asac@ubuntu.com>
279
280         * system-settings/plugins/ifcfg-fedora/nm-inotify-helper.c
281           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.h
282           system-settings/plugins/ifcfg-fedora/Makefile.am
283           system-settings/src/nm-inotify-helper.c
284           system-settings/src/nm-inotify-helper.h
285           src/Makefile.am
286                 - Move ifcfg-fedora inotify helpers to the system settings service so
287                         they are available to all plugins
288
289 2008-10-03  Alexander Sack  <asac@ubuntu.com>
290
291         Implement support for wep-tx-keyidx in ifupdown system
292         config plugin.
293
294         * system-settings/plugins/ifupdown/parser.c
295                 - (update_wireless_security_setting_from_if_block): introduce
296                         free_type_mapping func table; rename a few local
297                         variables to improve readability; add wpa security mapping
298                         for wep-tx-keyidx property
299                 - (string_to_gpointerint): new function used for the auto_type_mapping
300                         of new wep-tx-keyidx property
301                 - (slist_free_all): free func used for mapped slist types
302
303 2008-10-03  Alexander Sack  <asac@ubuntu.com>
304
305         * system-settings/src/main.c:
306                 - (add_default_dhcp_connection, device_removed_cb): ensure the UDI is
307                         always used as the hash key; fixes a crash when removing wired
308                         devices
309
310 2008-10-02  Dan Williams  <dcbw@redhat.com>
311
312         * src/nm-gsm-device.c
313                 - (enter_pin_done, enter_pin, check_pin_done, real_act_stage1_prepare):
314                         pass the required GSM secret along via user_data rather than keeping
315                         it around in the private data where it sometimes didn't get cleared
316                 - (real_get_ppp_name): implement using the GSM username
317
318 2008-10-02  Dan Williams  <dcbw@redhat.com>
319
320         * src/ppp-manager/nm-ppp-manager.c
321           src/ppp-manager/nm-ppp-manager.h
322                 - (impl_ppp_manager_need_secrets): tries secrets twice before asking
323                         the settings daemon for completely new ones
324                 - (create_pppd_cmd_line): new parameter 'ppp_name' used to set the
325                         local PPP peer name; allow PPP debuging by launching NM with
326                         the environment variable NM_PPP_DEBUG defined
327                 - (nm_ppp_manager_start): new parameter 'ppp_name' passed to
328                         create_pppd_cmd_line()
329
330         * src/nm-serial-device.c
331           src/nm-serial-device.h
332                 - New 'get_ppp_name' function for subclasses to implement to return the
333                         local PPP peer name
334                 - (real_act_stage2_config): call 'get_ppp_name' function of subclasses
335                         and pass that name to the PPP manager
336
337         * src/nm-device-ethernet.c
338                 - (pppoe_stage2_config): pass the PPPoE username to the PPP manager as
339                         the local peer name
340
341         * src/nm-cdma-device.c
342                 - (real_get_ppp_name): implement using the CDMA username
343
344 2008-10-02  Dan Williams  <dcbw@redhat.com>
345
346         Patch from Alexander Sack <asac ubuntu com>
347
348         * system-settings/plugins/ifupdown/parser.c
349                 - Implement more graceful ip4 config parsing for cases where
350                   /etc/network/interfaces omits basic ip4 settings, such as gateway etc
351                   by using default values
352
353 2008-10-02  Dan Williams  <dcbw@redhat.com>
354
355         * src/NetworkManagerPolicy.c
356                 - (device_state_changed): when marking a connection invalid, clear its
357                         secrets too so that fresh secrets get requested the next time
358
359 2008-10-01  Dan Williams  <dcbw@redhat.com>
360
361         * system-settings/src/dbus-settings.c
362                 - (nm_sysconfig_settings_init): cache system hostname on startup as
363                         a fallback if no plugin provides a hostname
364                 - (get_property): fall back to cached hostname if no plugin provides
365                         a hostname
366
367 2008-10-01  Dan Williams  <dcbw@redhat.com>
368
369         Fix setting value comparison issue that caused some settings to look the
370         same when they were really different (rh #464417)
371
372         * libnm-util/nm-param-spec-specialized.c
373                 - (type_is_fixed_size): return fundamental size of the fixed type too
374                 - (nm_gvalues_compare_collection): use the fundamental fixed type size
375                         in the comparison so that the _entire_ fixed type collection gets
376                         compared rather than just the first 'len1' bytes
377
378 2008-09-30  Dan Williams  <dcbw@redhat.com>
379
380         * src/NetworkManagerPolicy.c
381                 - (lookup_thread_worker): don't store the idle handler ID becuase the
382                         idle handler could have already run and freed the LookupThread
383                         structure
384
385 2008-09-30  Tambet Ingo  <tambet@gmail.com>
386
387         * src/nm-device.c (nm_device_get_priority): Implement.
388         (nm_device_set_ip4_config): Send the device priority to system ip4 
389         config setter.
390
391         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config):
392         Add priority argument and if it's >= 0, set the priority of the network
393         route added automatically by netlink (or kernel?).
394         (nm_system_device_set_priority): Implement.
395
396         * src/NetworkManagerPolicy.c (get_best_device): Use 
397         nm_device_get_priority() instead of home-grown version. Revert the
398         meaning, best priority is the lowest one.
399
400 2008-09-29  Dan Williams  <dcbw@redhat.com>
401
402         Handle ipw3945 suspend/resume by retrying the GIWRANGE request a few times
403         when it returns EAGAIN (rh #362421)
404
405         * src/nm-device-wifi.c
406                 - (wireless_get_range): try GIWRANGE a few times until the card responds
407                 - (real_get_generic_capabilities, constructor): use wireless_get_range()
408
409 2008-09-28  Dan Williams  <dcbw@redhat.com>
410
411         * src/nm-serial-device.c
412           src/nm-serial-device.h
413                 - (nm_serial_device_close): stop PPP manager here so that PPP gets
414                         cleaned at the right times when subclasses close the serial port too
415                 - (nm_serial_device_send_command): use a default send delay; don't
416                         spin forever on EAGAIN
417                 - (get_reply_done, get_reply_got_data, nm_serial_device_get_reply):
418                         remove, no longer used
419                 - (find_response): return the matched response if any
420                 - (nm_serial_device_wait_reply_blocking): wait for a reply but block
421                         while doing so
422                 - (wait_for_reply_done): pass the matched response to the callback
423                 - (wait_for_reply_got_data): save the matched response; simplify timeout
424                         handling
425                 - (nm_serial_device_wait_for_reply): make 'responses' and 'terminators'
426                         const since they never get modified
427                 - (cleanup_device): split out common cleanup stuff to a new function
428                 - (real_deactivate_quickly, finalize): use cleanup_device()
429
430         * src/nm-gsm-device.c
431                 - (modem_get_reply): remove, unused
432                 - (set_apn): give the card a bit more time to respond
433                 - (manual_registration_again, schedule_manual_registration_again,
434                    manual_registration_response, manual_registration): handle manual
435                         registration timeouts better by retrying registration a few times
436                         because cards are a bit slow after CFUN=1
437                 - (automatic_registration_get_network, get_network_response): use
438                         modem_wait_for_reply() because it interacts better with the serial
439                         buffer and does more intelligent matching; need to wait for 'OK'
440                         rather than just matching terminators
441                 - (schedule_automatic_registration_again,
442                    automatic_registration_response, automatic_registration): retry
443                         registration a few times on timeout or "searching" because cards
444                         take a bit to find a network after being powered up with CFUN=1
445                 - (power_up_response, power_up, init_full_done, enter_pin,
446                    check_pin_done): power up the card with CFUN=1 before trying to
447                         register with the network
448                 - (init_modem_full, init_modem): use more standard 3G init strings
449
450         * src/nm-hso-gsm-device.c
451                 - (modem_get_reply): remove, unused
452                 - (hso_ip4_config_response, real_act_stage3_ip_config_start): use
453                         modem_wait_for_reply() to match actual responses instead of single
454                         termination characters; it doesn't leave stuff in the serial buffer
455                         that might confuse later calls
456                 - (real_deactivate_quickly): use nm_serial_device_wait_reply_blocking()
457                         to ensure that the call is really disconnected and not leave extra
458                         stuff in the serial buffer
459
460         * src/nm-cdma-device.c
461                 - (power_up_response, power_up, init_done): try Sierra-style modem
462                         power up before attempting to connect
463
464 2008-09-27  Dan Williams  <dcbw@redhat.com>
465
466         * libnm-util/nm-setting-gsm.c
467                 - (verify): verify GSM network ID
468
469 2008-09-25  Dan Williams  <dcbw@redhat.com>
470
471         * libnm-util/nm-setting-gsm.c
472           libnm-util/nm-setting-gsm.h
473                 - Fix up NM_GSM_NETWORK_* constants to accurately reflect the network
474                         technology terms (bgo #551361)
475
476 2008-09-25  Dan Williams  <dcbw@redhat.com>
477
478         Fix bgo #549401 (inspired by patch from Alexander Sack)
479
480         * src/nm-device-ethernet.c
481                 - (finish_supplicant_task): clean up scheduled tasks and free memory
482                 - (remove_supplicant_interface_error_handler): remove the supplicant
483                         error idle callback too
484                 - (supplicant_interface_release): rename from supplicant_interface_clean
485                         to match nm-device-wifi.c; clean up supplicant interface-related
486                         state tasks when the supplicant interface is disposed of
487                 - (schedule_state_handler): add scheduled tasks to a list so they can
488                         be cleaned up later
489                 - (supplicant_mgr_state_cb_handler, supplicant_iface_state_cb_handler,
490                    supplicant_iface_connection_state_cb_handler): use
491                         finish_supplicant_task() to clean up each completed task
492                 - (supplicant_iface_connection_error_cb_handler,
493                    supplicant_connection_timeout_cb): clear source id when the task is
494                         complete
495                 - (supplicant_iface_connection_error_cb): save scheduled task id for
496                         later cleanup
497                 - (nm_device_ethernet_dispose): clean up any pending supplicant state
498                         tasks
499
500         * src/nm-device-wifi.c
501                 - (finish_supplicant_task): clean up scheduled tasks and free memory
502                 - (remove_supplicant_interface_error_handler): remove the supplicant
503                         error idle callback too
504                 - (supplicant_interface_release): clean up supplicant interface-related
505                         state tasks when the supplicant interface is disposed of
506                 - (schedule_state_handler): add scheduled tasks to a list so they can
507                         be cleaned up later
508                 - (supplicant_mgr_state_cb_handler, supplicant_iface_state_cb_handler,
509                    supplicant_iface_connection_state_cb_handler): use
510                         finish_supplicant_task() to clean up each completed task
511                 - (supplicant_iface_connection_error_cb_handler): clear source id when
512                         the task is complete
513                 - (supplicant_iface_connection_error_cb): save scheduled task id for
514                         later cleanup
515                 - (nm_device_wifi_dispose): clean up any pending supplicant state tasks
516
517 2008-09-24  Tambet Ingo  <tambet@gmail.com>
518
519         * system-settings/plugins/keyfile/plugin.c: Implement unmanaged_devices
520         method and get/set hostname property.
521
522 2008-09-24  Tambet Ingo  <tambet@gmail.com>
523
524         * src/supplicant-manager/nm-supplicant-interface.c
525         (nm_supplicant_interface_disconnect): Don't increment the reference 
526         count when disconnecting. The problem is on shutdown, when the replies
527         to these commands do not arrive before NM exits, resulting on never
528         calling supplicant interface's dispose(), which removes the interface
529         from supplicant.
530
531 2008-09-24  Tambet Ingo  <tambet@gmail.com>
532
533         * libnm-glib/nm-vpn-plugin-ui-interface.c: Add type checking to
534         all the public function arguments.
535
536 2008-09-22  Tambet Ingo  <tambet@gmail.com>
537
538         * src/vpn-manager/nm-vpn-connection.c: Add a signal handler for the
539         "Failure" signal from VPN plugins, store the failure reason, and
540         use it when the state is changed to failure.
541
542         * introspection/nm-vpn-plugin.xml: Fix the "Failure" signal's type
543         description.
544
545         * include/NetworkManagerVPN.h (NMVPNConnectionStateReason): Add a new
546         reason to the end of the list to not break the API.
547         (NMVPNPluginFailure): Move it here (from libnm-glib/nm-vpn-plugin.h)
548         so it can be shared by plugins and daemon.
549
550 2008-09-18  Dan Williams  <dcbw@redhat.com>
551
552         Patch from Alexander Sack <asac@ubuntu.com>
553
554         * configure.in
555           system-settings/plugins/Makefile.am
556           system-settings/plugins/ifupdown/Makefile.am
557           system-settings/plugins/ifupdown/interface_parser.c
558           system-settings/plugins/ifupdown/interface_parser.h
559           system-settings/plugins/ifupdown/nm-ifupdown-connection.c
560           system-settings/plugins/ifupdown/nm-ifupdown-connection.h
561           system-settings/plugins/ifupdown/parser.c
562           system-settings/plugins/ifupdown/parser.h
563           system-settings/plugins/ifupdown/plugin.c
564           system-settings/plugins/ifupdown/plugin.h
565                 - Implement a Debian/Ubuntu legacy network configuration plugin
566                         (gnome.org #551941)
567
568 2008-09-18  Dan Williams  <dcbw@redhat.com>
569
570         Implement support for honoring configured and automatic hostnames, and for
571         setting the configured hostname.
572
573         * introspection/nm-ip4-config.xml
574           src/nm-ip4-config.c
575           src/nm-ip4-config.h
576           src/dhcp-manager/nm-dhcp-manager.c
577                 - Remove useless hostname property; it's not really part of the IPv4
578                         config
579
580         * introspection/nm-settings-system.xml
581           libnm-glib/nm-dbus-settings-system.c
582           libnm-glib/nm-dbus-settings-system.h
583                 - Add SetHostname() call to system settings D-Bus interface
584                 - Add Hostname property to system settings D-Bus interface
585                 - (nm_dbus_settings_system_save_hostname,
586                    nm_dbus_settings_system_get_hostname): implement
587
588         * src/nm-device.c
589           src/nm-device.h
590                 - (nm_device_get_dhcp4_config): implement
591
592         * src/nm-manager.c
593           src/nm-manager.h
594                 - Fetch and track system settings service hostname changes, and proxy
595                         the changes via a GObject property of the manager
596
597         * system-settings/src/nm-system-config-interface.c
598           system-settings/src/nm-system-config-interface.h
599                 - Replace nm_system_config_interface_supports_add() with a capabilities
600                         bitfield
601
602         * system-settings/src/nm-system-config-error.c
603           system-settings/src/nm-system-config-error.h
604                 - Add additional errors
605
606         * system-settings/src/dbus-settings.c
607           system-settings/src/dbus-settings.h
608                 - (get_property, nm_sysconfig_settings_class_init): add hostname
609                         property; first plugin returning a hostname wins
610                 - (impl_settings_add_connection): use plugin capabilities instead of
611                         nm_system_config_interface_supports_add()
612                 - (impl_settings_save_hostname): implement hostname saving
613
614         * src/NetworkManagerPolicy.c
615                 - (lookup_thread_run_cb, lookup_thread_worker, lookup_thread_new,
616                    lookup_thread_die): implement an asynchronous hostname lookup thread
617                         which given an IPv4 address tries to look up the hostname for that
618                         address with reverse DNS
619                 - (get_best_device): split out best device code from
620                         update_routing_and_dns()
621                 - (update_etc_hosts): update /etc/hosts with the machine's new hostname
622                         to preserve the 127.0.0.1 reverse mapping that so many things require
623                 - (set_system_hostname): set a given hostname
624                 - (update_system_hostname): implement hostname policy; a configured
625                         hostname (from the system settings service) is used if available,
626                         otherwise an automatically determined hostname from DHCP, VPN, etc.
627                         If there was no automatically determined hostname, reverse DNS of
628                         the best device's IP address will be used, and as a last resort the
629                         hostname 'localhost.localdomain' is set.
630                 - (update_routing_and_dns): use get_best_device(); update the system
631                         hostname when the network config changes
632                 - (hostname_changed): update system hostname if the system settings
633                         service signals a hostname change
634                 - (nm_policy_new): list for system settings service hostname changes
635                 - (nm_policy_destroy): ensure that an in-progress hostname lookup thread
636                         gets told to die
637
638         * system-settings/plugins/keyfile/plugin.c
639           system-settings/plugins/ifcfg-suse/plugin.c
640                 - (get_property, sc_plugin_ifcfg_class_init): implement hostname and
641                         capabilities properties
642
643         * system-settings/plugins/ifcfg-fedora/shvar.c
644                 - (svOpenFile): re-enable R/W access of ifcfg files since the plugin
645                         writes out /etc/sysconfig/network now
646
647         * system-settings/plugins/ifcfg-fedora/plugin.c
648                 - (plugin_get_hostname): get hostname from /etc/sysconfig/network
649                 - (plugin_set_hostname): save hostname to /etc/sysconfig/network
650                 - (sc_network_changed_cb): handle changes to /etc/sysconfig/network
651                 - (sc_plugin_ifcfg_init): monitor /etc/sysconfig/network for changes
652                 - (get_property, set_property, sc_plugin_ifcfg_class_init): implement
653                         hostname get/set and capabilities get
654
655 2008-09-18  Dan Williams  <dcbw@redhat.com>
656
657         * libnm-util/nm-setting-wireless.c
658                 - (nm_setting_wireless_ap_security_compatible): only verify pairwise and
659                         group ciphers if the wireless-security setting explicitly specified
660                         them, effectively making the default be "all ciphers"  (idea from
661                         Alexander Sack)
662
663 2008-09-15  Dan Williams  <dcbw@redhat.com>
664
665         Patch from Alexander Sack <asac@ubuntu.com>
666
667         * src/named-manager/nm-named-manager.c
668                 - (dispatch_resolvconf): respect resolvconf exit code
669
670 2008-09-12  Tambet Ingo  <tambet@gmail.com>
671
672         * src/named-manager/nm-named-manager.c (dispatch_netconfig): Make it compile
673         again. Add some debugging.
674
675 2008-09-11  Dan Williams  <dcbw@redhat.com>
676
677         * system-settings/plugins/keyfile/plugin.c
678                 - (update_connection_settings): update connection manually, since
679                         nm_exported_connection_update() does authentication
680                 - (dir_changed): update_connection_settings() doesn't need to return
681                         an error
682
683 2008-09-09  Dan Williams  <dcbw@redhat.com>
684
685         * libnm-glib/nm-vpn-plugin-ui-interface.c
686           libnm-glib/nm-vpn-plugin-ui-interface.h
687           libnm-glib/libnm_glib_vpn.ver
688                 - (nm_vpn_plugin_ui_interface_delete_connection): called when the plugin
689                         should clean up resources related to the connection (like keyring
690                         secrets)
691                 - (nm_vpn_plugin_ui_widget_interface_save_secrets): called when the plugin
692                         should save user-scope secrets (like to the keyring)
693
694 2008-09-08  Dan Williams  <dcbw@redhat.com>
695
696         Patch from Alexander Sack <asac@ubuntu.com>
697
698         * libnm-util/crypto_gnutls.c
699           libnm-util/crypto_nss.c
700                 - (crypto_init, crypto_deinit): just use a boolean instead of a refcount
701
702         * libnm-util/nm-utils.c
703           libnm-util/nm-utils.h
704           libnm-util/libnm-util.ver
705                 - (nm_utils_init): initialize libnm-util
706                 - (nm_utils_deinit): de-initialize libnm-util and clean up resources
707
708         * libnm-util/nm-setting-8021x.c
709                 - (nm_setting_802_1x_class_init): init libnm-util when needed
710
711 2008-09-05  Dan Williams  <dcbw@redhat.com>
712
713         Patch from Roy Marples <roy@marples.name> and others
714
715         * configure.in
716           src/named-manager/nm-named-manager.c
717                 - Add support for resolvconf; use --with-resolvconf at configure time
718                         to enable it
719
720 2008-09-05  Dan Williams  <dcbw@redhat.com>
721
722         * libnm-util/crypto_nss.c
723           libnm-util/crypto_gnutls.c
724           libnm-util/crypto.h
725                 - (crypto_init): return error when init fails
726
727 2008-09-05  Dan Williams  <dcbw@redhat.com>
728
729         * libnm-glib/nm-device-wifi.c
730                 - (access_point_removed_proxy): clean up the active access point too
731                         just in case the active ap changed signal didn't come through yet
732                 - (clean_up_aps): be sure to set priv->active_ap to NULL when cleaning up
733
734 2008-09-05  Dan Williams  <dcbw@redhat.com>
735
736         * libnm-glib/nm-client.c
737                 - (constructor): get initial state after we know whether NM is running
738                         or not
739
740 2008-09-05  Dan Williams  <dcbw@redhat.com>
741
742         * libnm-glib/nm-ip4-config.c
743           libnm-glib/nm-dhcp4-config.c
744                 - (finalize): clean up the DBusGProxy
745
746 2008-09-04  Dan Williams  <dcbw@redhat.com>
747
748         * src/nm-ip4-config.c
749           src/nm-ip4-config.h
750                 - (nm_ip4_config_new): don't export over D-Bus here
751                 - (nm_ip4_config_export): new function; export the config over D-Bus
752                 - (nm_ip4_config_is_exported): new function
753
754         * src/nm-device.c
755                 - (nm_device_activate_stage5_ip_config_commit): fix leak of IP4Config
756                         objects by balancing the IP4Config constructor; the device holds
757                         a reference to the IP4Config already
758                 - (nm_device_set_ip4_config): export the IP4Config when needed
759
760 2008-09-04  Dan Williams  <dcbw@redhat.com>
761
762         * src/supplicant-manager/nm-supplicant-settings-verify.c
763                 - Allow WPA-NONE key management for Ad-Hoc WPA connections
764
765 2008-09-04  Dan Williams  <dcbw@redhat.com>
766
767         * libnm-util/nm-setting-vpn.c
768           libnm-util/nm-setting-vpn.h
769                 - Split VPN secrets from VPN data so that settings services can actually
770                         figure out that they are secrets and store them accordingly
771
772         * system-settings/plugins/keyfile/nm-keyfile-connection.c
773           system-settings/plugins/keyfile/reader.c
774           system-settings/plugins/keyfile/reader.h
775           system-settings/plugins/keyfile/writer.c
776                 - Store VPN secrets separately from VPN data so that they can be fetched
777                         on demand
778                 - Implement the get_secrets() call so that (a) secrets don't leak out
779                         to unprivileged callers, and (b) secrets can be sent to privileged
780                         callers when needed
781
782         * vpn-daemons/vpnc/src/nm-vpnc-service.c
783                 - Handle split VPN secrets
784
785 2008-08-27  Dan Williams  <dcbw@redhat.com>
786
787         * system-settings/plugins/ifcfg-fedora/reader.c
788                 - (make_ip4_setting): use DOMAIN not SEARCH (rh #459370)
789
790 2008-08-27  Dan Williams  <dcbw@redhat.com>
791
792         Ensure zombie children get cleaned up.  To get notifications when children
793         die abnormally, g_spawn_async() requires G_SPAWN_DO_NOT_REAP_CHILD, but
794         that requires calling waitpid() yourself if you've removed the child watch
795         handler before the process has actually died, which NM needs to do in a few
796         places.  So ensure that everything uses G_SPAWN_DO_NOT_REAP_CHILD and also
797         cleans up after the child when required.  Should fix problems trying to
798         activate mobile broadband connections after a previous failure.
799
800         * src/dhcp-manager/nm-dhcp-dhclient.c
801           src/dhcp-manager/nm-dhcp-dhcpcd.c
802                 - Use G_SPAWN_DO_NOT_REAP_CHILD
803
804         * src/dhcp-manager/nm-dhcp-manager.c
805                 - (nm_dhcp_device_destroy): ensure child is cleaned up
806                 - (nm_dhcp_client_stop, nm_dhcp_manager_cancel_transaction_real): always
807                         block on child quitting, since the non-blocking functionality was
808                         never actually used
809
810         * src/dnsmasq-manager/nm-dnsmasq-manager.c
811                 - (dm_watch_cb): child is already reaped here
812                 - (ensure_killed, nm_dnsmasq_manager_stop): block until child is dead
813
814         * src/nm-device.c
815                 - (aipd_cleanup): block until child is dead
816
817         * src/named-manager/nm-named-manager.c
818                 - (run_netconfig): don't use G_SPAWN_DO_NOT_REAP_CHILD if we aren't
819                         event bothering to watch the child
820
821         * src/ppp-manager/nm-ppp-manager.c
822                 - (ppp_watch_cb): child is already reaped here
823                 - (ensure_killed, nm_ppp_manager_stop): block until child is dead
824
825         * src/vpn-manager/nm-vpn-service.c
826                 - (vpn_service_watch_cb): child is already reaped here
827                 - (nm_vpn_service_daemon_exec): use G_SPAWN_DO_NOT_REAP_CHILD so that
828                         status of the child is actually tracked
829                 - (ensure_killed, finalize): block until child is dead
830
831 2008-08-26  Dan Williams  <dcbw@redhat.com>
832
833         * system-settings/plugins/keyfile/nm-keyfile-connection.c
834                 - (update): Update filename of the connection if the connection id
835                         was changed
836
837         * system-settings/plugins/keyfile/plugin.c
838                 - (dir_changed): first pass at handling connection renames correctly
839
840         * system-settings/plugins/keyfile/writer.c
841           system-settings/plugins/keyfile/writer.h
842                 - (write_connection): replace '/' with '*' when writing out the filename
843                         from the connection id
844
845 2008-08-26  Dan Williams  <dcbw@redhat.com>
846
847         Add connection UUIDs, since connection names can be changed, and since
848         old-style connection IDs could change over the life of the connection.  The
849         UUID should be assigned at connection creation time, be stable for a given
850         connection, and should be unique among all connections for a given settings
851         service.
852
853         * configure.in
854           libnm-util/Makefile.am
855                 - Require libuuid
856
857         * introspection/nm-exported-connection.xml
858                 - Remove "GetID" method
859
860         * libnm-glib/nm-dbus-connection.c
861           libnm-glib/nm-settings.c
862           libnm-glib/nm-settings.h
863                 - Remove id-related stuff
864
865         * libnm-util/nm-utils.c
866           libnm-util/nm-utils.h
867           libnm-util/libnm-util.ver
868                 - (nm_utils_uuid_generate, nm_utils_uuid_generate_from_string): Add
869                         utility functions to generate UUIDs
870
871         * libnm-util/nm-setting-connection.c
872           libnm-util/nm-setting-connection.h
873                 - Add 'uuid' member to the connection setting
874                 - (verify): require valid 'uuid' for a valid connection
875
876         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
877           system-settings/plugins/ifcfg-fedora/reader.c
878           system-settings/plugins/ifcfg-suse/nm-suse-connection.c
879           system-settings/plugins/ifcfg-suse/parser.c
880           system-settings/plugins/keyfile/nm-keyfile-connection.c
881           system-settings/src/main.c
882                 - Remove id-related stuff
883                 - Give connections UUIDs where needed
884
885 2008-08-25  Dan Williams  <dcbw@redhat.com>
886
887         * libnm-util/crypto_gnutls.c
888           libnm-util/crypto_nss.c
889                 - (crypto_init, crypto_deinit): refcount init/deinit
890                 - (crypto_md5_hash): allow NULL salt
891
892 2008-08-22  Michael Biebl  <mbiebl@gmail.com>
893
894         * libnm-glib/Makefile.am
895           libnm-util/Makefile.am
896           libnm-glib/libnm_glib.ver
897           libnm-glib/libnm_glib_vpn.ver
898           libnm-util/libnm-util.ver
899                 - Use linker version scripts to control the list of exported 
900                 symbols. List each exported symbol explicitely.
901         * libnm-util/Makefile.am
902                 - Fix compilation of the test-crypto binary. The crypto
903                 functions are no longer part of the libnm-util API. Add 
904                 crypto_*.c to test_crypto_SOURCES and link against the correct
905                 crypto libraries.
906
907 2008-08-19  Dan Williams  <dcbw@redhat.com>
908
909         * configure.in
910           test/Makefile.am
911                 - Don't build test/test-common
912                 - Remove unused stuff
913
914         * test/nm-set-fallback
915           test/nmtestdevices.c
916           test/test-common/.cvsignore
917           test/test-common/Makefile.am
918           test/test-common/test-common.c
919           test/test-common/test-common.h
920                 - delete
921
922 2008-08-18  Dan Williams  <dcbw@redhat.com>
923
924         * libnm-util/nm-utils.c
925           libnm-util/nm-utils.h
926                 - (nm_utils_garray_to_string): remove; NM was the only user and doesn't
927                         export anything that needs to be converted with this function
928
929         * src/dhcp-manager/nm-dhcp-manager.c
930                 - (garray_to_string): convert a byte array to a UTF-8 string with
931                         minimal validation; the DHCP client sends it in ASCII anyway
932                 - (get_option, copy_option): use garray_to_string()
933
934 2008-08-18  Dan Williams  <dcbw@redhat.com>
935
936         * include/NetworkManager.h
937           introspection/nm-device.xml
938                 - Add a "missing firmware" device state reason
939
940         * src/NetworkManagerSystem.c
941           src/NetworkManagerSystem.h
942                 - (nm_system_device_set_up_down): add a no_firmware argument
943                 - (nm_system_device_set_up_down_with_iface): if the result of setting
944                         IFF_UP is ENOENT, that almost always means missing firmware
945
946         * src/backends/NetworkManagerGeneric.c
947           src/nm-device-ethernet.c
948           src/nm-device-private.h
949           src/nm-device-wifi.c
950           src/nm-device.c
951           src/nm-device.h
952           src/nm-hso-gsm-device.c
953           src/vpn-manager/nm-vpn-connection.c
954                 - Pass no_firmware along; check it where appropriate
955
956 2008-08-18  Dan Williams  <dcbw@redhat.com>
957
958         Patch from Robert Buchholz <rbu@gentoo.org>
959
960         * autogen.sh
961           configure.in
962                 - Change to automake 1.9 and 'ustar' tar format defined by POSIX
963                         1003.1-1988, allowing for file names longer than 99 characters
964
965 2008-08-17  Dan Williams  <dcbw@redhat.com>
966
967         * include/NetworkManager.h
968           introspection/nm-device.xml
969           src/nm-gsm-device.c
970                 - Finer-grained GSM registration failure error codes
971
972 2008-08-17  Dan Williams  <dcbw@redhat.com>
973
974         * callouts/Makefile.am
975           src/Makefile.am
976                 - Move dispatcher directory creation to callouts/Makefile.am
977
978         * system-settings/plugins/keyfile/Makefile.am
979                 - Create keyfile connections directory in DESTDIR (bgo #546833)
980
981 2008-08-15  Dan Williams  <dcbw@redhat.com>
982
983         Do connection sharing in a cleaner manner; all required iptables rules
984         are now stored in the activation request and pertain only to the device
985         which is being shared to other computers. (rh #458625)
986
987         * src/nm-activation-request.c
988           src/nm-activation-request.h
989                 - (nm_act_request_add_share_rule): new function; add a sharing rule to
990                         the activation request which will get torn down automatically when
991                         the activation request dies
992                 - (nm_act_request_set_shared): push sharing rules to iptables when sharing
993                         is started, and tear them down when sharing is stopped
994
995         * src/nm-device.c
996                 - (start_sharing): start up sharing by doing the required iptables magic
997                 - (share_init): poke the right bits of the kernel and load the right
998                         modules for NAT
999                 - (nm_device_activate_stage5_ip_config_commit): start NAT-ing this
1000                         connection if it's a 'shared' connection
1001
1002         * src/NetworkManagerPolicy.c
1003                 - Remove all sharing stuff; done in the device code itself
1004
1005 2008-08-15  Dan Williams  <dcbw@redhat.com>
1006
1007         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1008                 - (create_dm_cmd_line): send the right router address
1009
1010 2008-08-15  Dan Williams  <dcbw@redhat.com>
1011
1012         * src/ppp-manager/nm-ppp-manager.c
1013                 - (pppd_timed_out): ensure timeouts fail the connection
1014
1015 2008-08-14  Dan Williams  <dcbw@redhat.com>
1016
1017         * src/nm-properties-changed-signal.c
1018           src/nm-properties-changed-signal.h
1019                 - Add a property spec flag for "don't export this property" in
1020                         property changed signals
1021
1022         * src/nm-hso-gsm-device.c
1023           src/nm-gsm-device.c
1024           src/nm-cdma-device.c
1025                 - Don't export monitor interface or netdev interface properties
1026
1027 2008-08-14  Dan Williams  <dcbw@redhat.com>
1028
1029         * src/NetworkManagerPolicy.c
1030                 - (update_routing_and_dns): 'hso' devices can be default even if they
1031                         don't have a gateway
1032
1033 2008-08-14  Dan Williams  <dcbw@redhat.com>
1034
1035         * src/nm-device.c
1036                 - (nm_device_deactivate_quickly): tear down activation request after
1037                         calling device-specific deactivation
1038
1039         * src/nm-hso-gsm-device.c
1040                 - (real_deactivate_quickly): terminate connection when deactivating
1041
1042 2008-08-14  Dan Williams  <dcbw@redhat.com>
1043
1044         * src/nm-activation-request.h
1045                 - Add HSO secrets caller
1046
1047         * src/nm-gsm-device.c
1048           src/nm-gsm-device.h
1049                 - (modem_wait_for_reply): add a 'user_data' argument so callers can pass
1050                         something to the callback function
1051                 - (set_apn, set_apn_done): call class dial function, not a static one
1052                 - (nm_gsm_device_class_init): add a class 'dial' function
1053
1054         * src/nm-hal-manager.c
1055                 - (get_hso_netdev): find the hso-driven hardware's net device
1056                 - (modem_device_creator): recognize hso-driven hardware and create the
1057                         right type of device object for it
1058
1059         * src/Makefile.am
1060           src/nm-hso-gsm-device.c
1061           src/nm-hso-gsm-device.h
1062                 - Implement support for devices driven by the 'hso' driver as a subclass
1063                         of NMGsmDevice
1064
1065 2008-08-14  Dan Williams  <dcbw@redhat.com>
1066
1067         * src/NetworkManagerSystem.c
1068                 - (nm_system_device_is_up_with_iface): ensure ifreq is cleared before using
1069                 - (nm_system_device_set_up_down_with_iface): cleanups; only return
1070                         success if the operation really was successful
1071
1072 2008-08-14  Dan Williams  <dcbw@redhat.com>
1073
1074         * src/nm-netlink-monitor.c
1075           src/nm-netlink-monitor.h
1076           src/nm-device-ethernet.c
1077                 - (nm_netlink_monitor_request_status): return an error on failure
1078                 - (constructor): don't segfault on missing error
1079
1080 2008-08-13  Dan Williams  <dcbw@redhat.com>
1081
1082         * callouts/nm-dispatcher-action.c
1083                 - Add IP4 config info to script environment
1084
1085 2008-08-12  Dan Williams  <dcbw@redhat.com>
1086
1087         * src/nm-device.c
1088                 - (nm_device_set_ip4_config): don't touch hostnames here; distros
1089                         that want to use DHCP hostnames should use dispatcher scripts
1090                         for that
1091
1092         * src/NetworkManagerSystem.h
1093           src/backends/NetworkManagerArch.c
1094           src/backends/NetworkManagerDebian.c
1095           src/backends/NetworkManagerFrugalware.c
1096           src/backends/NetworkManagerGeneric.c
1097           src/backends/NetworkManagerGeneric.h
1098           src/backends/NetworkManagerGentoo.c
1099           src/backends/NetworkManagerMandriva.c
1100           src/backends/NetworkManagerPaldo.c
1101           src/backends/NetworkManagerRedHat.c
1102           src/backends/NetworkManagerSlackware.c
1103           src/backends/NetworkManagerSuSE.c
1104                 - Remove nm_system_set_hostname(), no longer used
1105           
1106         * src/backends/Makefile.am
1107           src/backends/shvar.c
1108           src/backends/shvar.h
1109                 - Remove shvar.*; no longer used
1110
1111 2008-08-12  Dan Williams  <dcbw@redhat.com>
1112
1113         Revert most of the 'hostname' patch.  Too much stuff still breaks when
1114         hostname is updated at runtime.  Distros or users who want hostname updates
1115         can use dispatcher scripts to update the hostname if they need it.
1116
1117 2008-08-12  Dan Williams  <dcbw@redhat.com>
1118
1119         * introspection/nm-settings-system.xml
1120           system-settings/src/dbus-settings.c
1121           system-settings/src/dbus-settings.h
1122                 - Add a 'Hostname' property (rw) which represents the configured
1123                         hostname and domain of the system, if any
1124
1125         * system-settings/src/nm-system-config-error.c
1126           system-settings/src/nm-system-config-error.h
1127           system-settings/src/nm-system-config-interface.c
1128           system-settings/src/nm-system-config-interface.h
1129                 - Add a 'hostname' property to the plugin interface
1130                 - Add a method to send updated hostname to plugins to save in their
1131                         backing configuration store
1132
1133         * system-settings/plugins/keyfile/nm-keyfile-connection.c
1134           system-settings/plugins/keyfile/plugin.c
1135           system-settings/plugins/keyfile/writer.c
1136           system-settings/plugins/keyfile/writer.h
1137           system-settings/plugins/ifcfg-suse/plugin.c
1138                 - Add minimal hostname support
1139
1140         * system-settings/plugins/ifcfg-fedora/plugin.c
1141                 - Add support for updating system hostname in /etc/sysconfig/network
1142
1143 2008-08-12  Dan Williams  <dcbw@redhat.com>
1144
1145         * system-settings/plugins/ifcfg-fedora/shvar.c
1146           system-settings/plugins/ifcfg-fedora/shvar.c
1147                 - Fix double-free caused by svSetValue() followed by svCloseFile()
1148
1149 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1150
1151         * Makefile.am: Fix distcheck.
1152
1153 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1154
1155         * libnm-glib/*.c. Document some more.
1156
1157 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1158
1159         Start documenting libnm-glib public API using gtk-doc.
1160
1161         * libnm-glib/nm-serial-device.c: 
1162         * libnm-glib/nm-object.c: 
1163         * libnm-glib/nm-gsm-device.c: 
1164         * libnm-glib/nm-device.c: 
1165         * libnm-glib/nm-device-wifi.c: 
1166         * libnm-glib/nm-device-ethernet.c: 
1167         * libnm-glib/nm-client.c: 
1168         * libnm-glib/nm-cdma-device.c: Document the public API.
1169
1170         * docs/libnm-glib/libnm-glib.types: Implement.
1171
1172         * docs/libnm-glib/Makefile.am: Implement.
1173
1174         * autogen.sh: 
1175         * configure.in: 
1176         * Makefile.am: Add gtk-doc support.
1177
1178 2008-08-12  Tambet Ingo  <tambet@gmail.com>
1179
1180         * src/backends/*: Get rid of nm_system_should_modify_resolv_conf().
1181
1182         * src/named-manager/nm-named-manager.c (rewrite_resolv_conf): Calculate
1183         the composite result of all the IP4 configurations and call a distro
1184         specific update_resolv_conf().
1185         (update_resolv_conf): Implement one for directly writing to 
1186         /etc/resolv.conf and one for opensuse to call netconfig.
1187
1188 2008-08-11  Dan Williams  <dcbw@redhat.com>
1189
1190         * src/ppp-manager/nm-ppp-manager.c
1191                 - (impl_ppp_manager_need_secrets): pass interface as required
1192
1193 2008-08-11  Dan Williams  <dcbw@redhat.com>
1194
1195         Merge the vpn-properties setting with the vpn setting since it was pointless
1196         to keep both of them around.  Convert the vpn 'data' hash table to a hash
1197         of string:string (instead of string:variant) so that system settings plugins
1198         can have an easier time dealing with the arbitrary key/value pairs.
1199
1200 2008-08-11  Dan Williams  <dcbw@redhat.com>
1201
1202         * libnm-util/nm-utils.c
1203                 - (nm_utils_register_value_transformations): add value transform for
1204                         a hash table of string:string
1205
1206 2008-08-10  Dan Williams  <dcbw@redhat.com>
1207
1208         * libnm-glib/nm-vpn-plugin.c
1209                 - (nm_vpn_plugin_connect): stop plugin after connection failure from
1210                         an idle handler so the Connect reply gets delivered before the
1211                         stop StateChanged signal
1212
1213 2008-08-10  Dan Williams  <dcbw@redhat.com>
1214
1215         * src/nm-ip4-config.c
1216                 - (get_property): use common ip4 address/route conversion functions
1217                 - (nm_ip4_config_replace_address, nm_ip4_config_replace_route): should
1218                         copy the new route here, not take ownership
1219
1220 2008-08-08  Tambet Ingo  <tambet@gmail.com>
1221
1222         * system-settings/plugins/ifcfg-suse/parser.c (make_ip4_setting):
1223         Update the IP4 setting's method name.
1224
1225 2008-08-07  Dan Williams  <dcbw@redhat.com>
1226
1227         * introspection/nm-ip4-config.xml
1228           libnm-glib/libnm-glib-test.c
1229           libnm-glib/nm-ip4-config.c
1230           libnm-glib/nm-ip4-config.h
1231           src/NetworkManagerSystem.h
1232           src/backends/NetworkManagerArch.c
1233           src/backends/NetworkManagerDebian.c
1234           src/backends/NetworkManagerFrugalware.c
1235           src/backends/NetworkManagerGeneric.c
1236           src/backends/NetworkManagerGeneric.h
1237           src/backends/NetworkManagerGentoo.c
1238           src/backends/NetworkManagerMandriva.c
1239           src/backends/NetworkManagerPaldo.c
1240           src/backends/NetworkManagerRedHat.c
1241           src/backends/NetworkManagerSlackware.c
1242           src/backends/NetworkManagerSuSE.c
1243           src/dhcp-manager/nm-dhcp-manager.c
1244           src/nm-device.c
1245           src/nm-ip4-config.c
1246           src/nm-ip4-config.h
1247                 - Remove NIS logic; should be done from dispatcher scripts instead
1248
1249 2008-08-07  Dan Williams  <dcbw@redhat.com>
1250
1251         * src/dhcp-manager/nm-dhcp-manager.c
1252                 - (nm_dhcp_manager_get_ip4_config): fix regression which caused
1253                         mis-handling of DHCP responses that returned more than one router
1254                         (found by Grant Williamson)
1255
1256 2008-08-07  Dan Williams  <dcbw@redhat.com>
1257
1258         * callouts/nm-dispatcher-action.c
1259                 - (nm_dispatcher_action): grab device path and create the device; pass
1260                         the device's DHCP4 config to script caller
1261                 - (dispatch_scripts): dump the DHCP4 config to the environment of called
1262                         scripts
1263
1264         * libnm-glib/nm-dhcp4-config.c
1265           libnm-glib/nm-dhcp4-config.h
1266                 - (nm_dhcp4_config_get_options): expose
1267                 - (nm_dhcp4_config_get_one_option): renamed from nm_dhcp4_config_get_option
1268
1269 2008-08-07  Dan Williams  <dcbw@redhat.com>
1270
1271         * include/NetworkManager.h
1272                 - Add the DHCP4Config D-Bus interface
1273
1274         * libnm-glib/Makefile.am
1275           libnm-glib/nm-dhcp4-config.c
1276           libnm-glib/nm-dhcp4-config.h
1277                 - Handle DHCP4 config objects exported by NM over D-Bus
1278
1279         * libnm-glib/nm-device.c
1280           libnm-glib/nm-device.h
1281                 - Add a 'dhcp4-config' property
1282
1283         * libnm-glib/libnm-glib-test.c
1284                 - Print out DHCP4 config for devices
1285                 - Fix some crashes when no connections are active
1286
1287         * src/nm-device-interface.c
1288           src/nm-device.c
1289           src/nm-dhcp4-config.c
1290           src/nm-dhcp4-config.h
1291                 - Treat dhcp4-config object as an object path at the D-Bus interface so
1292                         that when it doesn't exist we can proxy it as "/" which dbus-glib
1293                         doesn't let us do when the property type is G_TYPE_OBJECT
1294
1295 2008-08-07  Dan Williams  <dcbw@redhat.com>
1296
1297         * src/NetworkManager.c
1298           src/NetworkManagerSystem.h
1299           src/backends/NetworkManagerArch.c
1300           src/backends/NetworkManagerDebian.c
1301           src/backends/NetworkManagerFrugalware.c
1302           src/backends/NetworkManagerGeneric.c
1303           src/backends/NetworkManagerGeneric.h
1304           src/backends/NetworkManagerGentoo.c
1305           src/backends/NetworkManagerMandriva.c
1306           src/backends/NetworkManagerPaldo.c
1307           src/backends/NetworkManagerRedHat.c
1308           src/backends/NetworkManagerSlackware.c
1309           src/backends/NetworkManagerSuSE.c
1310                 - (nm_system_init, nm_system_kill_all_dhcp_daemons): remove, unused
1311
1312 2008-08-06  Dan Williams  <dcbw@redhat.com>
1313
1314         * libnm-glib/nm-ip4-config.c
1315           libnm-glib/nm-ip4-config.h
1316                 - Add 'routes' property
1317
1318         * libnm-util/nm-setting-vpn.c
1319           libnm-util/nm-setting-vpn.h
1320                 - Remove 'routes' property
1321
1322         * libnm-util/nm-setting-ip4-config.c
1323           libnm-util/nm-setting-ip4-config.h
1324                 - 'ignore-dhcp-dns' renamed to 'ignore-auto-dns'
1325                 - Add 'ignore-auto-routes' property
1326                 - 'routes' exposed over D-Bus is now an array of array of uint (4) to 
1327                         accomodate route metrics
1328                 - 'routes' exposed in C is now a list of NMSettingIP4Route structures
1329
1330         * libnm-util/nm-utils.c
1331           libnm-util/nm-utils.h
1332                 - Add helpers for marshalling IP4 routes
1333
1334         * src/NetworkManagerUtils.c
1335                 - (nm_utils_merge_ip4_config): handle property renames and new route
1336                         structure
1337
1338         * src/NetworkManagerSystem.c
1339                 - (nm_system_device_set_ip4_route, nm_system_device_set_from_ip4_config,
1340                    nm_system_vpn_device_set_from_ip4_config): respect route metrics
1341
1342         * src/dhcp-manager/nm-dhcp-manager.c
1343                 - (nm_dhcp_manager_get_ip4_config): handle new route structure
1344
1345         * system-settings/plugins/ifcfg-fedora/reader.c
1346           system-settings/plugins/ifcfg-fedora/writer.c
1347                 - Handle routes separately from addresses now that routes have a different
1348                         format
1349
1350         * introspection/nm-ip4-config.xml
1351           src/nm-ip4-config.c
1352           src/nm-ip4-config.h
1353                 - Rename internal routing functions
1354                 - 'static-routes' renamed to 'routes'
1355
1356 2008-08-04  Dan Williams  <dcbw@redhat.com>
1357
1358         Patch from Sjoerd Simons <sjoerd.simons@collabora.co.uk>
1359
1360         * src/NetworkManager.c
1361           src/nm-manager.c
1362           src/nm-manager.h
1363                 - More explicitly make the NMManager a singleton
1364
1365 2008-08-04  Dan Williams  <dcbw@redhat.com>
1366
1367         * libnm-util/nm-connection.c
1368           libnm-util/nm-connection.h
1369                 - (nm_connection_verify): return error on missing 'connection' setting
1370                         (found by Sjoerd Simons)
1371
1372 2008-08-04  Dan Williams  <dcbw@redhat.com>
1373
1374         Handle multiple concurrent PPP connections.
1375
1376         * src/ppp-manager/nm-ppp-manager.c
1377           src/ppp-manager/nm-ppp-manager.h
1378                 - (constructor): only PPP Manager request bus name once; each
1379                         NMPPPManager object gets a unique object path
1380                 - (nm_ppp_manager_class_init, get_property, set_property,
1381                    nm_ppp_manager_new, nm_ppp_manager_start): pass parent interface in
1382                         at construct time
1383                 - (impl_ppp_manager_need_secrets, impl_ppp_manager_set_state): don't
1384                         remove timeout until PPP manager gets an IP4 config
1385                 - (create_pppd_cmd_line): pass dbus object path as 'ipparam' so that
1386                         the plugin can call back to this specific PPP manager instance
1387
1388         * src/nm-device-ethernet.c
1389           src/nm-serial-device.c
1390                 - Pass parent device in nm_ppp_manager_new()
1391
1392         * src/nm-gsm-device.c
1393           src/nm-cdma-device.c
1394                 - (device_state_changed): don't close serial device on NEED_AUTH
1395                         state changed, that's not a failure case like the rest are
1396
1397         * src/ppp-manager/nm-pppd-plugin.c
1398                 - (nm_ip_up): always use index 0 into the ipcp options, because NM always
1399                         binds one interface to any pppd process, thus the correct index
1400                         is always 0; send PHASE_DEAD on error to alert NM immediately of
1401                         problems; try harder to get a peer address in spite of pppd
1402                 - (plugin_init): use 'ipparam' as the object path back to our specific
1403                         PPP manager instance
1404
1405 2008-08-04  Dan Williams  <dcbw@redhat.com>
1406
1407         * src/ppp-manager/nm-ppp-manager.c
1408                 - (impl_ppp_manager_need_secrets): rework to handle secrets better;
1409                         since the GSM and CDMA settings now implement need_secrets, we can
1410                         rely on them to do the right thing.  Where secrets are not required,
1411                         just pass empty strings back to the pppd plugin.
1412                 - (nm_ppp_manager_update_secrets): leak fix; don't need to dup the strings
1413                 - (impl_ppp_manager_set_ip4_config): clear the secrets tries counter
1414                         on successful IP4 config receipt
1415
1416 2008-08-04  Dan Williams  <dcbw@redhat.com>
1417
1418         * libnm-util/nm-setting-cdma.c
1419           libnm-util/nm-setting-gsm.c
1420                 - (verify): validate username & password if they exist
1421                 - (need_secrets): if username given, require a password too
1422
1423 2008-08-04  Dan Williams  <dcbw@redhat.com>
1424
1425         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1426                 - (create_dm_cmd_line): really don't listen on lo, despite what the
1427                         manpage says about --listen-address without --interface
1428                         (bgo #546033)
1429
1430 2008-08-01  Dan Williams  <dcbw@redhat.com>
1431
1432         * libnm-glib/nm-device.c
1433                 - (proxy_get_string): util function for querying a HAL property
1434                 - (get_ancestor_device): split out from get_product_and_vendor()
1435                 - (get_product_and_vendor): simplify; get more accurate pid & vid info
1436                         from PCI devices by querying subsys properties
1437                 - (nm_device_update_description): simplify
1438
1439 2008-08-01  Dan Williams  <dcbw@redhat.com>
1440
1441         * libnm-util/nm-setting-ip4-config.c
1442           libnm-util/nm-setting-ip4-config.h
1443                 - Make IPv4 methods reflect their usage; 'dhcp' -> 'auto' and
1444                         'autoip' -> 'link-local'.  VPN & PPP connections can also have IPv4
1445                         settings, and they don't necessarily use DHCP.
1446
1447         * src/NetworkManagerPolicy.c
1448           src/nm-device.c
1449           system-settings/plugins/ifcfg-fedora/reader.c
1450           system-settings/plugins/ifcfg-suse/parser.c
1451                 - Fixup for method changes
1452
1453 2008-07-31  Dan Williams  <dcbw@redhat.com>
1454
1455         * src/nm-activation-request.c
1456           src/vpn-manager/nm-vpn-connection.c
1457                 - Correct GetSecrets D-Bus pending call usage; the GetSecrets call
1458                         itself should be attached to the activation request or the VPN
1459                         connection, not the NMConnection object, since the call is not
1460                         expected to live as long as the NMConnection itself
1461
1462 2008-07-31  Dan Williams  <dcbw@redhat.com>
1463
1464         * src/nm-device-wifi.c
1465                 - (real_act_stage2_config): fix issue where association would continue
1466                         even though secrets were needed; 'goto out' was in wrong scope and
1467                         result of handle_auth_or_fail() should have been dumped directly to
1468                         'ret' to ensure that the association was postponed until secrets
1469                         are available
1470
1471 2008-07-31  Dan Williams  <dcbw@redhat.com>
1472
1473         * system-settings/plugins/ifcfg-fedora/plugin.c
1474           system-settings/plugins/ifcfg-fedora/reader.c
1475                 - Don't ignore unmanaged devices if their ifcfg file doesn't make a
1476                         valid NM connection
1477
1478 2008-07-29  Dan Williams  <dcbw@redhat.com>
1479
1480         * src/nm-gsm-device.c
1481                 - (automatic_registration_response, automatic_registration): recognize
1482                         denied registration and reorder responses
1483
1484 2008-07-29  Dan Williams  <dcbw@redhat.com>
1485
1486         * src/nm-serial-device.c
1487                 - (nm_serial_device_wait_for_reply): fix timeout calculation.  Since
1488                         time(2) is used for current time, which returns seconds, we shouldn't
1489                         be multiplying by 1000.
1490
1491 2008-07-28  Dan Williams  <dcbw@redhat.com>
1492
1493         Patch from Fabrice Bellet <fabrice@bellet.info>
1494
1495         * src/NetworkManagerSystem.c
1496                 - (route_in_same_subnet): mask addresses and compare them so that the
1497                         function actually does what it says it's going to do (rh #456685)
1498
1499 2008-07-27  Dan Williams  <dcbw@redhat.com>
1500
1501         * libnm-util/nm-setting-ip6-config.c
1502                 - (set_property): add missing break that caused routes to be overwritten
1503                         with addresses
1504
1505         * libnm-util/nm-setting-ip6-config.c
1506                 - (verify): validate routes and return GError everywhere on invalid setting
1507                 - (finalize): don't leak routes
1508                 - (set_property): add missing break that caused routes to be overwritten
1509                         with addresses
1510
1511 2008-07-27  Dan Williams  <dcbw@redhat.com>
1512
1513         * libnm-util/*
1514                 - Relicense to LGPLv2+
1515
1516 2008-07-27  Dan Williams  <dcbw@redhat.com>
1517
1518         * system-settings/plugins/ifcfg-fedora/reader.c
1519                 - (make_ip4_setting): fix parsing automatic configs
1520
1521 2008-07-27  Dan Williams  <dcbw@redhat.com>
1522
1523         * src/dnsmasq-manager/nm-dnsmasq-manager.c
1524           src/nm-device.c
1525           src/ppp-manager/nm-ppp-manager.c
1526                 - Ensure child process gets reaped.  The child watch function may be
1527                         removed from the mainloop before the child gets killed, so we have
1528                         to make sure the child is reaped when it's told to die intentionally
1529
1530 2008-07-27  Dan Williams  <dcbw@redhat.com>
1531
1532         Patch from Roy Marples <roy@marples.name>
1533
1534         * src/dhcp-manager/nm-dhcp-dhcpcd.c
1535                 - (nm_dhcp_client_start): fixup for latest dhcpcd 4.0 RC
1536
1537 2008-07-27  Dan Williams  <dcbw@redhat.com>
1538
1539         * src/nm-gsm-device.c
1540                 - (init_modem_full): send "ATZ E0" after CPIN, because apparently some
1541                         Huawei devices turn echo back on after CPIN (rh #456770)
1542
1543 2008-07-24  Tambet Ingo  <tambet@gmail.com>
1544
1545         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_update_secrets): Add
1546         format argument to g_set_error() call.
1547
1548         * src/backends/interface_parser.[ch]: Remove.
1549
1550         * src/backends/Makefile.am: Remove unused files interface_parser.[ch].
1551
1552 2008-07-21  Dan Williams  <dcbw@redhat.com>
1553
1554         * src/ppp-manager/nm-ppp-manager.c
1555                 - (create_pppd_cmd_line): send 'noipdefault' on non-PPPoE connections
1556                         to prevent pppd from picking up some random local address from an
1557                         interface that doesn't have anything to do with the one we're
1558                         interested in (rh #455348)
1559
1560 2008-07-17  Dan Williams  <dcbw@redhat.com>
1561
1562         * libnm-util/nm-utils.c
1563                 - (string_to_utf8): general function for conversion to UTF-8 assisted
1564                         by locale
1565                 - (nm_utils_ssid_to_utf8): use string_to_utf8()
1566                 - (nm_utils_garray_to_string): ensure returned string is UTF-8 safe
1567
1568 2008-07-17  Dan Williams  <dcbw@redhat.com>
1569
1570         * introspection/Makefile.am
1571           introspection/nm-device.xml
1572           introspection/nm-dhcp4-config.xml
1573                 - Add bits for the DHCP4Config property of the device, and the DHCP4Config
1574                         itself
1575         * src/nm-device-interface.c
1576           src/nm-device-interface.h
1577                 - Add the DHCP4Config property
1578
1579         * src/nm-device.c
1580                 - Keep track of DHCP4 options via a new DHCP4Config property and notify
1581                         D-Bus clients when it changes
1582
1583         * src/nm-dhcp4-config.c
1584           src/nm-dhcp4-config.h
1585                 - Simple object to store DHCP4 options, export them over D-Bus, and
1586                         notify when they change
1587
1588         * src/dhcp-manager/nm-dhcp-manager.c
1589           src/dhcp-manager/nm-dhcp-manager.h
1590                 - (nm_dhcp_manager_set_dhcp4_config, copy_dhcp4_config_option): copy and
1591                         filter server-returned DHCP options into an NMDHCP4Config object
1592
1593 2008-07-16  Dan Williams  <dcbw@redhat.com>
1594
1595         * introspection/nm-device.xml
1596                 - Add device state reasons
1597
1598 2008-07-16  Dan Williams  <dcbw@redhat.com>
1599
1600         Patch from Roy Marples <roy@marples.name>
1601
1602         * configure.in
1603                 - Add --with-dhcp-client option
1604
1605         * src/dhcp-manager/Makefile.am
1606                 - pass DHCP_CLIENT_PATH on compile line
1607
1608         * src/dhcp-manager/nm-dhcp-manager.c
1609           src/dhcp-manager/nm-dhcp-manager.h
1610                 - Genericize for both dhcpcd and dhclient
1611
1612         * src/dhcp-manager/nm-dhcp-dhclient.c
1613                 - Move dhclient stuff out to it's own file from nm-dhcp-manager.c
1614
1615         * src/dhcp-manager/nm-dhcp-dhcpcd.c
1616                 - Implement support for dhcpcd too
1617
1618 2008-07-16  Tambet Ingo  <tambet@gmail.com>
1619
1620         * system-settings/src/nm-system-config-interface.c 
1621         (nm_system_config_interface_supports_add): Implement.
1622         (nm_system_config_interface_add_connection): Return a boolean to notify
1623         of errors.
1624
1625         * system-settings/src/nm-polkit-helpers.c: 
1626         * system-settings/src/nm-polkit-helpers.h: Move error declarations to
1627         a separate file.
1628
1629         * system-settings/src/dbus-settings.c (impl_settings_add_connection):
1630         Return an error when none of the plugins support add or if addition
1631         failed for some reason.
1632
1633         * system-settings/src/nm-system-config-error.h: 
1634         * system-settings/src/nm-system-config-error.c: New files, mostly moved
1635         here from nm-polkit-helpers.[ch].
1636
1637         * system-settings/src/Makefile.am: Build new files.
1638
1639         * system-settings/plugins/keyfile/reader.c 
1640         (read_array_of_array_of_uint): Make it more general so that it would
1641         work for routes as well.
1642
1643         * system-settings/plugins/keyfile/writer.c
1644         (write_array_of_array_of_uint): Ditto.
1645         Fix the netmask/prefix writing.
1646
1647         * system-settings/plugins/keyfile/plugin.c (add_connection): Return
1648         boolean to notify errors.
1649
1650         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c (update):
1651         Return more specific error.
1652         (delete): Ditto.
1653
1654 2008-07-11  Dan Williams  <dcbw@redhat.com>
1655
1656         Modify the NMDevice::state-changed signal to include the previous state
1657         and reason. Enables the applet to provide more information why device
1658         activation failed.
1659
1660 2008-07-09  Dan Williams  <dcbw@redhat.com>
1661
1662         * callouts/Makefile.am
1663           callouts/nm-avahi-autoipd-action.c
1664           callouts/nm-avahi-autoipd.conf
1665                 - avahi-autoipd callout to send options back to NM
1666
1667         * src/autoip.c
1668           src/autoip.h
1669                 - remove
1670
1671         * src/nm-device.c
1672           src/nm-device-private.h
1673           src/nm-manager.c
1674                 - Use avahi-autoipd for IPv4LL functionality rather than really crappy
1675                         old custom stuff
1676
1677 2008-07-07  Dan Williams  <dcbw@redhat.com>
1678
1679         * system-settings/plugins/ifcfg-fedora/reader.c
1680                 - (make_ip4_setting): handle DHCP_HOSTNAME; fix up prefix support to
1681                         handle PREFIX too; clean up
1682
1683 2008-07-07  Dan Williams  <dcbw@redhat.com>
1684
1685         Convert to using IPv4 prefixes instead of netmasks.
1686
1687 2008-07-03  Dan Williams  <dcbw@redhat.com>
1688
1689         * libnm-util/nm-setting-ip4-config.c
1690           libnm-util/nm-setting-ip4-config.h
1691                 - Add properties for DHCP Client Identifier and DHCP Hostname
1692
1693         * src/dhcp-manager/nm-dhcp-manager.c
1694           src/dhcp-manager/nm-dhcp-manager.h
1695                 - (nm_dhcp_manager_begin_transaction): take the connection's ip4-config
1696                         setting as an argument to pass on to the dhclient config file
1697                         creation function
1698                 - (nm_dhcp_manager_cancel_transaction_real): remove dhclient config when
1699                         DHCP is torn down
1700                 - (dhclient_run): punt config file handling to create_dhclient_config()
1701                 - (create_dhclient_config): create an interface-specific dhclient
1702                         config file since there may need to be interface-specific options
1703                         passed to dhclient
1704                 - (merge_dhclient_config): merge normal distro dhclient config file and
1705                         add options from the connection
1706                 - (nm_dhcp_device_new): generate the interface specific dhclient
1707                         config file path once
1708                 - (nm_dhcp_device_destroy): handle partially initialized objects; free
1709                         dhclient config file path
1710
1711         * src/nm-device.c
1712                 - (real_act_stage3_ip_config_start): pass ip4-config, if any, to the
1713                         DHCP manager when starting DHCP
1714
1715 2008-07-02  Dan Williams  <dcbw@redhat.com>
1716
1717         * libnm-util/nm-setting-8021x.c
1718                 - (verify): allow forcing the PEAP label to 0
1719
1720 2008-07-02  Dan Williams  <dcbw@redhat.com>
1721
1722         * introspection/nm-active-connection.xml
1723           introspection/nm-vpn-connection.xml
1724           libnm-glib/nm-active-connection.c
1725           src/nm-activation-request.c
1726           src/nm-active-connection.h
1727           src/vpn-manager/nm-vpn-connection.c
1728                 - Remove "SharedServiceName" and "SharedConnection" bits from the D-Bus
1729                         and libnm-glib API since sharing didn't get implemented that way
1730
1731 2008-07-02  Dan Williams  <dcbw@redhat.com>
1732
1733         * src/nm-device-wifi.c
1734                 - (can_scan): don't scan when a shared connection is activated since
1735                         that makes drivers mad (causing disconnects); also NM doesn't need
1736                         to hedge against disconnects by keeping up-to-date network topology
1737                         because the connection originates from the local machine, and thus
1738                         there should be no disconnects
1739
1740 2008-07-01  Dan Williams  <dcbw@redhat.com>
1741
1742         Fix mobile broadband username/password issues.  NM was never requesting
1743         mobile broadband secrets, nor was it passing back the username and password
1744         if it had them.
1745
1746         * marshallers/nm-marshal.list
1747                 - Add some new types for activation request objects
1748
1749         * src/nm-activation-request.c
1750           src/nm-activation-request.h
1751                 - (get_secrets_cb): pass the caller type in the signal
1752                 - (nm_act_request_request_connection_secrets): take a caller type, so
1753                         that GetSecrets() reply handlers know who asked for the secrets in
1754                         the first place; use secret hints too so the settings service can
1755                         figure out exactly what NM wants (ie, PIN or the PPP password)
1756
1757         * src/ppp-manager/nm-ppp-manager.c
1758           src/ppp-manager/nm-ppp-manager.h
1759                 - (impl_ppp_manager_need_secrets): nm_connection_need_secrets() won't
1760                         detect needed secrets when the secret could be blank, like GSM/CDMA
1761                         passwords.  So always ask for secrets, and send a hint as to what
1762                         secret we really want.
1763                 - (nm_ppp_manager_update_secrets): make function more generic by making
1764                         the device specific class figure out the username and password, and
1765                         accept an error argument to return back over D-Bus
1766
1767         * src/nm-device-wifi.c
1768                 - (link_timeout_cb, handle_auth_or_fail): update for changes to
1769                         nm_act_request_request_connection_secrets()
1770                 - (real_connection_secrets_updated): update for 'caller' changes
1771
1772         * src/nm-device.c
1773           src/nm-device.h
1774                 - (connection_secrets_updated_cb, connection_secrets_failed_cb): update
1775                         for 'caller' changes
1776
1777         * src/nm-device-ethernet.c
1778                 - (real_connection_secrets_updated): update for 'caller' changes and
1779                         move logic for getting PPPoE username and password here before
1780                         calling nm_ppp_manager_update_secrets()
1781                 - (link_timeout_cb, handle_auth_or_fail): update for changes to
1782                         nm_act_request_request_connection_secrets()
1783
1784         * src/nm-cdma-device.c
1785                 - (real_connection_secrets_updated): pass username and password back
1786                         to the PPP manager when required
1787
1788         * src/nm-gsm-device.c
1789                 - (enter_pin): send the required secret name to the settings service
1790                 - (real_connection_secrets_updated): pass username and password back
1791                         to the PPP manager when required
1792
1793 2008-06-30  Dan Williams  <dcbw@redhat.com>
1794
1795         * src/nm-device-wifi.c
1796                 - Consistently use NM_DEVICE_WIFI_GET_PRIVATE instead of self->priv
1797
1798 2008-06-30  Dan Williams  <dcbw@redhat.com>
1799
1800         Attempt to fix various issues causing rh #448889.  Mainly, to qualify for
1801         the DISCONNECTED state, the device must not be rfkilled _and_ have a valid
1802         priv->supplicant.iface.  When either condition is false, the device should
1803         transition back to UNAVAILABLE because it cannot be used.
1804
1805         * src/nm-device-wifi.c
1806                 - (constructor): cleanup; connect to supplicant manager here since the
1807                         supplicant manager is always around
1808                 - (supplicant_interface_acquire): rename from init_supplicant_interface,
1809                         ensure the supplicant manager is in the IDLE state
1810                 - (supplicant_interface_release): rename from cleanup_supplicant_interface,
1811                         cancel any pending scans too
1812                 - (real_bring_up): don't set up the supplicnat interface here, because
1813                         we need the supplicant interface at times when the device may not
1814                         be "up"
1815                 - (real_take_down): just remove the periodic source
1816                 - (schedule_scan): ensure a state that would peg the CPU doesn't happen
1817                 - (remove_supplicant_interface_connection_error_handler): cleanup; don't
1818                         do anything if there's no supplicant interface
1819                 - (cleanup_association_attempt): cleanup
1820                 - (supplicant_iface_state_cb_handler): request an immediate scan when
1821                         the interface enters the READY state; transition to UNAVAILABLE
1822                         state when the interface goes down because the device can't be used
1823                         without a supplicant interface
1824                 - (supplicant_mgr_state_cb_handler): if the supplicant goes away, clean
1825                         up and transition to UNAVAILABLE; if the supplicant becomes ready,
1826                         acquire the supplicant interface and transition to DISCONNECTED
1827                         if the radio isn't killed
1828                 - (nm_device_wifi_dispose): move most of device_cleanup() here
1829                 - (state_changed_cb): release any existing supplicant interface; if the
1830                         radio is enabled then try to acquire a new supplicant interface;
1831                         if the radio is enabled and a supplicant interface has been acquired,
1832                         we can transition to DISCONNECTED
1833                 - (nm_device_wifi_set_enabled): if bringing the hardware up failed,
1834                         don't enable the radio, because HAL probably lied to us about the
1835                         killswitch being off.  If bringing the hardware up worked, then
1836                         try to grab a supplicant interface, and if that was successful,
1837                         transition to DISCONNECTED
1838
1839 2008-06-30  Dan Williams  <dcbw@redhat.com>
1840
1841         * src/supplicant-manager/nm-supplicant-interface.c
1842                 - (request_scan_results, nm_supplicant_interface_dispose,
1843                    wpas_iface_query_scan_results): cleanup; scan_results_timeout is now
1844                         the id of the timeout, not a GSource
1845
1846 2008-06-30  Tambet Ingo  <tambet@gmail.com>
1847
1848         * src/backends/NetworkManagerSuSE.c (nm_system_activate_nis): Fix a 
1849         bunch of typoes introduced by "Patch from David Cantrell 
1850         <dcantrell@redhat.com> and me".
1851
1852 2008-06-30  Tambet Ingo  <tambet@gmail.com>
1853
1854         * src/nm-serial-device.c: 
1855         * src/nm-gsm-device.c: 
1856         * src/nm-cdma-device.c: Move the pending call handling to a common location
1857         in serial device. Handle setting device state to failed in one place as well.
1858
1859 2008-06-29  Dan Williams <dcbw@redhat.com>
1860
1861         * src/nm-hal-manager.c
1862                 - Rework killswitch handling to query killswitch status immediately
1863                         when the first killswitch is added, so that rfkill state is
1864                         known as early as possible
1865                 - Also treat failure of GetPower() as rfkill when the dbus method
1866                         call times out (but not when the HAL callout returns an error)
1867
1868 2008-06-26  Dan Williams <dcbw@redhat.com>
1869
1870         Patch from David Cantrell <dcantrell@redhat.com> and me
1871
1872         * include/nm-dbus-glib-types.h
1873                 - Add IP6 address types
1874
1875         * libnm-util/Makefile.am
1876           libnm-util/nm-setting-ip6-config.c
1877           libnm-util/nm-setting-ip6-config.h
1878                 - Add IP6 settings object
1879
1880         * libnm-util/nm-connection.c
1881                 - (register_default_settings): register ip6 settings object
1882
1883         * libnm-util/nm-utils.c
1884           libnm-util/nm-utils.h
1885                 - (nm_utils_ip6_addresses_from_gvalue, nm_utils_ip6_addresses_to_gvalue,
1886                    nm_utils_ip6_dns_from_gvalue, nm_utils_ip6_dns_to_gvalue): add
1887                         ip6 address conversion functions
1888         
1889 2008-06-26  Dan Williams <dcbw@redhat.com>
1890
1891         Patch from David Cantrell <dcantrell@redhat.com>
1892         
1893         * Use inet_ntop() and inet_pton() everwhere and check for errors
1894
1895 2008-06-26  Dan Williams <dcbw@redhat.com>
1896
1897         * Update FSF address in license headers (Michael Biebl <biebl@debian.org>)
1898
1899 2008-06-26  Dan Williams <dcbw@redhat.com>
1900
1901         Patch from Adel Gadllah <adel.gadllah@gmail.com>
1902
1903         * src/nm-device-wifi.c
1904                 - (link_timeout_cb): don't ignore disconnects due to scanning
1905                 - (supplicant_iface_connection_state_cb_handler): instead, schedule
1906                         a longer timeout when scanning; avoids case where supplicant can't
1907                         find the AP and just keeps scanning forever but isn't connected
1908
1909 2008-06-26  Dan Williams <dcbw@redhat.com>
1910
1911         Patch from Michael Biebl <biebl@debian.org>
1912
1913         * Clean up build system stuff
1914
1915 2008-06-23  Christian Persch  <chpe@gnome.org>
1916
1917         * vpn-daemons/openvpn/auth-dialog/gnome-two-password-dialog.c:
1918         * vpn-daemons/openvpn/auth-dialog/gnome-two-password-dialog.h:
1919         * vpn-daemons/pptp/auth-dialog-general/anonymous-auth-module.c:
1920         (impl_get_object):
1921         * vpn-daemons/pptp/auth-dialog-general/chap-auth-module.c:
1922         (impl_get_object):
1923         * vpn-daemons/pptp/auth-dialog-general/gnome-generic-auth-dialog.c:
1924         * vpn-daemons/pptp/auth-dialog-general/gnome-generic-auth-dialog.h:
1925         * vpn-daemons/pptp/auth-dialog-general/mschapv2-auth-module.c:
1926         (impl_get_object):
1927         * vpn-daemons/pptp/auth-dialog/gnome-two-password-dialog.c:
1928         * vpn-daemons/pptp/auth-dialog/gnome-two-password-dialog.h:
1929         * vpn-daemons/pptp/properties/nm-ppp-properties.c: (impl_setup):
1930         * vpn-daemons/pptp/properties/vpnui_impl.c: (impl_get_object):
1931         * vpn-daemons/pptp/properties/vpnui_opt.c:
1932         (vpnui_opt_connect_signals):
1933         * vpn-daemons/pptp/properties/vpnui_opt.h:
1934         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.c:
1935         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.h: Don't use
1936         deprecated gtk type macros. Bug #539325.
1937
1938 2008-06-20  Dan Williams  <dcbw@redhat.com>
1939
1940         * libnm-glib/nm-vpn-plugin-ui-interface.c
1941           libnm-glib/nm-vpn-plugin-ui-interface.h
1942                 - 'validity-changed' -> 'changed' to work better with the connection
1943                         editor.  Plugin UI widgets should emit 'changed' whenever their
1944                         UI values change in a meaningful way.
1945                 - (nm_vpn_plugin_ui_widget_interface_update_connection): the
1946                         update_connection member now returns validity of the UI widget
1947
1948 2008-06-20  Tambet Ingo  <tambet@gmail.com>
1949
1950         * libnm-util/nm-connection.c (nm_connection_duplicate): Implement.
1951
1952 2008-06-17  Dan Williams  <dcbw@redhat.com>
1953
1954         * libnm-glib/nm-vpn-plugin-ui-interface.c
1955           libnm-glib/nm-vpn-plugin-ui-interface.h
1956                 - Add "desc" property for longer descriptions of the VPN plugin
1957
1958 2008-06-16  Dan Williams  <dcbw@redhat.com>
1959
1960         * configure.in
1961           libnm-glib/libnm_glib_vpn.pc.in
1962                 - add a .pc file for libnm_glib_vpn
1963
1964         * libnm-glib/nm-vpn-plugin-ui-interface.c
1965           libnm-glib/nm-vpn-plugin-ui-interface.h
1966                 - Move the glib/GNOME VPN UI plugin interface into libnm-glib and
1967                         rework it substantially
1968
1969 2008-06-12  Dan Williams  <dcbw@redhat.com>
1970
1971         Add a GError argument to nm_connection_verify() and nm_setting_verify(),
1972         and add error enums to each NMSetting subclass.  Each NMSetting subclass now
1973         returns a descriptive GError when verification fails.
1974
1975 2008-06-11  Dan Williams  <dcbw@redhat.com>
1976
1977         Patch from Tambet Ingo <tambet@gmail.com>
1978
1979         * libnm-util/nm-setting-gsm.c
1980                 - (verify): validate APN
1981
1982         * src/nm-gsm-device.c
1983                 - (manual_registration_done): start setting APN if needed
1984                 - (set_apn, set_apn_done): set the APN
1985                 - (do_dial): use the APN when dialing
1986
1987 2008-06-11  Dan Williams  <dcbw@redhat.com>
1988
1989         * src/NetworkManagerSystem.c
1990                 - (nm_system_device_set_ip4_route,
1991                    nm_system_device_replace_default_ip4_route): check for the right
1992                         return value from rtnl_route_add() to know when to add a gateway
1993                         route (from Tambet)
1994
1995 2008-06-11  Dan Williams  <dcbw@redhat.com>
1996
1997         * src/NetworkManagerPolicy.c
1998                 - do_ipt_cmd -> do_cmd
1999                 - (sharing_init): use do_cmd() instead of system()
2000
2001 2008-06-10  Dan Williams  <dcbw@redhat.com>
2002
2003         The grand 802-11-wireless rename.  Get rid of the 802-11/80211/802_11 bits
2004         and use "wifi" everwhere instead.
2005
2006 2008-06-10  Dan Williams  <dcbw@redhat.com>
2007
2008         The grand 802-3-ethernet rename.  Get rid of the 802-3/8023/802_3 bits.
2009
2010 2008-06-10  Dan Williams  <dcbw@redhat.com>
2011
2012         Patch from Tambet Ingo <tambet@gmail.com>
2013
2014         * src/ppp-manager/nm-ppp-manager.c: Add ppp stats monitoring, signal the
2015                 changes.
2016
2017         * src/nm-serial-device.c: Monitor "ppp-stats" signals from NMPPPManager. Add
2018                 a signal to emit these changes over dbus.
2019
2020         * src/Makefile.am: Genereate nm-serial-device-glue.
2021
2022         * libnm-glib/nm-serial-device.[ch]: Implement.
2023
2024         * libnm-glib/nm-cdma-device.[ch]
2025           libnm-glib/nm-gsm-device.[ch]: Inherit from NMSerialDevice.
2026
2027         * libnm-glib/Makefile.am: Add nm-serial-device.[ch].
2028
2029         * introspection/nm-device-serial.xml: Implement.
2030
2031         * introspection/all.xml: Fix a couple of typos, add nm-device-serial.xml.
2032
2033         * introspection/Makefile.am: Add nm-device-serial.xml.
2034
2035         * include/NetworkManager.h: Add a DBus interface for serial device.
2036
2037 2008-06-10  Dan Williams  <dcbw@redhat.com>
2038
2039         * configure.in
2040                 - Add TARGET_* define to config.h to distinguish distros
2041
2042         * src/dhcp-manager/nm-dhcp-manager.c
2043                 - (dhclient_run): use distro-specific path for dhclient config file
2044
2045 2008-06-09  Dan Williams  <dcbw@redhat.com>
2046
2047         * src/dnsmasq-manager/nm-dnsmasq-manager.c
2048           src/dnsmasq-manager/nm-dnsmasq-manager.h
2049                 - (create_dm_cmd_line): use the IP4 address of the ip4-config to
2050                         calculate the addresses passed to dnsmasq instead of hard-coding
2051                         them
2052
2053         * src/nm-device.c
2054                 - (nm_device_new_ip4_shared_config): be somewhat dynamic when choosing
2055                         IP addresses for shared connections to guard against shared
2056                         connection address collisions
2057                 - (real_act_stage4_get_ip4_config): handle possible NULL ip4-configs on
2058                         error conditions
2059                 - (nm_device_activate_stage5_ip_config_commit): pass ip4-config to
2060                         the dnsmasq manager
2061
2062 2008-06-09  Dan Williams  <dcbw@redhat.com>
2063
2064         * src/NetworkManagerPolicy.c
2065                 - (update_routing_and_dns): set the default connection _after_ unsetting
2066                         default on all non-default connections so that two connections can
2067                         never be default at the same time
2068                 - (device_state_changed): start and stop connection sharing when
2069                         needed
2070                 - (active_connection_default_changed): restart or stop sharing when
2071                         the default connection changes to keep shared connections always
2072                         NAT-ed through the default connection
2073                 - (check_sharing): handle activation/deactivation of shared connections
2074                 - (sharing_restart): atom-bomb approach to connection sharing until we
2075                         can use libnl; reinit all sharing when the default connection or
2076                         shared connections change
2077                 - (sharing_init, sharing_stop): evil functions that init and deinit
2078                         iptables
2079
2080 2008-06-09  Dan Williams  <dcbw@redhat.com>
2081
2082         * src/nm-activation-request.c
2083           src/nm-activation-request.h
2084                 - (nm_act_request_set_shared, nm_act_request_get_shared,
2085                    nm_act_request_get_device): new functions to facilitate connection
2086                         sharing
2087
2088 2008-06-09  Dan Williams  <dcbw@redhat.com>
2089
2090         * src/nm-device.c
2091                 - (clear_act_request): unset the 'default' property of the activation
2092                         request when clearing it to ensure the property changed signal gets
2093                         delivered and handled
2094
2095 2008-06-09  Dan Williams  <dcbw@redhat.com>
2096
2097         * libnm-glib/nm-device-802-11-wireless.c
2098                 - (access_point_removed_proxy): actually unref the AP after removing
2099                         it from the device's AP list.  Fixes refcounting bug for APs that
2100                         caused them to get mixed up in the applet's menu.
2101
2102 2008-06-09  Tambet Ingo  <tambet@gmail.com>
2103
2104         * src/dhcp-manager/nm-dhcp-manager.c (finalize): Free private members.
2105         (nm_dhcp_device_destroy): Destroy the device options hash table.
2106
2107 2008-06-06  Dan Williams <dcbw@redhat.com>
2108
2109         * system-settings/src/nm-polkit-helpers.c
2110                 - (create_polkit_context): in PolicyKit 0.6, polkit_context_init() will
2111                         unref the context if the initialization fails; also avoid spew when
2112                         the error isn't set
2113
2114 2008-06-06  Dan Williams <dcbw@redhat.com>
2115
2116         Patch from Tambet Ingo  <tambet@gmail.com>
2117
2118         * src/NetworkManagerSystem.c
2119           src/NetworkManagerSystem.h
2120                 - (nm_system_device_add_ip4_route_via_device_with_iface): remove
2121                 - (nm_system_device_set_from_ip4_config): remove unused route_to_iface
2122                 - (nm_system_device_set_ip4_route): clean up
2123                 - (nm_system_vpn_device_set_from_ip4_config): clean up, add VPN routes
2124
2125         * src/nm-device.c
2126                 - (nm_device_set_ip4_config): remove unused route_to_iface bits
2127
2128         * src/vpn-manager/nm-vpn-connection.c
2129                 - (ip_address_to_string): new function
2130                 - (print_vpn_config): use ip_address_to_string
2131                 - (merge_vpn_routes): add user-defined routes to the ip4 config
2132                 - (nm_vpn_connection_ip4_config_get): add routes the VPN server sent
2133
2134         * include/NetworkManagerVPN.h
2135                 - Add 'routes' key
2136
2137 2008-06-05  Dan Williams <dcbw@redhat.com>
2138
2139         Patch from Markus Becker <mab@comnets.uni-bremen.de>
2140
2141         * test/nm-tool.c
2142                 - Show which device is the default device
2143
2144 2008-06-05  Tambet Ingo  <tambet@gmail.com>
2145
2146         Fix memory leaks.
2147
2148         * system-settings/src/nm-system-config-hal-manager.c (get_type_for_udi):
2149         Free data returned from dbus method call.
2150
2151         * system-settings/src/nm-polkit-helpers.c (check_polkit_privileges):
2152         dbus_g_method_get_sender() returns a duplicated string, free it 
2153         when done.
2154         (check_polkit_privileges): Looks like policykit sometimes returns
2155         error and non-null return value, don't leak errors in that case.
2156
2157         * system-settings/src/main.c (find_plugin): Don't leak existing 
2158         plugin names.
2159         (load_stuff): Don't leak device list and list items.
2160         (have_connection_for_device): Don't leak connection list.
2161
2162         * system-settings/plugins/keyfile/reader.c (read_one_setting_value):
2163         Free the data received from g_keyfile_get_*.
2164
2165         * system-settings/plugins/ifcfg-suse/parser.c (READ_WEP_KEY): Free
2166         the key when the security object is updated.
2167
2168         * src/supplicant-manager/nm-supplicant-interface.c (scan_results_cb):
2169         Free data returned from dbus method call.
2170         (iface_state_cb): Ditto.
2171         (add_network_cb): Ditto.
2172         (nm_supplicant_interface_add_cb): Don't make another copy of already
2173         duplicated object path.
2174         (nm_supplicant_interface_add_to_supplicant): Free the driver GValue
2175         when done.
2176
2177         * src/supplicant-manager/nm-supplicant-config.c 
2178         (ADD_STRING_LIST_VAL): Fix a memory leak.
2179
2180         * src/nm-manager.c (free_get_settings_info): Free the allocated
2181         memory slice.
2182         (list_connections_cb): Free data returned from dbus method call.
2183         (system_settings_get_unmanaged_devices_cb): Ditto.
2184
2185         * src/nm-device-802-11-wireless.c (device_cleanup): Free ssid.
2186
2187         * system-settings/plugins/ifcfg-suse/shvar.c (svCloseFile): 
2188         * system-settings/plugins/ifcfg-fedora/shvar.c (svCloseFile): 
2189         * src/backends/shvar.c (svCloseFile): Free the duplicated content
2190         of the GList.
2191
2192         * libnm-util/nm-setting.c (nm_setting_from_hash): Free the constructor
2193         arguments after the object is created.
2194
2195 2008-06-04  Dan Williams <dcbw@redhat.com>
2196
2197         * libnm-util/Makefile.am
2198                 - Don't distribute nm-param-spec-specialized.h
2199
2200 2008-06-02  Tambet Ingo  <tambet@gmail.com>
2201
2202         * libnm-util/nm-setting-ip4-config.[ch]: Add static routes property.
2203
2204         * src/nm-ip4-config.[ch]: Store the static routes as a list of
2205         NMIP4Address, update the getters and setters.
2206
2207         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get_ip4_config):
2208         Use the updated NMIP4Config routes api.
2209
2210         * src/NetworkManagerUtils.c (nm_utils_merge_ip4_config): Merge
2211         static routes as well.
2212
2213         * src/NetworkManagerSystem.c (netmask_to_prefix): Implement.
2214         (nm_system_device_set_from_ip4_config): Use the updated NMIP4Config
2215         routes api.
2216
2217 2008-05-30  Dan Williams <dcbw@redhat.com>
2218
2219         * src/named-manager/nm-named-manager.c
2220           src/named-manager/nm-named-manager.h
2221                 - Remove stale/obsolete bits for controlling bind over DBus
2222
2223 2008-05-29  Dan Williams <dcbw@redhat.com>
2224
2225         * src/dnsmasq-manager/nm-dnsmasq-manager.c
2226           src/dnsmasq-manager/nm-dnsmasq-manager.h
2227                 - (nm_dnsmasq_manager_new): move iface argument here
2228                 - (constructor): remove, not needed
2229                 - (get_pidfile_for_iface, create_dm_cmd_line, kill_existing_for_iface,
2230                    nm_dnsmasq_manager_start, nm_dnsmasq_manager_stop): use priv->pidfile
2231
2232         * src/nm-device.c
2233                 - (real_act_stage4_get_ip4_config,
2234                    nm_device_activate_stage5_ip_config_commit): fix for dnsmasq manager
2235                         changes
2236
2237 2008-05-29  Dan Williams <dcbw@redhat.com>
2238
2239         * src/nm-device.c
2240                 - (dnsmasq_state_changed_cb): new function; fail the connection if
2241                         something happens to dnsmasq
2242                 - (nm_device_new_ip4_shared_config): new function; create a new
2243                         ip4-config for shared connections.  Shared connections always use a
2244                         fixed static IP address.
2245                 - (real_act_stage4_get_ip4_config): handle shared connections; fix
2246                         autoip connections by actually using the returned ip4-config and
2247                         not leaking it
2248                 - (nm_device_activate_stage5_ip_config_commit): start dnsmasq for shared
2249                         connections
2250                 - (nm_device_deactivate_quickly, nm_device_dispose): terminate dnsmasq
2251                         if its active
2252
2253 2008-05-29  Dan Williams <dcbw@redhat.com>
2254
2255         * src/nm-device-802-11-wireless.c
2256                 - (real_get_best_auto_connection): auto-activate 'shared' method
2257                         connections too
2258
2259 2008-05-29  Dan Williams <dcbw@redhat.com>
2260
2261         * libnm-util/nm-setting-ip4-config.c
2262           libnm-util/nm-setting-ip4-config.h
2263                 - Add a 'shared' method to indicate that this connection should be
2264                         brought up with a DHCP and proxy DNS server to facilitate
2265                         connection sharing.
2266                 - (verify): 'shared' method doesn't allow DNS or searches either
2267
2268 2008-05-29  Dan Williams <dcbw@redhat.com>
2269
2270         * configure.in
2271           src/Makefile.am
2272           src/dnsmasq-manager/Makefile.am
2273           src/dnsmasq-manager/nm-dnsmasq-manager.c
2274           src/dnsmasq-manager/nm-dnsmasq-manager.h
2275                 - Add a dnsmasq daemon manager to facilitate connection sharing
2276
2277 2008-05-29  Dan Williams <dcbw@redhat.com>
2278
2279         * src/nm-device-private.h
2280                 - Remove unused prototypes and clean up
2281
2282         * src/nm-device.c
2283                 - Remove anything related to system_config_data, which is no longer used
2284                 - (nm_device_new_ip4_autoip_config): make static
2285
2286 2008-05-29  Tambet Ingo  <tambet@gmail.com>
2287
2288         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c
2289         (file_changed): Fix a bug where suse system settings plugin didn't
2290         update the connections automatically when the files changed.
2291
2292 2008-05-28  Dan Williams  <dcbw@redhat.com>
2293
2294         Revert r3697 (adhoc-create property patch); it's the wrong way to do this.
2295
2296 2008-05-28  Dan Williams  <dcbw@redhat.com>
2297
2298         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2299
2300         * src/NetworkManagerSystem.c
2301                 - (nm_system_device_flush_ip4_routes_with_iface): implement with libnl
2302                 - (nm_system_vpn_device_set_from_ip4_config): don't flush routes here,
2303                         was causing -EINVAL errors since the libnl code actually does flush
2304                         the routes on VPN interfaces now
2305
2306         * src/backends/NetworkManagerArch.c
2307           src/backends/NetworkManagerDebian.c
2308           src/backends/NetworkManagerFrugalware.c
2309           src/backends/NetworkManagerGeneric.c
2310           src/backends/NetworkManagerGentoo.c
2311           src/backends/NetworkManagerMandriva.c
2312           src/backends/NetworkManagerPaldo.c
2313           src/backends/NetworkManagerRedHat.c
2314           src/backends/NetworkManagerSlackware.c
2315           src/backends/NetworkManagerSuSE.c
2316                 - (nm_system_device_flush_ip4_routes,
2317                    nm_system_device_flush_ip4_routes_with_iface): remove
2318
2319 2008-05-28  Dan Williams  <dcbw@redhat.com>
2320
2321         * libnm-util/nm-setting-wireless.c
2322           libnm-util/nm-setting-wireless.h
2323                 - (set_property, get_property, nm_setting_wireless_class_init): add the
2324                         'adhoc-create' property, which when TRUE indicates that NM should
2325                         create this connection as an adhoc wifi network if it's not found
2326                         as an adhoc network during scanning.  Can be used to auto-create
2327                         adhoc networks when used in combination with autoconnect.
2328
2329 2008-05-28  Tambet Ingo  <tambet@gmail.com>
2330
2331         Patch from Dennis Noordsij <dennis.noordsij@helsinki.fi>.
2332
2333         * src/nm-gsm-device.c: Don't try to reset the modem before PIN is
2334         checked, it doesn't work on some devices.
2335
2336 2008-05-28  Tambet Ingo  <tambet@gmail.com>
2337
2338         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_stop): Make sure 
2339         pppd gets killed, if SIGTERM doesn't do it's job, SIGKILL it.
2340
2341         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get_ip4_config):
2342         Use inet_aton() everywhere to improve error detection.
2343         Don't fall back to 'dhcp_server_identifier' if the gateway is not
2344         provided.
2345
2346 2008-05-26  Tambet Ingo  <tambet@gmail.com>
2347
2348         * system-settings/plugins/ifcfg-suse/plugin.c (get_unamanged_devices_cb):
2349         Fix a typo.
2350
2351 2008-05-26  Tambet Ingo  <tambet@gmail.com>
2352
2353         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_get_service): Fix a
2354         reference counting issue.
2355
2356 2008-05-23  Dan Williams  <dcbw@redhat.com>
2357
2358         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2359
2360         * src/backends/NetworkManagerGeneric.c
2361                 - (nm_generic_enable_loopback): use libnl
2362
2363 2008-05-23  Dan Williams  <dcbw@redhat.com>
2364
2365         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2366
2367         * src/NetworkManagerSystem.h
2368           src/backends/NetworkManagerArch.c
2369           src/backends/NetworkManagerDebian.c
2370           src/backends/NetworkManagerFrugalware.c
2371           src/backends/NetworkManagerGentoo.c
2372           src/backends/NetworkManagerMandriva.c
2373           src/backends/NetworkManagerPaldo.c
2374           src/backends/NetworkManagerRedHat.c
2375           src/backends/NetworkManagerSlackware.c
2376           src/backends/NetworkManagerSuSE.c
2377                 - (nm_system_device_has_active_routes, nm_system_flush_loopback_routes,
2378                    nm_system_flush_arp_cache): remove, unused
2379
2380         * src/backends/NetworkManagerGeneric.c
2381           src/backends/NetworkManagerGeneric.h
2382                 - (nm_generic_device_has_active_routes, nm_generic_flush_loopback_routes,
2383                    nm_generic_flush_arp_cache): remove, unused
2384
2385 2008-05-23  Dan Williams  <dcbw@redhat.com>
2386
2387         * system-settings/plugins/ifcfg-fedora/reader.c
2388                 - (make_ip4_setting): honor PEERDNS setting
2389
2390 2008-05-23  Dan Williams  <dcbw@redhat.com>
2391
2392         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
2393
2394         * src/NetworkManagerSystem.c
2395                 - (nm_system_device_flush_ip4_addresses_with_iface): implement with
2396                         libnl
2397
2398         * src/backends/NetworkManagerArch.c
2399           src/backends/NetworkManagerDebian.c
2400           src/backends/NetworkManagerFrugalware.c
2401           src/backends/NetworkManagerGentoo.c
2402           src/backends/NetworkManagerMandriva.c
2403           src/backends/NetworkManagerPaldo.c
2404           src/backends/NetworkManagerRedHat.c
2405           src/backends/NetworkManagerSlackware.c
2406           src/backends/NetworkManagerSuSE.c
2407                 - (nm_system_device_flush_ip4_addresses,
2408                    nm_system_device_flush_ip4_addresses_with_iface): remove
2409
2410         * src/backends/NetworkManagerGeneric.c
2411                 - (nm_generic_device_flush_ip4_addresses,
2412                    nm_generic_device_flush_ip4_addresses_with_iface): remove
2413
2414 2008-05-23  Dan Williams  <dcbw@redhat.com>
2415
2416         * src/supplicant-manager/nm-supplicant-settings-verify.c
2417                 - Switch 'bssid' from bytes to keyword type
2418                 - (validate_type_keyword): allow NULL keyword lists
2419
2420         * src/supplicant-manager/nm-supplicant-config.c
2421                 - (nm_supplicant_config_add_setting_wireless): convert the bssid from
2422                         a byte array to string form, which is what the supplicant expects
2423
2424 2008-05-23  Tambet Ingo  <tambet@gmail.com>
2425
2426         Add a flag to NMSettingIP4Config to make it possible to ignore the DNS
2427         information received from DHCP.
2428
2429         * libnm-util/nm-setting-ip4-config.c: Add a new membet "ignore_dhcp_dns"
2430         to make it possible to ignore the DNS information (both servers and 
2431         searches) returned by DHCP server.
2432
2433         * src/NetworkManagerUtils.c (nm_utils_merge_ip4_config): Reset the
2434         name servers and searches if "ignore_dhcp_dns" is set.
2435
2436         * src/nm-ip4-config.c (nm_ip4_config_reset_nameservers)
2437         (nm_ip4_config_reset_searches): Implement.
2438
2439 2008-05-22  Dan Williams  <dcbw@redhat.com>
2440
2441         Remove anything mDNS related.  This is better done from a distro-specific
2442         dispatcher script.  Plus, any distro using avahi doesn't need to restart
2443         avahi, since avahi can handle interface changes just fine using netlink.
2444
2445         * configure.in
2446                 - Remove --with-mdns-provider
2447
2448         * src/NetworkManagerPolicy.c
2449                 - (global_state_changed): don't restart the mdns provider
2450
2451         * src/NetworkManagerSystem.h
2452           src/backends/NetworkManagerArch.c
2453           src/backends/NetworkManagerDebian.c
2454           src/backends/NetworkManagerFrugalware.c
2455           src/backends/NetworkManagerGentoo.c
2456           src/backends/NetworkManagerMandriva.c
2457           src/backends/NetworkManagerPaldo.c
2458           src/backends/NetworkManagerRedHat.c
2459           src/backends/NetworkManagerSlackware.c
2460           src/backends/NetworkManagerSuSE.c
2461                 - (nm_system_restart_mdns_responder): remove
2462
2463         * src/backends/NetworkManagerGeneric.c
2464           src/backends/NetworkManagerGeneric.h
2465                 - (nm_generic_restart_mdns_responder): remove
2466
2467 2008-05-22  Dan Williams  <dcbw@redhat.com>
2468
2469         * configure.in
2470                 - clean up crypto options; just use --with-crypto=nss or
2471                         --with-crypto=gnutls
2472
2473 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2474
2475         * src/nm-manager.c (impl_manager_sleep): No need to schedule the sync
2476         anymore, do it right away.
2477
2478 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2479
2480         * src/nm-gsm-device.c (device_state_changed): Make sure we don't leave the
2481         serial device open when we're not connecting or connected.
2482
2483         * src/nm-cdma-device.c (device_state_changed): Ditto.
2484
2485 2008-05-22  Tambet Ingo  <tambet@gmail.com>
2486
2487         Don't remove all devices on waking up, sync with HAL.
2488
2489         * src/nm-manager.c (nm_manager_udi_is_managed): Implement.
2490         (sync_devices): Implement, based on hal_manager_hal_reappeared_cb.
2491         (hal_manager_hal_reappeared_cb): Just call sync_devices.
2492
2493 2008-05-21  Tambet Ingo  <tambet@gmail.com>
2494
2495         * src/NetworkManagerSystem.c (nm_system_device_replace_default_ip4_route):
2496         If the default gateway is unreachable, add a route to gateway and try
2497         again.
2498
2499 2008-05-20  Dan Williams  <dcbw@redhat.com>
2500
2501         * system-settings/plugins/ifcfg-fedora/reader.c
2502                 - (add_one_wep_key): handle ASCII WEP keys too (rh #293111)
2503
2504 2008-05-19  Dan Williams  <dcbw@redhat.com>
2505
2506         * system-settings/plugins/ifcfg-fedora/reader.c
2507                 - (make_ip4_setting): get a fallback gateway from /etc/sysconfig/network
2508                         if the ifcfg doesn't specify one (rh #446527)
2509
2510 2008-05-19  Dan Williams  <dcbw@redhat.com>
2511
2512         Make the system settings service exit when the bus goes away.  Since it's
2513         a bus-activated service, it's lifetime is limited to the bus that activated
2514         it (rh #444976).
2515
2516         * system-settings/src/Makefile.am
2517           system-settings/src/nm-system-config-hal-manager-private.h
2518                 - Remove nm-system-config-hal-manager-private.h
2519
2520         * system-settings/src/nm-system-config-hal-manager.c
2521                 - (nm_system_config_hal_manager_reinit_dbus,
2522                    nm_system_config_hal_manager_deinit_dbus): remove
2523
2524         * system-settings/src/main.c
2525                 - (dbus_reconnect): remove
2526                 - (dbus_cleanup): don't tell the HAL manager to deinit dbus
2527                 - (destroy_cb): just quit when the bus goes away
2528                 - (start_dbus_service, dbus_init): simplify
2529                 - (main): destroy the wired devices hash table after destroying
2530                         the HAL manager so we don't have to disconnect signals from the
2531                         HAL manager
2532
2533 2008-05-15  Tambet Ingo  <tambet@gmail.com>
2534
2535         Move crypto functions from nm-applet to libnm-util.
2536
2537         * libnm-util/nm-setting-8021x.c (nm_setting_802_1x_set_ca_cert)
2538         (nm_setting_802_1x_set_client_cert)
2539         (nm_setting_802_1x_set_phase2_ca_cert)
2540         (nm_setting_802_1x_set_phase2_client_cert)
2541         (nm_setting_802_1x_set_private_key)
2542         (nm_setting_802_1x_set_phase2_private_key): Implement. Given a certificate
2543         file (or private key and it's password), read the certificate data.
2544
2545         * libnm-util/crypto_nss.c: 
2546         * libnm-util/crypto_gnutls.c: 
2547         * libnm-util/crypto.[ch]: Move here from nm-applet.
2548
2549         * configure.in: Check for NSS and gnutls here (moved here from nm-applet).
2550
2551         * system-settings/plugins/ifcfg-suse/parser.c (read_wpa_eap_settings):
2552         Imlement WPA-EAP configuration reading from sysconfig.
2553
2554 2008-05-16  Dan Williams  <dcbw@redhat.com>
2555
2556         * src/nm-device-802-11-wireless.c
2557                 - (nm_device_802_11_wireless_set_enabled): request a scan after enabling
2558                         wireless
2559
2560 2008-05-14  Dan Williams  <dcbw@redhat.com>
2561
2562         Fix Linus' bug in rh #134886
2563
2564         * src/nm-device-802-3-ethernet.c
2565                 - (constructor): request initial carrier state
2566
2567         * src/nm-netlink-monitor.c
2568                 - (nm_netlink_monitor_request_status): schedule emission of carrier
2569                         signals after refilling the link cache.  Because the refill is a 
2570                         synchronous operation, the normal message hander won't get called
2571                         since libnl has already consumed the messages.
2572                 - (deferred_emit_carrier_state): emit carrier states from an idle handler
2573
2574 2008-05-14  Dan Williams  <dcbw@redhat.com>
2575
2576         * src/NetworkManagerSystem.c
2577                 - (nm_system_device_is_up_with_iface): clean up
2578
2579 2008-05-13  Dan Williams  <dcbw@redhat.com>
2580
2581         Fix refcounting issues over sleep/wake when a VPN connection was active that
2582         caused NM to try registering an object path for a device upon wake that was
2583         the same as an already registered object path.
2584
2585         * src/nm-device.c
2586                 - (nm_device_take_down): properly handle cases where the device is
2587                         no longer active but was just active, and therefore must be
2588                         deactivated.  When a device moves to unmanaged mode, this function
2589                         previously would not deactivate the device, because the state was
2590                         already unmanaged by the time this function was called.
2591
2592         * src/vpn-manager/nm-vpn-connection.c
2593                 - (device_state_changed): properly handle multiple devices states in
2594                         which the device is now deactivated.  Code previously didn't handle
2595                         transitions to the UNAVAILABLE (like rfkill or carrier off) and
2596                         UNMANAGED states.
2597
2598 2008-05-13  Dan Williams  <dcbw@redhat.com>
2599
2600         * src/nm-device-private.h
2601           src/nm-device.c
2602                 - (nm_device_hw_bring_up, nm_device_hw_take_down): export
2603
2604         * src/nm-device-802-11-wireless.c
2605                 - (nm_device_802_11_wireless_set_enabled): take devices up
2606                         and down as appropriate for the rfkill state
2607
2608 2008-05-13  Dan Williams  <dcbw@redhat.com>
2609
2610         * marshallers/nm-marshal.list
2611                 - Add VOID:POINTER,STRING marshaller for ifcfg-fedora plugin
2612
2613         * system-settings/plugins/ifcfg-fedora/Makefile.am
2614           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.c
2615           system-settings/plugins/ifcfg-fedora/nm-inotify-helper.h
2616                 - Implement a minimal inotify helper for watch paths for IN_CLOSE_WRITE
2617                         events.  Solely for use watching ifcfg files to pick up changes
2618                         to their hardlinks, since GIO doesn't support this yet (bgo #532815)
2619
2620         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
2621                 - (nm_ifcfg_connection_class_init): new 'ifcfg-changed' signal when the
2622                         file contents change
2623                 - (finalize): clean up inotify watches
2624                 - (nm_ifcfg_connection_new): store keyfile; inotify watch the keyfile
2625                         and the connection ifcfg for changes on their hardlinks
2626                 - (files_changed_cb): proxy the changed signal back out to listeners
2627
2628         * system-settings/plugins/ifcfg-fedora/plugin.c
2629                 - (dir_changed): 
2630                 - (connection_ifcfg_changed): re-read the connection when the ifcfg
2631                         changes
2632                 - (read_one_connection): connect to change signals on the new connection
2633                 - (dir_changed, connection_changed_handler,
2634                    handle_connection_remove_or_new): break out connection change
2635                         handling and connection new/remove handling so it can be used from
2636                         both the GFileMonitor callback and the NMIfcfgConnection changed
2637                         signals
2638
2639         * system-settings/plugins/ifcfg-fedora/reader.c
2640           system-settings/plugins/ifcfg-fedora/reader.h
2641                 - (connection_from_file): return the keyfile path the connection would use
2642
2643 2008-05-13  Tambet Ingo  <tambet@gmail.com>
2644
2645         * system-settings/src/nm-polkit-helpers.c (create_polkit_context): Use a 
2646         single PolKitContext which is shared by all. PolKitContext::unref leaks
2647         just about everything, including all open file descriptiors and results
2648         in 99% cpu usage when data arrives to any of the fds that don't belong
2649         to any context anymore.
2650
2651 2008-05-12  Dan Williams  <dcbw@redhat.com>
2652
2653         * gfilemonitor/glocaldirectorymonitor.c
2654           gfilemonitor/glocaldirectorymonitor.h
2655                 - (g_local_directory_monitor_constructor): actually subscribe to the
2656                         watch
2657                 - (_g_local_directory_monitor_new): ensure that inotify is started up
2658
2659         * gfilemonitor/glocalfilemonitor.c
2660           gfilemonitor/glocalfilemonitor.h
2661                 - (g_local_file_monitor_constructor): actually subscribe to the watch
2662                 - (_g_local_file_monitor_new): ensure that inotify is started up
2663
2664 2008-05-11  Dan Williams  <dcbw@redhat.com>
2665
2666         * configure.in
2667                 - record PolicyKit version
2668
2669         * system-settings/src/nm-polkit-helpers.c
2670                 - (check_polkit_privileges): use polkit_context_can_caller_do_action()
2671                         with PolicyKit <= 0.6
2672
2673 2008-05-11  Dan Williams  <dcbw@redhat.com>
2674
2675         Update Fedora system-settings plugin to support latest API and use
2676         GFileMonitor rather than home-rolled inotify code.
2677
2678         * system-settings/plugins/ifcfg-fedora/Makefile.am
2679           system-settings/plugins/ifcfg-fedora/common.h
2680           system-settings/plugins/ifcfg-fedora/plugin.c
2681                 - Update to latest system settings plugin API; use GIO instead of
2682                         custom inotify code; use NMIfcfgConnection objects instead of
2683                         ConnectionData structures tacked onto NMConnection objects
2684
2685         * system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.c
2686           system-settings/plugins/ifcfg-fedora/nm-ifcfg-connection.h
2687                 - Implement an NMExportedConnection subclass mapping ifcfg files to
2688                         connections
2689
2690         * system-settings/plugins/ifcfg-fedora/reader.c
2691           system-settings/plugins/ifcfg-fedora/reader.h
2692                 - Move ifcfg parsing bits here from parser.c
2693
2694         * system-settings/plugins/ifcfg-fedora/parser.c
2695           system-settings/plugins/ifcfg-fedora/parser.h
2696                 - Remove; most code moved to reader.c
2697
2698 2008-05-11  Dan Williams  <dcbw@redhat.com>
2699
2700         * configure.in
2701           Makefile.am
2702           gfilemonitor/*
2703                 - Add a private copy of the GIO GFileMonitor code, with a custom GFile
2704                         implementation, so that the same change monitoring code can be used
2705                         on systems without glib-2.14 (like Fedora 8)
2706
2707         * system-settings/plugins/keyfile/Makefile.am
2708           system-settings/plugins/keyfile/plugin.c
2709           system-settings/plugins/ifcfg-suse/Makefile.am
2710           system-settings/plugins/ifcfg-suse/plugin.c
2711                 - Use private gfilemonitor code if GIO is not present
2712
2713 2008-05-09  Tambet Ingo  <tambet@gmail.com>
2714
2715         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c: Implement
2716         NMExportedConnection's 'update' and 'delete' and return error with
2717         descriptive message.
2718
2719 2008-05-08  Dan Williams  <dcbw@redhat.com>
2720
2721         Patch from Markus Becker <mab@comnets.uni-bremen.de>
2722
2723         * src/nm-gsm-device.c
2724           src/nm-cdma-device.c
2725                 - (real_get_best_auto_connection): implement; allow autoconnection
2726                         to GSM & CDMA devices
2727
2728 2008-05-08  Tambet Ingo  <tambet@gmail.com>
2729
2730         Use PolicyKit to authorize the system settings' AddConnection method
2731         and the system settings connections' Update and Delete methods.
2732         
2733         * libnm-glib/nm-settings.c (impl_exported_connection_update)
2734         (impl_exported_connection_delete, nm_exported_connection_update)
2735         (nm_exported_connection_delete): Return boolean and fill GError
2736         to notify the callers of the reasons why it might have failed.
2737
2738         * libnm-glib/nm-dbus-settings-system.c
2739         (nm_dbus_settings_system_add_connection): Return the error from dbus
2740         call so that the callers can see why it failed.
2741
2742         * libnm-glib/nm-dbus-connection.c (update, delete): Update the 
2743         signatures.
2744
2745         * system-settings/src/nm-polkit-helpers.[ch]: Implement.
2746
2747         * system-settings/src/nm-sysconfig-connection.[ch]: Implement. New
2748         abstract base class that checks PolicyKit permissions.
2749
2750         * system-settings/src/dbus-settings.c:
2751         (impl_settings_add_connection): Check the policy before carring out
2752         the request.
2753
2754         * system-settings/plugins/keyfile/nm-keyfile-connection.c:
2755         Inherit from NMSysconfigConnection, check the policies before
2756         allowing updating or removing.
2757
2758         * system-settings/plugins/ifcfg-suse/nm-suse-connection.c:
2759         Inherit from NMSysconfigConnection.
2760
2761         * introspection/nm-exported-connection.xml: Annotate "Update" and 
2762         "Delete" methods with async flag so that the implementations can get
2763         access to DBusGMethodInvocation.
2764
2765         * system-settings/src/dbus-settings.c 
2766         (settings_add_connection_check_privileges): Implement.
2767         (impl_settings_add_connection): Check the privileges before adding a new
2768         connection. Improve error reporting.
2769
2770         * introspection/nm-settings-system.xml: Make the 'AddConnection' method
2771         async so that the implementation can access DBusGMethodInvocation.
2772
2773         * configure.in: Check for PolicyKit.
2774
2775         * policy/org.freedesktop.network-manager-settings.system.policy: 
2776         New file.
2777
2778         * policy/Makefile.am: Install the policy file.
2779
2780         * configure.in: Add 'policy' subdir.
2781
2782 2008-05-08  Tambet Ingo  <tambet@gmail.com>
2783
2784         Rewrite the suse system settings plugin.
2785
2786         * system-settings/plugins/ifcfg-suse/plugin.c: Rewrite.
2787
2788         * system-settings/plugins/ifcfg-suse/parser.c: Rewrite.
2789
2790         * system-settings/plugins/ifcfg-suse/nm-suse-connection.[ch]: Implement.
2791
2792         * system-settings/plugins/ifcfg-suse/Makefile.am: Add new files to build.
2793
2794         * system-settings/src/dbus-settings.c: Fix connection reference counting.
2795
2796         * system-settings/src/main.c (load_plugins): Improve error reporting.
2797
2798         * system-settings/src/sha1.[ch] Add.
2799
2800         * system-settings/src/Makefile.am: Add sha1[ch] to build.
2801
2802 2008-05-07  Dan Williams  <dcbw@redhat.com>
2803
2804         * system-settings/plugins/keyfile/reader.c
2805                 - (read_one_setting_value): handle IP address items separately
2806                 - (read_array_of_uint): read IPv4 DNS option as a string array
2807                 - (read_array_of_array_of_uint): read IPv4 address tuples as a string
2808                         array
2809
2810         * system-settings/plugins/keyfile/writer.c
2811                 - (write_setting_value): handle IP address items separately
2812                 - (write_array_of_uint): handle IPv4 DNS option as a string array,
2813                         not an array of uint, so that it's user-editable
2814                 - (write_array_of_array_of_uint): handle IPv4 address tuples as string
2815                         arrays, so they are user-editable
2816
2817 2008-05-07  Dan Williams  <dcbw@redhat.com>
2818
2819         * system-settings/plugins/keyfile/Makefile.am
2820                 - Change location of the keyfile plugin settings to
2821                         /etc/NetworkManager/system-connections
2822
2823 2008-05-05  Tambet Ingo  <tambet@gmail.com>
2824
2825         * system-settings/plugins/keyfile/nm-keyfile-connection.[ch]: Implement.
2826
2827         * system-settings/plugins/keyfile/plugin.c: Work with
2828         NMKeyfileConnections.
2829
2830         * system-settings/src/dbus-settings.c: Remove NMSysconfigExportedConnection.
2831         Plugins are supposed to return NMExportedConnections now and handle the
2832         updated(), removed(), and GetSecrets().
2833         Store the internal list of connections in hash table to make it easier
2834         to find duplicates.
2835
2836 2008-05-07  Tambet Ingo  <tambet@gmail.com>
2837
2838         * src/backends/NetworkManagerSuSE.c (nm_system_set_hostname): Update
2839         for multiple IP addresses.
2840
2841 2008-05-07  Tambet Ingo  <tambet@gmail.com>
2842
2843         Patch from André Lemos.
2844
2845         * libnm-glib/nm-dbus-settings.c (fetch_connections_done): Fix a memory
2846         corruption.
2847
2848 2008-05-06  Dan Williams  <dcbw@redhat.com>
2849
2850         * src/dhcp-manager/nm-dhcp-manager.c
2851                 - (nm_dhcp_manager_get_ip4_config): clean up; update for changes to
2852                         NMIP4Config to support multiple IP addresses
2853
2854         * src/NetworkManagerUtils.c
2855                 - (nm_utils_merge_ip4_config): update for multiple IP addresses
2856
2857         * src/nm-ip4-config.c
2858           src/nm-ip4-config.h
2859                 - Store a list of IPv4 address/netmask/gateway tuples
2860                 - (nm_ip4_config_get_gateway, nm_ip4_config_set_gateway,
2861                    nm_ip4_config_get_netmask, nm_ip4_config_set_netmask,
2862                    nm_ip4_config_get_broadcast, nm_ip4_config_set_broadcast,
2863                    nm_ip4_config_set_address): remove
2864                 - (nm_ip4_config_take_address, nm_ip4_config_add_address,
2865                    nm_ip4_config_replace_address, nm_ip4_config_get_num_addresses):
2866                         new functions; handle multiple IPv4 addresses
2867
2868         * src/nm-device.c
2869           src/ppp-manager/nm-ppp-manager.c
2870           src/vpn-manager/nm-vpn-connection.c
2871           src/NetworkManagerPolicy.c
2872           test/nm-tool.c
2873           libnm-glib/libnm-glib-test.c
2874                 - update for changes to NMIP4Config for multiple IPv4 addresses
2875
2876         * src/NetworkManagerSystem.c
2877                 - (nm_system_device_set_ip4_route): don't add the route if any address
2878                         is on the same subnet as the destination
2879                 - (check_one_address): ignore the exact match, just match family and
2880                         interface index
2881                 - (add_ip4_addresses): add all IPv4 addresses in an NMIP4Config to
2882                         an interface
2883                 - (nm_system_device_set_from_ip4_config): use add_ip4_addresses()
2884                 - (nm_system_vpn_device_set_from_ip4_config): use add_ip4_addresses()
2885
2886         * introspection/nm-ip4-config.xml
2887                 - Remove 'address', 'gateway', 'netmask', and 'broadcast' properties
2888                 - Add 'addresses' property which is an array of (uuu) tuples of
2889                         address/netmask/gateway
2890
2891         * libnm-util/nm-setting-ip4-config.c
2892                 - (set_property): use ip-address <-> GValue converters from nm-utils.c
2893
2894         * libnm-glib/nm-ip4-config.c
2895           libnm-glib/nm-ip4-config.h
2896                 - Handle D-Bus interface changes to support multiple IP addresses
2897
2898 2008-05-06  Dan Williams  <dcbw@redhat.com>
2899
2900         * libnm-util/nm-utils.c
2901           libnm-util/nm-utils.h
2902                 - (nm_utils_ip4_addresses_from_gvalue,
2903                    nm_utils_ip4_addresses_to_gvalue): new functions
2904
2905 2008-05-06  Tambet Ingo  <tambet@gmail.com>
2906
2907         * libnm-glib/nm-dbus-settings.c (fetch_connections_done): Don't leak
2908         the returned connection paths.
2909
2910 2008-05-05  Tambet Ingo  <tambet@gmail.com>
2911
2912         * libnm-glib/nm-dbus-settings.c (constructor): Fix the 
2913         "PropertiesChanged" signal signature.
2914
2915         * libnm-glib/nm-dbus-connection.c (constructor): Use the common GType
2916         defined in nm-dbus-glib-types.h.
2917         Don't register the connection on dbus, we're a proxy class to 
2918         communicate with an already registered connection over dbus.
2919
2920 2008-04-30  Tambet Ingo  <tambet@gmail.com>
2921
2922         Implement new subclasses of NMSettings and NMExportedConnection to make
2923         it easier for the applet to access and modify system settings.
2924
2925         * libnm-glib/nm-dbus-connection.[ch]:
2926         * libnm-glib/nm-dbus-settings.[ch]:
2927         * libnm-glib/nm-dbus-settings-system.[ch]: Implement.
2928
2929         * libnm-glib/Makefile.am: Add the new files to build, generate some more
2930         bindings and glue.
2931
2932         * include/NetworkManager.h: Define the system settings DBus interface.
2933
2934 2008-04-30  Tambet Ingo  <tambet@gmail.com>
2935
2936         Implement additional C API for exported connections to make them identical
2937         with the DBus API. Change the (list_connections) virtual function to be
2938         more usable from C - instead of requiring implementers to return a GPtrArray
2939         of dbus paths, return a list of connections.
2940
2941         * libnm-glib/nm-settings.c (nm_exported_connection_class_init): Fix a typo.
2942         (nm_settings_list_connections):
2943         (nm_exported_connection_new):
2944         (nm_exported_connection_update):
2945         (nm_exported_connection_delete): Implement.
2946
2947         (impl_settings_list_connections):
2948         (impl_exported_connection_update):
2949         (impl_exported_connection_delete): Use the new public functions to make 
2950         sure the C and dbus interfaces stay in sync.
2951
2952         * system-settings/src/dbus-settings.c (list_connections): Return a list of
2953         connections.
2954
2955 2008-05-02  Dan Williams  <dcbw@redhat.com>
2956
2957         * system-settings/plugins/ifcfg-fedora/plugin.c
2958                 - (dispose): use right unref call on the DBusGConnection
2959
2960 2008-05-02  Dan Williams  <dcbw@redhat.com>
2961
2962         * src/nm-serial-device.c
2963                 - (find_terminator): don't compare the whole line, just the size of the
2964                         terminator, since some modems put stuff after the terminator, like
2965                         "CONNECT 9600"
2966
2967 2008-05-01  Dan Williams  <dcbw@redhat.com>
2968
2969         Patch from Michael Biebl <biebl@debian.org>
2970
2971         * callouts/Makefile.am
2972           callouts/org.freedesktop.nm_dispatcher.service.in
2973           system-settings/src/Makefile.am
2974           system-settings/src/org.freedesktop.NetworkManagerSystemSettings.service.in
2975                 - use the right install location for dbus-activated stuff
2976
2977 2008-04-30  Dan Williams  <dcbw@redhat.com>
2978
2979         * src/nm-gsm-device.c
2980                 - (enter_pin): fix setting name passed to applets when asking for a GSM
2981                         PIN or PUK
2982
2983 2008-04-30  Dan Williams  <dcbw@redhat.com>
2984
2985         * src/nm-manager.c
2986                 - (nm_manager_error_get_type): remove erroneous NULL enum from table
2987
2988 2008-04-30  Dan Williams  <dcbw@redhat.com>
2989
2990         * src/nm-device-802-3-ethernet.c
2991           src/nm-device-802-11-wireless.c
2992                 - (real_is_up): return true instead of chaining up to unimplemented
2993                         parent method
2994
2995 2008-04-30  Dan Williams  <dcbw@redhat.com>
2996
2997         * src/NetworkManagerSystem.c
2998           src/NetworkManagerSystem.h
2999                 - (nm_system_device_is_up, nm_system_device_is_up_with_iface): new
3000                         functions to check device flags for IFF_UP
3001
3002         * src/nm-serial-device.c
3003                 - (real_is_up): remove; NMDevice now returns TRUE if the subclass doesn't
3004                         implement is_up
3005
3006         * src/nm-device-802-3-ethernet.c
3007           src/nm-device-802-11-wireless.c
3008                 - (real_hw_is_up): call nm_system_device_is_up()
3009
3010         * src/nm-device.c
3011                 - (real_hw_is_up): move to nm_system_device_is_up_with_iface()
3012                 - (real_is_up): remove; nm_device_is_up() returns TRUE if subclass
3013                         does not implement
3014
3015 2008-04-29  Dan Williams  <dcbw@redhat.com>
3016
3017         Handle HAL dropouts better; allow NM to start up even if HAL isn't up yet.
3018
3019         * marshallers/nm-marshal.list
3020                 - Add marshaller
3021
3022         * src/NetworkManager.c
3023                 - (main): let the NMManager handle the NMHalManager
3024
3025         * src/nm-hal-manager.c
3026           src/nm-hal-manager.h
3027                 - convert to a GObject, and emit singals when stuff changes.  Let the
3028                         NMManager handle the signals, instead of the NMHalManager calling
3029                         into the NMManager.  
3030
3031         * src/nm-manager.c
3032           src/nm-manager.h
3033                 - (remove_one_device): consolidate device removals here
3034                 - (dispose): use remove_one_device()
3035                 - (nm_manager_get_device_by_udi): make static
3036                 - (deferred_hal_manager_query_devices): idle handler to query the HAL
3037                         manager for devices at startup or wakeup time
3038                 - (nm_manager_new): create and monitor the HAL manager
3039                 - (hal_manager_udi_added_cb): new function; do what
3040                         nm_manager_add_device() used to do when signalled by the hal manager
3041                 - (hal_manager_udi_removed_cb): new function; do what
3042                         nm_manager_remove_device() used to do when signalled by the hal
3043                         manager
3044                 - (hal_manager_rfkill_changed_cb): handle rfkill changes from the
3045                         hal manager
3046                 - (hal_manager_hal_reappeared_cb): when HAL comes back, remove devices
3047                         in our device list that aren't known to HAL
3048                 - (impl_manager_sleep): on wakeup, re-add devices from an idle handler;
3049                         see comments on nm-hal-manager.c::nm_manager_state_changed() a few
3050                         commits ago
3051                 - (nm_manager_get_device_by_path, nm_manager_is_udi_managed,
3052                    nm_manager_activation_pending, nm_manager_wireless_enabled,
3053                    nm_manager_wireless_hardware_enabled,
3054                    nm_manager_set_wireless_hardware_enabled): remove, unused
3055
3056 2008-04-28  Dan Williams  <dcbw@redhat.com>
3057
3058         Fix the device up/down ambiguities.  Up/down state used to be a
3059         conglomeration of hardware state (IFF_UP) and any device-specific things
3060         (supplicant, periodic timers, etc) that the device used to indicate
3061         readiness.  Unfortunately, if the hardware was already IFF_UP for some
3062         reason, then the device specific stuff wouldn't get run, and the device
3063         would be stuck.
3064
3065         * src/nm-device.c
3066           src/nm-device.h
3067                 - Create hw_is_up, hw_bring_up, and hw_take_down
3068                 - Rename bring_down -> take_down
3069                 - (real_hw_is_up): check interface flags for IFF_UP
3070                 - (nm_device_hw_is_up): let subclasses figure out their own HW state
3071                 - (nm_device_is_up): make static; only used locally
3072                 - (nm_device_hw_bring_up): update the hardware and IPv4 addresses even
3073                         if the device is already up; if the device isn't up, bring it up
3074                 - (nm_device_hw_take_down): just take down hardware
3075                 - (nm_device_bring_up): bring up HW first, then device specific stuff
3076                 - (nm_device_take_down): always deactivate device when called; always
3077                         try to take hardware down too
3078                 - (nm_device_state_changed): take device down when entering unmanaged
3079                         state from a higher state
3080
3081         * src/nm-device-802-11-wireless.c
3082                 - (real_hw_is_up, real_hw_bring_up, real_hw_take_down): implement; just
3083                         check IFF_UP really
3084                 - (real_take_down, supplicant_iface_state_cb_handler, 
3085                    supplicant_iface_connection_state_cb_handler,
3086                    supplicant_mgr_state_cb_handler): fix some messages
3087
3088         * src/nm-device-802-3-ethernet.c
3089                 - (real_hw_is_up, real_hw_bring_up, real_hw_take_down): implement; just
3090                         check IFF_UP really
3091
3092 2008-04-28  Dan Williams  <dcbw@redhat.com>
3093
3094         * src/nm-manager.c
3095           src/nm-manager.h
3096                 - (nm_manager_error_get_type): add new error
3097                 - (nm_manager_remove_device): don't bother taking down the device here,
3098                         the state change from unmanaging the device will do it
3099                 - (impl_manager_sleep): move nm_manager_sleep() here since nothing else
3100                         uses it; when going to sleep, just unmanage the device instead of
3101                         taking it down, because stuff will cleaned up correctly when the
3102                         device gets unmanaged
3103
3104 2008-04-28  Dan Williams  <dcbw@redhat.com>
3105
3106         * src/nm-hal-manager.c
3107                 - (add_initial_devices): convert to a GSourceFunc prototype
3108                 - (nm_manager_state_changed): when coming out of sleep, punt the
3109                         device re-addition to an idle handler to let D-Bus events go out
3110                         first, fixing a potential dbus-glib assert if the old device was
3111                         not yet disposed (due to references held while emitting the D-Bus
3112                         signals) but the new device was found, because the mainloop didn't
3113                         run between signal emission and add_initial_devices()
3114
3115 2008-04-27  Dan Williams  <dcbw@redhat.com>
3116
3117         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3118
3119         * initscript/paldo/NetworkManager.in
3120           initscript/SUSE/networkmanager.in
3121                 - Remove last bits of dhcdbd
3122
3123 2008-04-27  Dan Williams  <dcbw@redhat.com>
3124
3125         * src/nm-device-802-11-wireless.c
3126                 - (link_timeout_cb): don't ask for secrets when disconnected during
3127                         association/authentication phase, drivers are still just too crappy
3128
3129 2008-04-27  Dan Williams  <dcbw@redhat.com>
3130
3131         * Makefile.am
3132           configure.in
3133           dispatcher-daemon/Makefile.am
3134           dispatcher-daemon/NetworkManagerDispatcher.c
3135           initscript/Arch/Makefile.am
3136           initscript/Arch/networkmanager-dispatcher.in
3137           initscript/Gentoo/Makefile.am
3138           initscript/Gentoo/NetworkManagerDispatcher.in
3139           initscript/Mandriva/Makefile.am
3140           initscript/Mandriva/networkmanagerdispatcher.in
3141           initscript/RedHat/Makefile.am
3142           initscript/RedHat/NetworkManagerDispatcher.in
3143           initscript/SUSE/Makefile.am
3144           initscript/SUSE/networkmanager-dispatcher.in
3145           initscript/Slackware/Makefile.am
3146           initscript/Slackware/rc.networkmanager-dispatcher.in
3147           initscript/paldo/Makefile.am
3148           initscript/paldo/NetworkManagerDispatcher.in
3149           man/Makefile.am
3150           man/NetworkManagerDispatcher.8.in
3151                 - Remove the dispatcher daemon
3152
3153 2008-04-27  Dan Williams  <dcbw@redhat.com>
3154
3155         * callouts/Makefile.am
3156           callouts/nm-dispatcher-action.c
3157           callouts/nm-dispatcher-action.h
3158           callouts/nm-dispatcher.conf
3159           callouts/nm-dispatcher.xml
3160           callouts/org.freedesktop.nm_dispatcher.service
3161                 - Re-implement the dispatcher as a system-bus activated service that
3162                         NM calls on-demand, rather than an always running daemon
3163
3164         * src/Makefile.am
3165                 - Add callouts dir to includes to pick up dispatcher defines
3166
3167         * src/nm-device.c
3168                 - (nm_device_state_changed): call dispatcher on device activated/
3169                         deactivated
3170
3171         * src/vpn-manager/nm-vpn-connection.c
3172                 - (nm_vpn_connection_set_vpn_state): call dispatcher when VPN connections
3173                         go up and down
3174
3175         * src/NetworkManagerUtils.c
3176           src/NetworkManagerUtils.h
3177                 - (nm_utils_call_dispatcher): helper to call dispatcher
3178
3179 2008-04-27  Dan Williams  <dcbw@redhat.com>
3180
3181         * src/NetworkManagerUtils.c
3182           src/NetworkManagerUtils.h
3183                 - remove unneeded includes
3184                 - (nm_null_safe_strcmp, nm_ethernet_addresses_are_equal,
3185                    nm_utils_inet_ip4_address_as_string, nm_timeval_has_passed,
3186                    nm_timeval_cmp, nm_timeval_add): remove, unused
3187                 - clean up formatting
3188                 - (nm_spawn_process): de-uglify
3189
3190         * src/nm-device-802-11-wireless.c
3191                 - (get_active_ap): use memcmp() not nm_ethernet_addresses_are_equal()
3192
3193 2008-04-26  Saleem Abdulrasool  <compnerd@compnerd.org>
3194
3195         * initscript/Gentoo/NetworkManager.in:
3196                 Fix for starting the daemon.
3197
3198 2008-04-25  Dan Williams  <dcbw@redhat.com>
3199
3200         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3201
3202         * src/NetworkManagerSystem.c
3203                 - (nm_system_device_set_ip4_route): reimplement using libnl, not ioctls
3204
3205 2008-04-25  Dan Williams  <dcbw@redhat.com>
3206
3207         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3208
3209         * src/NetworkManagerSystem.c
3210                 - (nm_system_device_replace_default_ip4_route): new function; a libnl
3211                         implementation of nm_system_device_replace_default_route()
3212
3213         * src/NetworkManagerPolicy.c
3214                 - (update_default_route): use nm_system_device_replace_default_ip4_route()
3215
3216         * src/backends/NetworkManagerArch.c
3217           src/backends/NetworkManagerDebian.c
3218           src/backends/NetworkManagerFrugalware.c
3219           src/backends/NetworkManagerGeneric.c
3220           src/backends/NetworkManagerGeneric.h
3221           src/backends/NetworkManagerGentoo.c
3222           src/backends/NetworkManagerMandriva.c
3223           src/backends/NetworkManagerPaldo.c
3224           src/backends/NetworkManagerRedHat.c
3225           src/backends/NetworkManagerSlackware.c
3226           src/backends/NetworkManagerSuSE.c
3227                 - (nm_system_device_replace_default_route): remove
3228
3229 2008-04-25  Dan Williams  <dcbw@redhat.com>
3230
3231         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3232
3233         * src/NetworkManagerSystem.c
3234                 - (validate_ip4_route): remove; use nl_addr_parse() instead
3235                 - (nm_system_device_add_ip4_route_via_device_with_iface): new function,
3236                         replace nm_system_device_add_route_via_device_with_iface() in the
3237                         backends
3238
3239         * src/backends/NetworkManagerArch.c
3240           src/backends/NetworkManagerDebian.c
3241           src/backends/NetworkManagerFrugalware.c
3242           src/backends/NetworkManagerGeneric.c
3243           src/backends/NetworkManagerGeneric.h
3244           src/backends/NetworkManagerGentoo.c
3245           src/backends/NetworkManagerMandriva.c
3246           src/backends/NetworkManagerPaldo.c
3247           src/backends/NetworkManagerRedHat.c
3248           src/backends/NetworkManagerSlackware.c
3249           src/backends/NetworkManagerSuSE.c
3250                 - Remove nm_system_device_add_route_via_device_with_iface()
3251
3252 2008-04-25  Dan Williams  <dcbw@redhat.com>
3253
3254         * system-settings/plugins/ifcfg-fedora/parser.c
3255                 - (GET_ONE_DNS): fix parsing of DNS2 & DNS3
3256
3257 2008-04-24  Dan Williams  <dcbw@redhat.com>
3258
3259         * dispatcher-daemon/NetworkManagerDispatcher.c
3260                 - (nmd_execute_scripts): execute scripts in order as sorted by strcmp()
3261
3262 2008-04-24  Dan Williams  <dcbw@redhat.com>
3263
3264         * initscript/RedHat/NetworkManager.in
3265           initscript/RedHat/NetworkManagerDispatcher.in
3266                 - Be active at runlevel 2
3267                 - Adjust priorities earlier
3268
3269 2008-04-22  Dan Williams  <dcbw@redhat.com>
3270
3271         * src/NetworkManagerPolicy.c
3272                 - (update_routing_and_dns): when checking for a gateway, look at the
3273                         composite IP4 config, not the connection's ip4-config setting, which
3274                         doesn't include DHCP-returned information
3275
3276 2008-04-22  Tambet Ingo  <tambet@gmail.com>
3277
3278         Implement GKeyFile system settings plugin.
3279         Implement writing system settings (currently supported only by GKeyFile plugin).
3280
3281         * system-settings/src/main.c: 
3282         * system-settings/src/dbus-settings.c: Move the communication with plugins
3283         from main.c to dbus-settings.c. Makes it possible to talk to all registered
3284         plugins for adding/updating/removing connections.
3285
3286         * system-settings/src/nm-system-config-interface.c
3287         (nm_system_config_interface_add_connection): Implement
3288         (nm_system_config_interface_update_connection): Implement.
3289         (nm_system_config_interface_remove_connection): Implement.
3290
3291         * system-settings/plugins/keyfile/Makefile.am:
3292         * system-settings/plugins/keyfile/plugin.[ch]:
3293         * system-settings/plugins/keyfile/writer.[ch]:
3294         * system-settings/plugins/keyfile/reader.[ch]: Implement.
3295
3296         * system-settings/plugins/Makefile.am: Add GKeyFile plugin.
3297
3298         * configure.in: Generate GKeyFile Makefile.
3299
3300         * libnm-glib/nm-settings.c (impl_exported_connection_get_id): Fix a memory
3301         corruption, need to duplicate the returned string.
3302         (impl_exported_connection_update): Implement.
3303         (impl_exported_connection_delete): Implement.
3304
3305         * introspection/nm-settings-system.xml: Add "AddConnection" method.
3306
3307         * introspection/nm-exported-connection.xml: Add "Update" and "Delete" methods.
3308
3309 2008-04-22  Dan Williams  <dcbw@redhat.com>
3310
3311         Patch from Charles R. Anderson (cra@wpi.edu)
3312
3313         * src/NetworkManagerPolicy.c
3314                 - (update_routing_and_dns): don't select devices without a gateway
3315                         as having the default route (rh #437338)
3316
3317 2008-04-21  Dan Williams  <dcbw@redhat.com>
3318
3319         * src/nm-activation-request.c
3320           src/nm-activation-request.h
3321                 - (dispose): ensure to disconnect from the device's state-changed signal
3322                         when appropriate so the signal doesn't get handled by an already
3323                         disposed NMActRequest
3324                 - (device_state_changed): update is_default here too just to make sure
3325                         default is only True when the child device is activated
3326                 - (nm_act_request_set_default): new function
3327
3328         * src/NetworkManagerPolicy.c
3329                 - (update_routing_and_dns): set 'default' on the active connection which
3330                         has the default route and DNS
3331
3332 2008-04-21  Dan Williams  <dcbw@redhat.com>
3333
3334         * src/NetworkManagerPolicy.c
3335                 - (device_state_changed): update routing and DNS when a device goes
3336                         into unmanaged or unavailable states too (like rfkill or carrier loss)
3337
3338 2008-04-21  Dan Williams  <dcbw@redhat.com>
3339
3340         * include/NetworkManager.h
3341                 - Add NMActiveConnectionState enum
3342
3343         * introspection/nm-active-connection.xml
3344           introspection/nm-vpn-connection.xml
3345                 - Add 'State' property for overall active connection state
3346                 - Add 'Default' property, when True means this active connection
3347                         has the default route
3348                 - Add PropertyChanged signals so changes actually go out over the bus
3349
3350         * src/nm-active-connection.h
3351                 - Add defines for State & Default properties
3352
3353         * src/nm-activation-request.c
3354                 - Add 'state' and 'default' properties, hook up to device 'state-changed'
3355                         signal to determine active connection state
3356
3357         * src/vpn-manager/nm-vpn-connection.c
3358           src/vpn-manager/nm-vpn-connection.h
3359           src/vpn-manager/nm-vpn-manager.c
3360           src/vpn-manager/nm-vpn-service.c
3361                 - Rename old 'state' to 'vpn-state'
3362                 - Rename nm_vpn_connection_get_state() -> nm_vpn_connection_get_vpn_state()
3363                 - Add 'state' and 'default' properties, hook up to the vpn connection's
3364                         'vpn-state-changed' signal
3365
3366         * libnm-glib/nm-active-connection.c
3367           libnm-glib/nm-active-connection.h
3368                 - Add new 'state' and 'default' properties and accessors
3369
3370         * libnm-glib/nm-vpn-connection.c
3371           libnm-glib/nm-vpn-connection.h
3372                 - Rename old 'state' property to 'vpn-state'
3373                 - Add new 'state' and 'default' properties and accessors
3374
3375 2008-04-21  Dan Williams  <dcbw@redhat.com>
3376
3377         * src/nm-ip4-config.c
3378                 - (nm_ip4_config_to_rtnl_addr): fill in the broadcast address if it's
3379                         not specified (rh #443474)
3380
3381 2008-04-20  Dan Williams  <dcbw@redhat.com>
3382
3383         * src/NetworkManagerUtils.c
3384           src/NetworkManagerUtils.h
3385                 - (nm_utils_merge_ip4_config): new function; merge settings from an
3386                         NMSettingIP4Config to an NMIP4Config object
3387
3388         * src/nm-device.c
3389                 - (merge_ip4_config): move to NetworkManagerUtils.c
3390
3391         * src/vpn-manager/nm-vpn-connection.c
3392                 - (nm_vpn_connection_ip4_config_get): merge in user-specified settings
3393                         too
3394
3395 2008-04-18  Dan Williams  <dcbw@redhat.com>
3396
3397         * libnm-util/nm-setting-ppp.c
3398           libnm-util/nm-setting-ppp.h
3399                 - Add 'no-vj-comp' option for TCP header compression
3400                 - baud, mru, mtu, lcp_echo_failure, and lcp_echo_interval are really
3401                         uint32
3402
3403 2008-04-18  Dan Williams  <dcbw@redhat.com>
3404
3405         * libnm-util/nm-setting-ppp.c
3406           libnm-util/nm-setting-ppp.h
3407           src/ppp-manager/nm-ppp-manager.c
3408                 - Add 'refuse-pap' and 'refuse-mschapv2' options
3409
3410 2008-04-18  Dan Williams  <dcbw@redhat.com>
3411
3412         * libnm-util/nm-setting-ppp.c
3413           libnm-util/nm-setting-ppp.h
3414           src/ppp-manager/nm-ppp-manager.c
3415                 - Remove the 'usepeerdns' option and always request DNS servers from
3416                         the PPP server; the connection chooses to use/override/ignore the
3417                         DNS servers returned from the PPP server
3418
3419 2008-04-18  Dan Williams  <dcbw@redhat.com>
3420
3421         * libnm-util/nm-setting-ppp.c
3422           libnm-util/nm-setting-ppp.h
3423           src/ppp-manager/nm-ppp-manager.c
3424                 - Remove the 'require-mppc' option, because pppd doesn't support it and
3425                         it seems to have been an erroneous addition to the PPTP plugin in
3426                         the first place (from which the ppp-manager is derived)
3427
3428 2008-04-17  Dan Williams  <dcbw@redhat.com>
3429
3430         * libnm-util/nm-setting-pppoe.c
3431                 - (verify): require a PPP setting too
3432
3433         * src/ppp-manager/nm-ppp-manager.c
3434                 - (nm_ppp_manager_start): fail if no PPP setting is present instead of
3435                         segfaulting
3436
3437 2008-04-17  Dan Williams  <dcbw@redhat.com>
3438
3439         * src/nm-device.c
3440                 - (nm_device_state_changed): do deactivation and and promotion to
3441                         unavailable here, so that the device gets cleaned up before the
3442                         manager runs and starts emitting signals; do the
3443                         FAILED->DISCONNECTED transition from an idle handler rather than
3444                         immediately to guard against recursion
3445                 - (nm_device_deactivate_quickly, nm_device_dispose): stop the
3446                         FAILED->DISCONNECTED handler if it's scheduled
3447
3448 2008-04-17  Dan Williams  <dcbw@redhat.com>
3449
3450         * src/nm-device-802-11-wireless.c
3451                 - (state_changed_cb): clear AP list when device transitions to
3452                         unavailable or unmanaged
3453                 - (nm_device_802_11_wireless_dispose): remove redundant set_current_ap()
3454                         since this is already done in device_cleanup()
3455                 - (supplicant_iface_scanned_ap_cb): don't leak new APs when the device
3456                         isn't available or managed
3457                 - (device_cleanup): use remove_all_aps()
3458                 - (remove_all_aps): consolidate code removing all APs
3459
3460 2008-04-17  Dan Williams  <dcbw@redhat.com>
3461
3462         * src/nm-serial-device.c
3463           src/nm-serial-device.h
3464                 - (wait_for_reply_got_data): break input into lines, and search each
3465                         line for responses _and_ terminator strings; also make sure that
3466                         the read loop doesn't continue after the timeout is supposed to fire
3467                 - (nm_serial_device_wait_for_reply): take an array of terminators too
3468
3469         * src/nm-gsm-device.c
3470           src/nm-cdma-device.c
3471                 - Send terminators to nm_serial_device_wait_for_reply()
3472
3473 2008-04-16  Dan Williams  <dcbw@redhat.com>
3474
3475         Patch from 陈鑫 <znscnchen@gmail.com>
3476
3477         * src/ppp-manager/nm-pppd-plugin.c
3478                 - (get_credentials): return correct value for success; handle case where
3479                         pppd just does some checking but doesn't want a password
3480                 - (plugin_init): make CHAP work too
3481
3482 2008-04-16  Dan Williams  <dcbw@redhat.com>
3483
3484         Patch from 陈鑫 <znscnchen@gmail.com>
3485
3486         * src/ppp-manager/nm-ppp-manager.c
3487                 - (create_pppd_cmd_line): fix argument generation when spawning pppd
3488
3489 2008-04-16  Dan Williams  <dcbw@redhat.com>
3490
3491         Patch from 陈鑫 <znscnchen@gmail.com>
3492
3493         * src/nm-device-802-3-ethernet.c
3494                 - (real_deactivate_quickly): clear the IP interface name on
3495                         deactivation, otherwise the wrong interface might get used later
3496                         for routing and IP management
3497
3498 2008-04-15  Dan Williams  <dcbw@redhat.com>
3499
3500         * libnm-glib/nm-device.c
3501                 - (get_product_and_vendor): handle serial devices correctly
3502                 - (nm_device_update_description): pass device to get_product_and_vendor()
3503
3504 2008-04-15  Dan Williams  <dcbw@redhat.com>
3505
3506         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3507
3508         * src/NetworkManagerSystem.h
3509           src/backends/NetworkManagerArch.c
3510           src/backends/NetworkManagerDebian.c
3511           src/backends/NetworkManagerFrugalware.c
3512           src/backends/NetworkManagerGeneric.c
3513           src/backends/NetworkManagerGeneric.h
3514           src/backends/NetworkManagerGentoo.c
3515           src/backends/NetworkManagerMandriva.c
3516           src/backends/NetworkManagerPaldo.c
3517           src/backends/NetworkManagerRedHat.c
3518           src/backends/NetworkManagerSlackware.c
3519           src/backends/NetworkManagerSuSE.c
3520           src/nm-device.c
3521                 - (nm_generic_device_add_ip6_link_address,
3522                    nm_system_device_add_ip6_link_address): remove
3523
3524 2008-04-15  Dan Williams  <dcbw@redhat.com>
3525
3526         Patch from Benoit Boissinot <bboissin+networkmanager@gmail.com>
3527
3528         * src/backends/NetworkManagerArch.c
3529           src/backends/NetworkManagerDebian.c
3530           src/backends/NetworkManagerFrugalware.c
3531           src/backends/NetworkManagerGeneric.c
3532           src/backends/NetworkManagerGeneric.h
3533           src/backends/NetworkManagerGentoo.c
3534           src/backends/NetworkManagerMandriva.c
3535           src/backends/NetworkManagerPaldo.c
3536           src/backends/NetworkManagerRedHat.c
3537           src/backends/NetworkManagerSlackware.c
3538           src/backends/NetworkManagerSuSE.c
3539           src/NetworkManagerSystem.h
3540                 - flush_routes -> flush_ip4_routes
3541                 - flush_addresses -> flush_ip4_addresses
3542
3543         * src/NetworkManagerSystem.c
3544           src/nm-device.c
3545           src/vpn-manager/nm-vpn-connection.c
3546                 - flush only IPv4 addresses; don't touch IPv6 routes and addresses
3547
3548 2008-04-15  Dan Williams  <dcbw@redhat.com>
3549
3550         Remove exposure of wireless-tools mode types in the API.
3551
3552         * include/NetworkManager.h
3553                 - Define NM80211Mode enum
3554
3555         * introspection/generic-types.xml
3556                 - Describe NM_802_11_MODE enum
3557                 - Remove IW_MODE_* enum
3558
3559         * introspection/nm-access-point.xml
3560           libnm-glib/nm-access-point.c
3561           libnm-glib/nm-access-point.h
3562                 - 'mode' is now of type NM80211Mode, a DBUS_TYPE_UINT
3563
3564         * introspection/nm-device-802-11-wireless.xml
3565           libnm-glib/nm-device-802-11-wireless.c
3566           libnm-glib/nm-device-802-11-wireless.h
3567                 - 'mode' is now of type NM80211Mode, a DBUS_TYPE_UINT
3568
3569         * libnm-util/nm-setting-wireless.c
3570           src/NetworkManagerAP.c
3571           src/NetworkManagerAP.h
3572           src/nm-device-802-11-wireless.c
3573           src/nm-device-802-11-wireless.h
3574           test/nm-tool.c
3575                 - Use NM80211Mode not IW_MODE_*
3576
3577 2008-04-15  Dan Williams  <dcbw@redhat.com>
3578
3579         Enhance nm-online based on a patch from Bill Nottingham.
3580
3581         * test/nm-online.c
3582                 - Add a '-q' option
3583                 - Add help messages and option summary
3584                 - Add long-format options
3585                 - Add a '-x' option to exit if NM isn't running or isn't connecting
3586
3587 2008-04-15  Tambet Ingo  <tambet@gmail.com>
3588
3589         * libnm-util/nm-setting.c (nm_setting_duplicate): Implement.
3590
3591         * libnm-util/nm-connection.c (nm_connection_remove_setting): Implement.
3592
3593 2008-04-15  Dan Williams  <dcbw@redhat.com>
3594
3595         * nm-setting-ip4-config.c
3596                 - (ip4_addresses_from_gvalue): handle NULL address array
3597
3598         * nm-setting-8021x.c
3599                 - (verify_tls, verify_ttls): warn on failed verification
3600
3601 2008-04-10  Dan Williams  <dcbw@redhat.com>
3602
3603         * src/nm-gsm-device.c
3604                 - (automatic_registration): accept "+CREG: 0,0"
3605                 - (automatic_registration_response): fail on "+CREG: 0,0"
3606
3607 2008-04-10  Tambet Ingo  <tambet@gmail.com>
3608
3609         * libnm-util/nm-setting-wired.c (get_property): Fix a typo.
3610
3611 2008-04-10  Tambet Ingo  <tambet@gmail.com>
3612
3613         * system-settings/plugins/ifcfg-suse/parser.c (make_wireless_security_setting): 
3614         Make it compile again by commenting out broken code that at first didn't work and
3615         now didn't compile either.
3616
3617 2008-04-08  Dan Williams  <dcbw@redhat.com>
3618
3619         * libnm-glib/nm-object-cache.c
3620           libnm-glib/nm-settings.c
3621           src/dhcp-manager/nm-dhcp-manager.c
3622           system-settings/plugins/ifcfg-fedora/plugin.c
3623           system-settings/plugins/ifcfg-suse/plugin.c
3624           system-settings/src/nm-system-config-hal-manager.c
3625           libnm-util/nm-utils.c
3626                 - Remove usage of GStaticMutex since gcc-4.3 hates it and because we're
3627                         not threadsafe anyway
3628
3629 2008-04-08  Dan Williams  <dcbw@redhat.com>
3630
3631         * system-settings/src/main.c
3632                 - (load_stuff, device_added_cb, device_removed_cb): device added/removed
3633                         callbacks take a device type too
3634
3635 2008-04-08  Dan Williams  <dcbw@redhat.com>
3636
3637         The system settings service will now create a new default DHCP connection
3638         for wired devices that have no existing applicable connection.
3639
3640         * system-settings/src/nm-system-config-hal-manager.c
3641           system-settings/src/nm-system-config-hal-manager.h
3642                 - (nm_system_config_hal_manager_get_type_for_udi): new function
3643
3644         * system-settings/src/dbus-settings.c
3645           system-settings/src/dbus-settings.h
3646                 - (nm_sysconfig_settings_get_connections): new function
3647                 - (nm_sysconfig_settings_is_device_managed): new function
3648
3649         * system-settings/src/main.c
3650                 - (load_stuff): check for wired devices that need a default connection
3651                 - (get_details_for_udi): get interface and MAC address from HAL
3652                 - (add_default_dhcp_connection): add a default connection for a wired
3653                         device if needed
3654                 - (device_added_cb, device_removed_cb): do the right thing with
3655                         wired devices and their default connections on HAL device events
3656
3657 2008-04-07  Dan Williams  <dcbw@redhat.com>
3658
3659         * libnm-glib/nm-device.c
3660           libnm-glib/nm-device.h
3661                 - Proxy the 'managed' property
3662
3663 2008-04-07  Dan Williams  <dcbw@redhat.com>
3664
3665         * src/nm-gsm-device.c
3666           src/nm-cdma-device.c
3667                 - (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
3668                         handler to transition to DISCONNECTED
3669
3670 2008-04-07  Dan Williams  <dcbw@redhat.com>
3671
3672         Patch from Bill Nottingham
3673
3674         * dispatcher-daemon/NetworkManagerDispatcher.c
3675                 - ignore backup/packaging crufy (rh #440143)
3676
3677 2008-04-07  Dan Williams  <dcbw@redhat.com>
3678
3679         * include/NetworkManager.h
3680                 - Remove the DOWN and CANCELLED device states
3681                 - Add UNMANAGED and UNAVAILABLE device states
3682                 - Document the device states
3683
3684         * introspection/nm-device.xml
3685           src/nm-device-interface.c
3686           src/nm-device-interface.h
3687                 - Add the 'managed' property
3688
3689         * test/nm-tool.c
3690                 - (detail_device): print out device state
3691
3692         * src/NetworkManagerSystem.h
3693           src/backends/NetworkManagerArch.c
3694           src/backends/NetworkManagerDebian.c
3695           src/backends/NetworkManagerFrugalware.c
3696           src/backends/NetworkManagerGentoo.c
3697           src/backends/NetworkManagerMandriva.c
3698           src/backends/NetworkManagerPaldo.c
3699           src/backends/NetworkManagerRedHat.c
3700           src/backends/NetworkManagerSlackware.c
3701           src/backends/NetworkManagerSuSE.c
3702                 - (nm_system_device_get_system_config, nm_system_device_get_disabled
3703                    nm_system_device_free_system_config): remove; they were unused and
3704                         their functionality should be re-implemented in each distro's
3705                         system settings service plugin 
3706
3707         * src/nm-gsm-device.c
3708           src/nm-gsm-device.h
3709           src/nm-cdma-device.c
3710           src/nm-cdma-device.h
3711                 - (*_new): take the 'managed' argument
3712
3713         * src/nm-device.c
3714                 - (nm_device_set_address): remove, fold into nm_device_bring_up()
3715                 - (nm_device_init): start in unmanaged state, not disconnected
3716                 - (constructor): don't start device until the system settings service
3717                         has had a chance to figure out if the device is managed or not
3718                 - (nm_device_deactivate, nm_device_bring_up, nm_device_bring_down):
3719                         don't set device state here, let callers handle that as appropriate
3720                 - (nm_device_dispose): don't touch the device if it's not managed
3721                 - (set_property, get_property, nm_device_class_init): implement the
3722                         'managed' property
3723                 - (nm_device_state_changed): bring the device up if its now managed,
3724                         and deactivate it if it used to be active
3725                 - (nm_device_get_managed, nm_device_set_managed): do the right thing
3726                         with the managed state
3727
3728         * src/nm-hal-manager.c
3729                 - (wired_device_creator, wireless_device_creator, modem_device_creator):
3730                         take initial managed state and pass it along to device constructors
3731                 - (create_device_and_add_to_list): get managed state and pass to
3732                         type creators
3733
3734         * src/nm-device-802-11-wireless.c
3735                 - (real_can_activate): fold in most of
3736                         nm_device_802_11_wireless_can_activate()
3737                 - (can_scan): can't scan in UNAVAILABLE or UNMANAGED
3738                 - (link_timeout_cb): instead of deactivating, change device state and
3739                         let the device state handler to it
3740                 - (real_update_hw_address): clean up
3741                 - (state_changed_cb): when entering UNAVAILABLE state, schedule an idle
3742                         handler to transition to DISCONNECTED if the device isn't rfkilled
3743
3744         * src/nm-device-802-3-ethernet.c
3745                 - (set_carrier): move above callers and get rid of prototype
3746                 - (device_state_changed): when entering UNAVAILABLE state, schedule an
3747                         idle handler to transition to DISCONNECTED if the device has a
3748                         carrier
3749                 - (real_update_hw_address): clean up
3750                 - (link_timeout_cb, ppp_state_changed): change state instead of calling
3751                         deactivation directly as deactivation doesn't change state anymore
3752
3753         * src/NetworkManagerPolicy.c
3754                 - (schedule_activate_check): yay, remove wireless_enabled hack since
3755                         the NMManager and wireless devices work that out themselves now
3756                 - (device_state_changed): change to a switch and update for new device
3757                         states
3758                 - (device_carrier_changed): remove; device handles this now through
3759                         state changes
3760                 - (device_added): don't care about carrier any more; the initial
3761                         activation check will happen when the device transitions to
3762                         DISCONNECTED
3763
3764         * src/nm-manager.c
3765                 - (dispose): clear unmanaged devices
3766                 - (handle_unmanaged_devices): update unmanaged device list and toggle
3767                         the managed property on each device when needed
3768                 - (system_settings_properties_changed_cb): handle signals from the
3769                         system settings service
3770                 - (system_settings_get_unmanaged_devices_cb): handle callback from
3771                         getting the unmanaged device list method call
3772                 - (query_unmanaged_devices): ask the system settings service for its
3773                         list of unmanaged devices
3774                 - (nm_manager_name_owner_changed, initial_get_connections): get unmanaged
3775                         devices
3776                 - (manager_set_wireless_enabled): push rfkill state down to wireless
3777                         devices directly and let them handle the necessary state transitions
3778                 - (manager_device_state_changed): update for new device states
3779                 - (nm_manager_add_device): set initial rfkill state on wireless devices
3780                 - (nm_manager_remove_device): don't touch the device if it's unmanaged
3781                 - (nm_manager_activate_connection): return error if the device is
3782                         unmanaged
3783                 - (nm_manager_sleep): handle new device states correctly; don't change
3784                         the state of unavailable/unmanaged devices
3785
3786         * libnm-glib/nm-device-802-11-wireless.c
3787                 - (state_changed_cb): update for new device states
3788
3789 2008-04-07  Dan Williams  <dcbw@redhat.com>
3790
3791         * marshallers/nm-marshal.list
3792                 - Add VOID:STRING,UINT marshaller for system settings HAL manager
3793
3794 2008-04-07  Dan Williams  <dcbw@redhat.com>
3795
3796         * system-settings/src/main.c
3797                 - (unmanaged_devices_changed_cb, register_plugin): proxy changes from
3798                         plugins to the dbus settings object
3799                 - (load_stuff): start the dbus service after grabbing unmanaged devices
3800                 - (dbus_reconnect, dbus_cleanup): make HAL manager aware of dbus events
3801                 - (log_handler, logging_setup, logging_shutdown): log output to syslog
3802                 - (main): switch default logging to syslog with a 'debug' option to
3803                         output to console; start up the HAL manager
3804
3805 2008-04-07  Dan Williams  <dcbw@redhat.com>
3806
3807         * introspection/nm-settings-system.xml
3808           introspection/Makefile.am
3809                 - Define the unmanaged devices interface for the system settings service
3810
3811         * system-settings/src/nm-system-config-hal-manager.c
3812           system-settings/src/nm-system-config-hal-manager.h
3813           system-settings/src/nm-system-config-hal-manager-private.h
3814           system-settings/src/Makefile.am
3815                 - Add a lightweight HAL manager object for tracking network devices for
3816                         the purpose of determining unmanaged devices and which devices need
3817                         the default DHCP connections
3818
3819         * system-settings/src/nm-system-config-interface.c
3820           system-settings/src/nm-system-config-interface.h
3821                 - (nm_system_config_interface_init): add the HAL manager as an argument
3822                 - (nm_system_config_interface_get_unmanaged_devices): implement
3823                 - Define 'unmanaged-devices-changed' signal
3824
3825         * system-settings/src/dbus-settings.c
3826           system-settings/src/dbus-settings.h
3827                 - Implement the unmanaged devices interface; some cleanups
3828
3829         * system-settings/plugins/ifcfg-suse/plugin.c
3830                 - Fixup for plugin interface changes
3831
3832         * system-settings/plugins/ifcfg-fedora/plugin.c
3833                 - (get_ether_device_udi): new function; find the device that has
3834                         a specified MAC address and return its UDI
3835                 - (get_udi_for_connection): new function; try to find the specific
3836                         device a connection is locked to, if any
3837                 - (device_added_cb, device_removed_cb): update unmanaged device list in
3838                         response to HAL events
3839                 - (get_unmanaged_devices): new function; return unmanaged device list
3840                 - (build_one_connection): set the connection's locked device, if any
3841                 - (write_auto_wired_connection): remove
3842                 - (kill_old_auto_wired_file): remove the ifcfg-Auto Wired file if found
3843                 - (handle_connection_changed): alert listeners that the unmanaged device
3844                         list has changed
3845                 - (init): fixup for plugin interface changes, implement unmanaged devices
3846
3847         * system-settings/plugins/ifcfg-fedora/parser.c
3848           system-settings/plugins/ifcfg-fedora/parser.h
3849                 - (connection_data_free): clean up connection UDI
3850
3851 2008-04-07  Dan Williams  <dcbw@redhat.com>
3852
3853         * system-settings/plugins/ifcfg-fedora/parser.c
3854                 - (make_ip4_setting): fix parsing of DNS servers
3855
3856 2008-04-05  Dan Williams  <dcbw@redhat.com>
3857
3858         * Makefile.am
3859           configure.in
3860           marshallers/Makefile.am
3861           marshallers/nm-marshal-main.c
3862           marshallers/nm-marshal.list
3863                 - Consolidate marshallers
3864
3865         * libnm-glib/nm-marshal-main.c
3866           libnm-glib/nm-marshal.list
3867           src/marshallers/Makefile.am
3868           src/marshallers/nm-marshal-main.c
3869           src/marshallers/nm-marshal.list
3870                 - Remove
3871
3872         * libnm-glib/Makefile.am
3873           src/Makefile.am
3874           src/dhcp-manager/Makefile.am
3875           src/ppp-manager/Makefile.am
3876           src/supplicant-manager/Makefile.am
3877           src/vpn-manager/Makefile.am
3878                 - Use consolidated marshallers
3879
3880 2008-04-04  Dan Williams  <dcbw@redhat.com>
3881
3882         * src/nm-hal-manager.c
3883           src/nm-hal-manager.h
3884                 - (hal_init): don't look for hardware here
3885                 - (nm_hal_manager_start): new function; look for hardware here instead,
3886                         which can be done at a later time than hal_init()
3887
3888         * src/NetworkManager.c
3889                 - (main): start HAL manager after entering the main loop
3890
3891 2008-04-03  Dan Williams  <dcbw@redhat.com>
3892
3893         * libnm-glib/nm-settings.c
3894           libnm-glib/nm-settings.h
3895             - (nm_exported_connection_get_id): new function
3896                 - (impl_exported_connection_get_id): use nm_exported_connection_get_id()
3897
3898 2008-04-02  Dan Williams  <dcbw@redhat.com>
3899
3900         * src/nm-device-interface.c
3901           src/nm-device-interface.h
3902           src/nm-device.c
3903           src/nm-device.h
3904                 - Rename check_connection_conflicts() to check_connection_compatible()
3905
3906         * src/nm-device-802-11-wireless.c
3907                 - (real_check_connection_conflicts): remove
3908                 - (real_check_connection_compatible): implement; match MAC address
3909
3910         * src/nm-device-802-3-ethernet.c
3911                 - (real_check_connection_conflicts): remove
3912                 - (real_check_connection_compatible): implement; match MAC address
3913                 - (real_get_best_auto_connection): correctly handle PPPoE cases
3914
3915         * src/nm-manager.c
3916                 - (check_connection_allowed): remove; unused until PolicyKit integration
3917                 - (internal_activate_device): check whether the connection is compatible
3918                         with the device before trying to activate it
3919
3920 2008-04-02  Dan Williams  <dcbw@redhat.com>
3921
3922         * system-settings/plugins/ifcfg-fedora/parser.c
3923                 - (read_mac_address): new function; read in MAC address and stuff it
3924                         into the connection
3925                 - (add_one_wep_key): remove debug spew
3926                 - (make_wireless_security_setting): validate the default TX key; don't
3927                         add the wireless-security setting if the connection doesn't need
3928                         security; don't leak the keys shvarFile on error cases
3929                 - (make_wireless_setting, make_wired_setting): populate device's MAC
3930                         address
3931
3932 2008-04-02  Dan Williams  <dcbw@redhat.com>
3933
3934         * libnm-util/nm-setting-connection.c
3935           libnm-util/nm-setting-connection.h
3936                 - (set_property, get_property, nm_setting_connection_class_init): remove
3937                         the 'lockdown' property; it's functionality will be replaced by
3938                         PolicyKit instead
3939
3940 2008-04-01  Dan Williams  <dcbw@redhat.com>
3941
3942         Patch from Per Øyvind Karlsen <peroyvind@mandriva.org>
3943
3944         * configure.in
3945           initscript/Makefile.am
3946           initscript/Mandriva/Makefile.am
3947           initscript/Mandriva/networkmanager.in
3948           initscript/Mandriva/networkmanagerdispatcher.in
3949           src/backends/Makefile.am
3950           src/backends/NetworkManagerMandriva.c
3951           system-settings/plugins/Makefile.am
3952                 - Add Mandriva support
3953
3954 2008-03-31  Dan Williams  <dcbw@redhat.com>
3955
3956         * src/vpn-manager/nm-vpn-service.c
3957                 - (nm_vpn_service_daemon_exec): add an error argument so that spawn
3958                         errors can be passed back to the caller; also no longer scheduled
3959                         as an idle handler, but called directly; and bump up VPN service
3960                         spawn timeout, 2s is really short
3961                 - (nm_vpn_service_activate): don't schedule the VPN service activation,
3962                         but call it directly so that errors are reported on return from
3963                         ActivateConnection() and don't get lost.  If scheduled as an idle
3964                         handler, clients don't have the time to query NM for the new VPN
3965                         connection's properties before the VPN connection is torn down again
3966                         if the service couldn't be launched, and therefore launch errors
3967                         get lost.
3968
3969 2008-03-31  Dan Williams  <dcbw@redhat.com>
3970
3971         * src/vpn-manager/nm-vpn-connection.c
3972                 - (device_state_changed): send correct state on device failure too
3973                 - (plugin_state_changed): failed state means unexpected disconnection,
3974                         thus if the service goes away while the VPN connection is activated
3975                         that's a failure too
3976
3977 2008-03-31  Dan Williams  <dcbw@redhat.com>
3978
3979         * src/vpn-manager/nm-vpn-manager.c
3980           src/vpn-manager/nm-vpn-manager.h
3981                 - Make VPNManager errors more available; add a service-start-failed error
3982
3983 2008-03-31  Dan Williams  <dcbw@redhat.com>
3984
3985         * libnm-glib/nm-client.c
3986           libnm-glib/nm-client.h
3987                 - (activate_cb): pass the new active connection to callback; fix
3988                         message when no callback is specified
3989
3990 2008-03-30  Dan Williams  <dcbw@redhat.com>
3991
3992         * libnm-util/nm-setting-wireless-security.c
3993                 - (need_secrets): only require key0 if the transmit key index is also
3994                         0
3995                 - (verify): reject non-NULL but zero-length WEP keys; these are invalid
3996
3997 2008-03-29  Dan Williams  <dcbw@redhat.com>
3998
3999         * libnm-util/nm-setting-8021x.c
4000           libnm-util/nm-setting-ip4-config.c
4001           libnm-util/nm-setting-vpn-properties.c
4002           libnm-util/nm-setting-vpn.c
4003           libnm-util/nm-setting-wireless-security.c
4004           libnm-util/nm-setting-wireless.c
4005           libnm-util/nm-utils.c
4006           src/dhcp-manager/nm-dhcp-manager.c
4007           src/nm-activation-request.c
4008           src/nm-ip4-config.c
4009           src/nm-manager.c
4010           src/nm-properties-changed-signal.c
4011           src/ppp-manager/nm-pppd-plugin.c
4012           src/supplicant-manager/nm-supplicant-interface.c
4013           src/vpn-manager/nm-vpn-connection.c
4014                 - consistently use nm-dbus-glib-types.h
4015
4016 2008-03-29  Dan Williams  <dcbw@redhat.com>
4017
4018         * src/vpn-manager/nm-vpn-connection.c
4019                 - (nm_vpn_connection_class_init): PROP_SPECIFIC_OBJECT should be boxed,
4020                         not string
4021
4022         * src/nm-activation-request.c
4023                 - (nm_act_request_class_init): PROP_SPECIFIC_OBJECT should be boxed,
4024                         not string
4025
4026 2008-03-29  Dan Williams  <dcbw@redhat.com>
4027
4028         * libnm-glib/nm-device-802-11-wireless.c
4029                 - (access_point_added_proxy): create new APs if not found
4030
4031 2008-03-29  Dan Williams  <dcbw@redhat.com>
4032
4033         * libnm-glib/nm-client.c
4034                 - (proxy_name_owner_changed): tell wireless devices about rfkill state
4035                         before freeing them
4036
4037 2008-03-29  Dan Williams  <dcbw@redhat.com>
4038
4039         * system-settings/plugins/ifcfg-fedora/parser.c
4040                 - Fix parsing of WEP keys; ifcfg files use indexes [1...4] rather than
4041                         [0...3]; also handle KEY correctly in combination with DEFAULTKEY
4042
4043 2008-03-29  Dan Williams  <dcbw@redhat.com>
4044
4045         * system-settings/plugins/ifcfg-fedora/parser.c
4046                 - (get_one_wep_key, make_wireless_security_setting): handle "KEY" too
4047
4048 2008-03-27  Dan Williams  <dcbw@redhat.com>
4049
4050         * nm-object.c
4051                 - (nm_object_queue_notify): don't notify multiple times for the same
4052                         property
4053
4054         * nm-object-private.h
4055                 - (handle_ptr_array_return): return NULL if the given array is NULL or
4056                         if it has zero elements
4057
4058         * nm-ip4-config.c
4059                 - (finalize): use g_ptr_array_foreach() when freeing domains
4060                 - (nm_ip4_config_get_domains): use handle_ptr_array_return()
4061
4062         * nm-active-connection.c
4063                 - (nm_active_connection_get_devices): use handle_ptr_array_return()
4064
4065         * nm-device-802-11-wireless.c
4066           nm-device-802-11-wireless.h
4067                 - (nm_device_802_11_wireless_get_access_points): return const; use
4068                         handle_ptr_array_return()
4069
4070         * nm-types.c
4071                 - (nm_object_array_demarshal): always create an array, even of length
4072                         zero, to distinguish between "NM returned no items" and "haven't
4073                         asked NM yet"
4074
4075         * nm-client.c
4076                 - (dispose): free active connections too
4077                 - (proxy_name_owner_changed): free active connections too when NM goes
4078                         away
4079                 - (nm_client_get_devices): return const; use handle_ptr_array_return()
4080                 - (nm_client_get_active_connections): use handle_ptr_array_return()
4081
4082 2008-03-26  Dan Williams  <dcbw@redhat.com>
4083
4084         Rework VPN connection handling for a more consistent D-Bus API.  The
4085         VPNManager object has been removed, and active VPN connections are now the
4086         same as any other active connection.  The Manager object's ActivateConnection
4087         and DeactivateConnection methods are used to start and stop a VPN connection,
4088         and the VPNConnection objects are subclasses of the ActiveConnection objects.
4089         When activating a VPN connection, pass the path of the active connection
4090         to which the VPN connection is tied in the 'specific_object' argument.
4091
4092         Consequently, the libnm-glib API has been reworked to match this arrangement,
4093         with the VPNManager object removed, and the NMVPNConnection objects now
4094         being subclasses of NMActiveConnection.
4095
4096 2008-03-25  Dan Williams  <dcbw@redhat.com>
4097
4098         Patch from Björn Martensen <bjoern.martensen@gmail.com>
4099
4100         * initscript/Arch/networkmanager.in
4101           initscript/Arch/networkmanager-dispatcher.in
4102                 - Updates for Arch Linux (gnome.org #523701)
4103
4104 2008-03-25  Dan Williams  <dcbw@redhat.com>
4105
4106         * libnm-glib/nm-ip4-config.c
4107           libnm-glib/nm-active-connection.c
4108           libnm-glib/nm-access-point.c
4109                 - Use nm_object_queue_notify() instead of g_object_notify()
4110
4111         * libnm-glib/nm-device.c
4112                 - (demarshal_ip4_config): distinguish between successful but missing
4113                         ip4-config request, and unsuccessful and missing ip4-config request
4114                 - (nm_device_get_ip4_config): don't try to demarshal a NULL ip4-config
4115                         path
4116                 - Use nm_object_queue_notify() instead of g_object_notify()
4117
4118         * libnm-glib/nm-device-802-11-wireless.c
4119                 - (demarshal_active_ap): distinguish between successfull but missing
4120                         active-ap request, and unsuccessful and missing active-ap request
4121                 - (dispose, clean_up_aps): consolidate AP list and active AP clearing
4122                         code
4123                 - (nm_device_802_11_wireless_set_wireless_enabled): add a private hook
4124                         for the NMClient to notify the device that wireless is disabled,
4125                         and therefore to clear the AP list and active AP
4126                 - Use nm_object_queue_notify() instead of g_object_notify()
4127
4128         * libnm-glib/nm-client.c
4129                 - (poke_wireless_devices_with_rf_status): new function
4130                 - (update_wireless_status): notify wireless devices of the rfkill status
4131                         so they can clean up if needed
4132                 - Use nm_object_queue_notify() instead of g_object_notify()
4133
4134 2008-03-25  Dan Williams  <dcbw@redhat.com>
4135
4136         * libnm-glib/nm-object.c
4137           libnm-glib/nm-object-private.h
4138                 - (nm_object_queue_notify): add helper to batch & postpone GObject notify
4139                         signals to an idle handler
4140                 - (nm_object_get_property): add a timeout to the D-Bus method call
4141
4142 2008-03-25  Dan Williams  <dcbw@redhat.com>
4143
4144         * introspection/nm-device-cdma.xml
4145           introspection/nm-device-gsm.xml
4146           introspection/Makefile.am
4147           introspection/all.xml
4148                 - Add introspection for CDMA and GSM devices for PropertiesChanged signal
4149
4150         * src/nm-gsm-device.h
4151           src/nm-gsm-device.c
4152           src/nm-cdma-device.h
4153           src/nm-cdma-device.c
4154           src/Makefile.am
4155                 - Implement PropertiesChanged signals
4156
4157         * libnm-glib/nm-cdma-device.c
4158           libnm-glib/nm-cdma-device.c
4159                 - Attach to PropertiesChanged signals
4160
4161 2008-03-24  Dan Williams  <dcbw@redhat.com>
4162
4163         * libnm-glib/nm-client.c
4164                 - (client_device_added_proxy): add new devices to the internal device
4165                         list so they appear to clients
4166
4167 2008-03-24  Dan Williams  <dcbw@redhat.com>
4168
4169         Massive fixup of libnm-glib to:
4170         a) have all objects (with the exception of VPN) cache their properties and
4171                 update them asynchronously on PropertiesChanged signals from NM
4172         b) return internal const data for most attributes/properties instead of
4173                 allocated values that the caller must free
4174         c) cache wrapped objects such that a given D-Bus path will always map to the
4175                 same GObject returned by libnm-glib
4176         d) remove a few signals and move them to GObject property notifications
4177         e) match recent NM D-Bus API changes for activation/deactivation
4178         f) remove some private functions from libnm-glib headers
4179
4180 2008-03-20  Dan Williams  <dcbw@redhat.com>
4181
4182         * src/nm-manager.c
4183                 - (nm_manager_update_state, manager_device_state_changed,
4184                    nm_manager_activate_device, connection_added_default_handler,
4185                    impl_manager_activate_connection, impl_manager_deactivate_connection):
4186                         queue PropertyChanged singals when the active connections change
4187
4188 2008-03-20  Dan Williams  <dcbw@redhat.com>
4189
4190         * introspection/nm-manager.xml
4191           introspection/nm-manager-client.xml
4192                 - (ActivateConnection): return the object path of the active connection
4193                         on success
4194                 - (GetActiveConnections): remove
4195                 - (DeactivateConnection): new function; deactivate a currently active
4196                         connection
4197                 - Add an ActiveConnections property which returns an array of
4198                         active connection object paths
4199
4200         * introspection/nm-device.xml
4201                 - (Deactivate): remove
4202
4203         * introspection/all.xml
4204                 - Add ActiveConnection introspection
4205
4206         * introspection/nm-active-connection.xml
4207                 - Add the ActiveConnection object
4208
4209         * include/NetworkManager.h
4210                 - Add the Connection.Active D-Bus interface
4211
4212         * src/nm-device-interface.c
4213                 - (impl_device_deactivate): remove
4214
4215         * src/nm-activation-request.c
4216           src/nm-activation-request.c
4217           src/Makefile.am
4218                 - Implement the Connection.Active D-Bus interface
4219
4220         * src/nm-manager.c
4221                 - (get_property, nm_manager_class_init): add ACTIVE_CONNECTIONS property
4222                 - (nm_manager_activate_device): return the active connection path
4223                 - (connection_added_default_handler, impl_manager_activate_connection):
4224                         return the active connection to the caller
4225                 - (add_one_connection_element, impl_manager_get_active_connections):
4226                         remove
4227                 - (impl_manager_deactivate_connection): new function; deactivate an
4228                         active connection
4229
4230         * libnm-glib/nm-device.c
4231           libnm-glib/nm-device.h
4232                 - Remove Deactivate() function
4233
4234 2008-03-19  Dan Williams  <dcbw@redhat.com>
4235
4236         * introspection/nm-manager.xml
4237           introspection/nm-manager-client.xml
4238                 - Rename the ActivateDevice method to ActivateConnection to better
4239                         reflect it's usage; it's arguments get reordered a bit too
4240                 - Convert GetActiveConnections method return from a struct to a dict
4241
4242         * include/NetworkManager.h
4243                 - Define the dict keys for return value of GetActiveConnections
4244
4245         * src/nm-manager.c
4246                 - impl_manager_activate_device -> impl_manager_activate_connection
4247                 - (add_one_connection_element): return a populated hash table, not
4248                         a structure
4249
4250         * libnm-glib/nm-client.c
4251           libnm-glib/nm-client.h
4252                 - nm_client_activate_device -> nm_client_activate_connection
4253                 - nm_client_free_active_connection_element -> nm_client_free_active_connections_element
4254                 - (nm_client_get_active_connections): return a GSList of GHashTables,
4255                         instead of the custom structures.  Each element of the returned list
4256                         must be freed with nm_client_free_active_connections_element()
4257
4258 2008-03-18  Dan Williams  <dcbw@redhat.com>
4259
4260         * system-settings/plugins/ifcfg-fedora/parser.c
4261           system-settings/plugins/ifcfg-fedora/parser.h
4262           system-settings/plugins/ifcfg-fedora/plugin.c
4263                 - Read settings from /etc/sysconfig/network-scripts/ instead of using
4264                         profiles.  DNS servers and searches must now be stored in the ifcfg
4265                         files themselves
4266
4267 2008-03-18  Tambet Ingo  <tambet@gmail.com>
4268
4269         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_update_secrets): Don't
4270         print out username and password, it's supposed to be a secret.
4271
4272         * src/nm-device-802-3-ethernet.c (ppp_state_changed): Handle authentication 
4273         request and set the device state accordingly.
4274
4275 2008-03-18  Tambet Ingo  <tambet@gmail.com>
4276
4277         * src/nm-device-802-3-ethernet.c: Implement wired 802.1x authentication.
4278
4279         * libnm-util/nm-setting-wireless-security.h: Fix a typo.
4280
4281 2008-03-18  Dan Williams  <dcbw@redhat.com>
4282
4283         * src/vpn-manager/nm-vpn-connection.c
4284                 - (get_secrets_cb): handle new GetSecrets return format
4285
4286 2008-03-18  Dan Williams  <dcbw@redhat.com>
4287
4288         Adapt system settings service for split 802.1x.
4289
4290         * system-settings/src/nm-system-config-interface.h
4291                 - clarify return value of get_secrets()
4292
4293         * system-settings/src/dbus-settings.c
4294                 - (string_to_gvalue, destroy_gvalue, add_one_secret_to_hash): remove
4295                 - (check_for_secrets): check if there actually secrets returned by a
4296                         plugin
4297                 - (exported_connection_get_secrets): just return the plugin-returned
4298                         hash of settings' secrets if it looks valid
4299
4300         * system-settings/plugins/ifcfg-fedora/plugin.c
4301                 - (get_secrets): add split secrets with correct format to reply hash
4302
4303         * system-settings/plugins/ifcfg-fedora/parser.c
4304           system-settings/plugins/ifcfg-fedora/parser.h
4305                 - (copy_one_cdata_secret, connection_data_copy_secrets,
4306                    connection_data_free, connection_data_add): keep secrets for
4307                         different settings in different hashes
4308
4309 2008-03-17  Tambet Ingo  <tambet@gmail.com>
4310
4311         Clean up activating device deactivation.
4312
4313         * src/nm-device.c (real_activation_cancel_handler): Remove. The same thing
4314         should be done whether the device activation gets cancelled or the device
4315         is just getting deactivated.
4316         (nm_device_activation_cancel): Remove.
4317         (nm_device_deactivate_quickly): Handle the case where device is activating.
4318
4319         * src/nm-device-802-11-wireless.c (real_activation_cancel_handler): Remove.
4320         It does the exact same thing as real_deactivate_quickly().
4321
4322 2008-03-17  Dan Williams  <dcbw@redhat.com>
4323
4324         Split the 802.1x bits out of the wireless-security setting so they are
4325         generalized enough for wired 802.1x to use too.
4326
4327         * introspection/nm-exported-connection.xml
4328                 - GetSecrets now returns 'a{sa{sv}}' (a hash of settings hashes) instead
4329                         of just a hash of the secrets for one setting
4330
4331         * libnm-util/nm-setting-wireless-security.c
4332           libnm-util/nm-setting-wireless-security.h
4333                 - Remove 802.1x-specific stuff
4334                 - Added leap-username and leap-password properties for old-school LEAP
4335
4336         * src/nm-device.c
4337           src/nm-device.h
4338                 - (connection_secrets_updated_cb): take a list of updated settings names,
4339                         not just one
4340
4341         * src/supplicant-manager/nm-supplicant-config.c
4342           src/supplicant-manager/nm-supplicant-config.h
4343                 - (nm_supplicant_config_add_setting_wireless_security): remove 802.1x
4344                         specific stuff; fix for updated LEAP bits; punt 802.1x stuff
4345                         to nm_supplicant_config_add_setting_8021x()
4346                 - (nm_supplicant_config_add_setting_8021x): add an 802-1x setting to
4347                         the supplicant config
4348
4349         * src/nm-device-802-11-wireless.c
4350                 - (build_supplicant_config): pass in the 802.1x setting too, if any
4351                 - (real_connection_secrets_updated): take a list of updated settings
4352                         names, not just one
4353
4354         * src/nm-device-802-3-ethernet.c
4355           src/nm-cdma-device.c
4356           src/nm-gsm-device.c
4357                 - (real_connection_secrets_updated_cb): take a list of updated settings
4358                         names, not just one
4359
4360         * src/nm-activation-request.c
4361           src/nm-activation-request.h
4362                 - (nm_act_request_class_init): the 'connection-secrets-updated' signal
4363                         now passes a list of updated settings names, not just one
4364                 - (update_one_setting): new function; handle one updated setting
4365                 - (get_secrets_cb): handle multiple settings returned from the
4366                         settings service; have to be careful of ordering here as there are
4367                         some dependencies between settings (ex. wireless-security and 802.1x
4368                         in some cases)
4369
4370         * src/marshallers/nm-marshal.list
4371                 - new marshaller for connection-secrets-updated signal
4372
4373         * libnm-util/nm-setting-8021x.c
4374                 - Add back the 'pin' and 'psk' settings, for EAP-SIM and EAP-PSK auth
4375                         methods
4376                 - (verify): a valid 'eap' property is now required
4377
4378         * libnm-util/nm-connection.c
4379                 - (register_default_settings): add priorities to settings; there are
4380                         some dependencies between settings, and during the need_secrets
4381                         calls this priority needs to be respected.  For example, only the
4382                         wireless-security setting knows whether or not the connection is
4383                         going to use 802.1x or now, so it must be asked for secrets before
4384                         any existing 802.1x setting is
4385                 - (nm_connection_lookup_setting_type): expose
4386
4387         * libnm-util/nm-setting-wireless.c
4388                 - (verify): should verify even if all_settings is NULL; otherwise won't
4389                         catch the case where there is missing security
4390
4391         * libnm-util/nm-setting-wireless-security.c
4392                 - Remove everything to do with 802.1x
4393                 - Add old-school LEAP specific properties for username and password
4394                 - (need_secrets): rework LEAP secrets checking
4395                 - (verify): rework for LEAP and 802.1x verification
4396
4397 2008-03-17  Dan Williams  <dcbw@redhat.com>
4398
4399         * src/NetworkManagerPolicy.c
4400                 - (auto_activate_device): always remove the current activation check
4401                         from the pending activation list, otherwise when the policy gets
4402                         destroyed on NM exit it will attempt to free the already freed
4403                         activation check
4404
4405 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4406
4407         * src/backends/NetworkManagerSlackware.c 
4408         (nm_system_device_setup_static_ip4_config): Remove, it's unused.
4409
4410         * src/backends/NetworkManagerSuSE.c: Add missing includes.
4411
4412 2008-03-14  Dan Williams  <dcbw@redhat.com>
4413
4414         * src/nm-manager.c
4415                 - (nm_device_interface_get_iface): g_object_get() will return an
4416                         allocated value, so this function must not return const
4417                 - (nm_device_interface_activate): free returned iface
4418
4419 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4420
4421         * libnm-util/Makefile.am: Add new files to build.
4422
4423         * libnm-util/nm-connection.c: Register NMSetting8021x.
4424
4425         * libnm-util/nm-setting-8021x.c
4426         * libnm-util/nm-setting-8021x.h: Implement.
4427
4428 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4429
4430         * libnm-util/Makefile.am: Add new files to build.
4431
4432         * libnm-util/nm-connection.c: Register NMSetting8021x.
4433
4434         * libnm-util/nm-setting-8021x.c
4435         * libnm-util/nm-setting-8021x.h: Implement.
4436
4437 2008-03-14  Tambet Ingo  <tambet@gmail.com>
4438
4439         * src/NetworkManagerPolicy.c (auto_activate_device): Don't leak device and
4440         data.
4441
4442 2008-03-14  Dan Williams  <dcbw@redhat.com>
4443
4444         * include/wireless-helper.h
4445           include/Makefile.am
4446                 - One place for all the junk needed for #including wireless.h
4447
4448         * test/nm-tool.c
4449           src/NetworkManagerAP.c
4450           src/wpa.c
4451           src/Makefile.am
4452           libnm-util/nm-utils.c
4453           libnm-util/nm-setting-wireless.c
4454           libnm-glib/nm-device-802-11-wireless.c
4455           libnm-glib/nm-access-point.c
4456           libnm-glib/libnm-glib-test.c
4457                 - include wireless-helper.h, not iwlib.h
4458
4459         * configure.in
4460                 - Don't need libiw really, just need to check for wireless.h
4461
4462         * src/kernel-types.h
4463                 - Remove; used types moved into wpa.c
4464
4465         * src/nm-device-802-11-wireless.c
4466                 - (nm_device_802_11_wireless_update_signal_strength,
4467                    real_get_generic_capabilities, nm_device_802_11_wireless_get_mode,
4468                    nm_device_802_11_wireless_set_mode,
4469                    nm_device_802_11_wireless_get_frequency,
4470                    nm_device_802_11_wireless_get_ssid,
4471                    nm_device_802_11_wireless_set_ssid,
4472                    nm_device_802_11_wireless_get_bitrate,
4473                    nm_device_802_11_wireless_get_bssid,
4474                    nm_device_802_11_wireless_disable_encryption): use ioctl() directly
4475                         instead of iwlib functions
4476
4477 2008-03-14  Dan Williams  <dcbw@redhat.com>
4478
4479         * src/ppp-manager/nm-ppp-manager.c
4480                 - (impl_ppp_manager_need_secrets): since it's asynchronous now, it
4481                         should only take the DBusGMethodInvocation argument, not user/pass
4482                         too.  With dbus-glib, async functions only take 2 C arguments since
4483                         the real dbus method arguments get passed back with
4484                         dbus_g_method_return()
4485
4486 2008-03-13  Tambet Ingo  <tambet@gmail.com>
4487
4488         * system-settings/plugins/ifcfg-suse/plugin.c (update_default_routes): 
4489         Adapt the changes of NMSettingIP4Config.
4490
4491 2008-03-13  Dan Williams  <dcbw@redhat.com>
4492
4493         * src/NetworkManagerUtils.c
4494           src/NetworkManagerUtils.h
4495                 - (nm_ether_ntop): replacement for iw_ether_ntop()
4496
4497         * src/NetworkManagerAP.c
4498           src/nm-device-802-11-wireless.c
4499           src/nm-device-802-3-ethernet.c
4500                 - s/iw_ether_ntop/nm_ether_ntop/g
4501
4502 2008-03-13  Dan Williams  <dcbw@redhat.com>
4503
4504         * src/NetworkManagerPolicy.c
4505                 - (update_routing_and_dns): never set the default route through an
4506                         IPv4LL addressed device
4507
4508 2008-03-13  Dan Williams  <dcbw@redhat.com>
4509
4510         * NetworkManagerUtils.c
4511           NetworkManagerUtils.h
4512                 - Remove NMSock stuff
4513                 - Remove the completion stuff
4514
4515         * nm-device.c
4516           nm-device.h
4517           NetworkManager.c
4518           NetworkManagerSystem.c
4519           autoip.c
4520           nm-device-802-11-wireless.c
4521           nm-device-802-3-ethernet.c
4522                 - Remove NMSock and completion stuff
4523                 - Remove nm_ioctl_info()
4524
4525 2008-03-12  Dan Williams  <dcbw@redhat.com>
4526
4527         * src/nm-device.c
4528                 - (merge_ip4_config): avoid duplicates
4529
4530 2008-03-12  Dan Williams  <dcbw@redhat.com>
4531
4532         * libnm-util/nm-setting-ip4-config.c
4533           libnm-util/nm-setting-ip4-config.h
4534                 - Remove 'manual' and 'autoip' properties
4535                 - Add 'method' property
4536                 - (verify): fix verification with 'method'
4537                 - (finalize): free 'method'
4538                 - (set_property, get_property, nm_setting_ip4_config_class_init): fix
4539                         up for 'method'
4540
4541         * src/nm-device.c
4542                 - (real_act_stage3_ip_config_start): check IP4Config method
4543                 - (nm_device_new_ip4_autoip_config): add a note about not sucking in
4544                         the future
4545                 - (merge_ip4_config): IP settings are valid with DHCP too
4546                 - (real_act_stage4_get_ip4_config): handle all IP4Config methods
4547                 - (real_act_stage4_ip_config_timeout): don't do autoip on DHCP timeout
4548
4549         * src/nm-device-802-11-wireless.c
4550                 - (real_act_stage3_ip_config_start): remove; autoip only on demand
4551                 - (real_act_stage4_get_ip4_config): just chain up to parent; autoip
4552                         only on demand
4553
4554         * system-settings/plugins/ifcfg-fedora/parser.c
4555           system-settings/plugins/ifcfg-suse/parser.c
4556                 - (make_ip4_setting): fix up for 'method'
4557
4558 2008-03-12  Dan Williams  <dcbw@redhat.com>
4559
4560         * system-settings/plugins/ifcfg-fedora/parser.c
4561           system-settings/plugins/ifcfg-fedora/parser.h
4562                 - (get_ifcfg_name): ignore more file suffixes
4563                 - (is_wireless_device): fix check for ifcfgs that have no TYPE
4564
4565 2008-03-12  Dan Williams  <dcbw@redhat.com>
4566
4567         * configure.in
4568                 - Bring in the bits of gnome-common we actually use (all 15 lines)
4569
4570 2008-03-12  Dan Williams  <dcbw@redhat.com>
4571
4572         * system-settings/plugins/ifcfg-fedora/plugin.c
4573                 - (write_auto_wired_connection): new function; write out an auto
4574                         wired connection file since the applet isn't doing it any more
4575                 - (reload_all_connections): write out the auto wired connection file
4576                         if there aren't any wired connections already
4577                 - (init): don't leak a GError
4578
4579 2008-03-12  Dan Williams  <dcbw@redhat.com>
4580
4581         * src/nm-device-interface.c
4582                 - (nm_device_interface_activate): print the ID of the connection
4583                         that's about to be activated
4584
4585 2008-03-12  Dan Williams  <dcbw@redhat.com>
4586
4587         Harmonize the 802.11 bitrate API
4588
4589         * introspection/nm-access-point.xml
4590                 - 'Rate' -> 'MaxBitrate'; clarify units
4591
4592         * introspection/nm-device-802-11-wireless.xml
4593                 - Clarify units of 'Bitrate'
4594
4595         * src/NetworkManagerAP.c
4596           src/NetworkManagerAP.h
4597                 - (set_property, get_property, nm_ap_class_init): rename 'rate'
4598                         property to 'max-bitrate'
4599                 - (foreach_property_cb): convert rate to Kb/s
4600
4601         * src/nm-device-802-11-wireless.c
4602                 - (nm_device_802_11_wireless_get_bitrate): return rate in Kb/s
4603
4604         * libnm-glib/nm-access-point.c
4605           libnm-glib/nm-access-point.h
4606                 - 'rate' -> 'max-bitrate'
4607
4608         * test/nm-tool.c
4609           libnm-glib/libnm-glib-test.c
4610                 - Fix up for these changes
4611
4612 2008-03-12  Dan Williams  <dcbw@redhat.com>
4613
4614         * src/nm-device.c
4615                 - (nm_device_set_ip4_config): don't send property notifications when
4616                         the ip4 config is set to NULL; it causes a PropertyChanged signal
4617                         which dbus-glib can't parse because the value is NULL, which isn't
4618                         a legal object path.  Setting the IP4 config to NULL is only
4619                         valid when deactivating a device anyway, so the device state change
4620                         will alert listeners that the ip4 config is invalid.
4621
4622 2008-03-12  Dan Williams  <dcbw@redhat.com>
4623
4624         * src/nm-properties-changed-signal.c
4625                 - (add_to_string): better handling of NULL objects
4626
4627 2008-03-12  Dan Williams  <dcbw@redhat.com>
4628
4629         Move the 'carrier' property from NMDevice to NMDevice8023Ethernet;
4630         convert the libnm-glib NMDevice8023Ethernet to cached properties
4631
4632         * introspection/nm-device-802-3-ethernet.xml
4633                 - New 'Carrier' property
4634                 - New 'PropertiesChanged' signal
4635
4636         * introspection/nm-device.xml
4637                 - Remove 'Carrier' property
4638                 - Remove 'CarrierChanged' signal
4639
4640         * src/nm-device-interface.c
4641           src/nm-device-interface.h
4642                 - (nm_device_interface_init): remove 'carrier' property and
4643                         'carrier-changed' signal
4644
4645         * src/nm-device.c
4646           src/nm-device.h
4647                 - (nm_device_get_carrier, nm_device_set_carrier): remove
4648                 - (nm_device_activate_stage5_ip_config_commit): don't bother updating
4649                         the link here; wired device will handle that
4650                 - (handle_dhcp_lease_change): don't bother updating link here
4651                 - (get_property, nm_device_class_init): remove carrier property
4652
4653         * src/nm-device-802-11-wireless.c
4654                 - (real_update_link, nm_device_802_11_wireless_class_init): remove
4655                         real_update_link(); wireless devices don't use carrier at all
4656                 - (link_timeout_cb, supplicant_iface_state_cb_handler,
4657                    supplicant_iface_connection_state_cb_handler,
4658                    supplicant_mgr_state_cb_handler): remove anything to do with carrier
4659
4660         * src/nm-device-802-3-ethernet.c
4661           src/nm-device-802-3-ethernet.h
4662                 - (nm_device_802_3_ethernet_carrier_on,
4663                    nm_device_802_3_ethernet_carrier_off, constructor): use set_carrier()
4664                         instead of nm_device_set_carrier()
4665                 - (device_state_changed): update link from sysfs on activation;
4666                         replaces real_update_link()
4667                 - (real_update_link): remove, replaced by device_state_changed()
4668                 - (nm_device_802_3_ethernet_get_carrier, set_carrier): new functions
4669                 - (nm_device_802_3_ethernet_get_speed): move up with other getters/setters
4670                 - (real_get_generic_capabilities, real_can_interrupt_activation): use
4671                         new get_carrier function
4672                 - (get_property): add 'carrier' property
4673                 - (nm_device_802_3_ethernet_class_init): add 'carrier' property and
4674                         hook into property-changed signal helper
4675
4676         * src/NetworkManagerPolicy.c
4677                 - (device_carrier_changed): will only ever be called with a wired device
4678                 - (device_added): only hook up to carrier-changed for wired devices
4679
4680         * libnm-glib/nm-device.c
4681           libnm-glib/nm-device.h
4682                 - (constructor, nm_device_class_init): remove carrier-changed signal
4683                 - (device_carrier_changed_proxy): remove; unused
4684                 - (nm_device_get_carrier): remove; carrier a property of wired devices
4685
4686         * libnm-glib/nm-device-802-3-ethernet.c
4687           libnm-glib/nm-device-802-3-ethernet.h
4688                 - Convert to cached properties like AP and Wireless objects
4689                 - (nm_device_802_3_ethernet_get_hw_address): now returns a 'const char *'
4690                         instead of a 'char *', return value should not be freed
4691                 - (nm_device_802_3_ethernet_get_carrier): return current carrier status
4692                 - (constructor): hook into properties-changed helper
4693                 - (set_property, get_property): new functions
4694                 - (nm_device_802_3_ethernet_class_init): export GObject properties
4695
4696         * test/nm-tool.c
4697                 - (detail_device): strdup the wired hardware address too since it's
4698                         cached now
4699
4700         * libnm-glib/libnm-glib-test.c
4701                 - (dump_wired): strdup the wired hardware address too since it's
4702                         cached now
4703
4704 2008-03-12  Dan Williams  <dcbw@redhat.com>
4705
4706         * libnm-util/nm-setting-ip4-config.c
4707           libnm-util/nm-setting-ip4-config.h
4708                 - (set_property, get_property, nm_setting_ip4_config_class_init): add
4709                         the 'autoip' property from the spec
4710
4711 2008-03-11  Dan Williams  <dcbw@redhat.com>
4712
4713         * src/backends/NetworkManagerGeneric.c
4714           src/backends/NetworkManagerGeneric.h
4715                 - (nm_generic_device_get_use_dhcp): remove
4716
4717 2008-03-11  Dan Williams  <dcbw@redhat.com>
4718
4719         * src/nm-device.c
4720                 - (nm_device_deactivate): don't need to munge DNS here; that gets done
4721                         already in nm_device_set_ip4_config()
4722                 - (handle_dhcp_lease_change): fail the device if setting the IP4Config
4723                         due to a DHCP rebind fails
4724                 - (nm_device_set_ip4_config): send property notifications when the
4725                         ip4 config changes
4726                 - (get_property): only report IP4Config property during valid states
4727
4728         * src/NetworkManagerPolicy.c
4729                 - (update_routing_and_dns): ignore devices that don't have an ip4
4730                         config; add parameter 'force_update' to allow callers to specify
4731                         that changes should be made even if the default device doesn't change
4732                 - (device_ip4_config_changed): update DNS and routing when the device's
4733                         IP4Config changes, like for DHCP updates
4734                 - (device_added): listen for ip4-config property changes
4735
4736 2008-03-11  Dan Williams  <dcbw@redhat.com>
4737
4738         Fix address handling as a result of DHCP rebind/renew/reboot.
4739
4740         * src/NetworkManagerSystem.c
4741                 - (check_one_address): delete an address if it doesn't match a given
4742                         one for the same interface
4743                 - (nm_system_device_set_from_ip4_config): don't flush the default route,
4744                         be smarter about flushing addresses (only flush ones that don't
4745                         match the one we're about to apply)
4746
4747         * src/backends/NetworkManagerDebian.c
4748           src/backends/NetworkManagerSuSE.c
4749           src/backends/NetworkManagerArch.c
4750           src/backends/NetworkManagerSlackware.c
4751           src/backends/NetworkManagerRedHat.c
4752           src/backends/NetworkManagerPaldo.c
4753           src/backends/NetworkManagerFrugalware.c
4754           src/backends/NetworkManagerGentoo.c
4755                 - (nm_system_delete_default_route): remove
4756
4757         * src/backends/NetworkManagerGeneric.c
4758           src/backends/NetworkManagerGeneric.h
4759                 - (nm_generic_enable_loopback): fix the loopback device label
4760                 - (nm_generic_delete_default_route): remove; no longer used
4761
4762 2008-03-11  Dan Williams  <dcbw@redhat.com>
4763
4764         * src/nm-device-interface.h
4765                 - Delimit property name words with '-', otherwise g_object_notify()
4766                         doesn't work the way we expect
4767
4768 2008-03-11  Tambet Ingo  <tambet@gmail.com>
4769
4770         * src/nm-hal-manager.c (create_device_and_add_to_list): Don't ignore USB devices.
4771
4772 2008-03-11  Dan Williams  <dcbw@redhat.com>
4773
4774         * src/NetworkManagerPolicy.c
4775                 - (update_routing_and_dns): don't change anything if the default device
4776                         hasn't changed; print something out when switching the default route
4777                         and DNS
4778
4779 2008-03-10  Tambet Ingo  <tambet@gmail.com>
4780
4781         Implement PPPoE.
4782
4783         * src/ppp-manager/nm-ppp-manager.c (create_pppd_cmd_line): Use PPPoE service
4784         setting. Use "nic-$eth".
4785
4786         * src/NetworkManagerPolicy.c (auto_activate_device): Move the check of whether
4787         the device is activating here to fix a race condition.
4788
4789         * src/ppp-manager/nm-pppd-plugin.c (get_credentials): Implement.
4790
4791         * src/ppp-manager/nm-ppp-manager.c (impl_ppp_manager_need_secrets): Implement.
4792         (ppp_watch_cb): Emit a signal to notify pppd is not running anymore.
4793         (nm_ppp_manager_start): Take activation request instead of connection, we might
4794         need it for asking secrets.
4795         (nm_ppp_manager_update_secrets): Implement.
4796
4797         * src/nm-serial-device.c (real_act_stage2_config): Send activation request to
4798         ppp manager start. It might be needed for asking secrets.
4799
4800         * src/nm-device-802-3-ethernet.c (real_connection_secrets_updated): Implement.
4801         (ppp_state_changed): Handle pppd daemon disappearing.
4802         (pppoe_stage2_config): Send activation request to ppp manager start.
4803
4804         * libnm-util/nm-setting-pppoe.c (nm_setting_pppoe_class_init): Fix a typo.
4805
4806         * introspection/nm-ppp-manager.xml: Make NeedSecrets method async, return only
4807         username and password.
4808         
4809 2008-03-10  Dan Williams  <dcbw@redhat.com>
4810
4811         * src/nm-device.c
4812                 - (handle_dhcp_lease_change): apply an IP4 config to a device in
4813                         response to a DHCP lease change
4814                 - (dhcp_state_changed): handle DHCP lease changes while activated
4815                 - (nm_device_set_ip4_config): remove a previously set named config
4816                         when setting an ip4 config
4817
4818 2008-03-10  Dan Williams  <dcbw@redhat.com>
4819
4820         * src/nm-serial-device.c
4821                 - (nm_serial_device_send_command): report errno on error
4822                 - (get_reply_got_data): limit the size of the overall buffer
4823                 - (wait_for_reply_info_destroy): destroy result string
4824                 - (wait_for_reply_got_data): append received data to an overall buffer
4825                         until timeout, filled buffer, or error instead of keeping a per-call
4826                         buffer.  Some devices send data slowly enough that this function
4827                         gets called multiple times for the same command stream.
4828                 - (nm_serial_device_wait_for_reply): initialize overall buffer for
4829                         wait_for_reply_got_data() here
4830
4831 2008-03-10  Dan Williams  <dcbw@redhat.com>
4832
4833         * src/nm-cdma-device.c
4834                 - (do_dial, init_modem): handle errors from
4835                         nm_serial_device_send_command_string()
4836
4837         * src/nm-gsm-device.c
4838                 - (do_dial, manual_registration, automatic_registration_get_network,
4839                    automatic_registration, enter_pin, check_pin, init_modem): handle
4840                         errors from nm_serial_device_send_command_string()
4841
4842 2008-03-10  Dan Williams  <dcbw@redhat.com>
4843
4844         Patch based on ideas suggested by Bas Zoetekouw <bas@debian.org>
4845
4846         * src/named-manager/nm-named-manager.c
4847                 - (compute_searches): prefer searches before domains
4848                 - (compute_domain): new function
4849                 - (rewrite_resolv_conf): write out the 'domain' and 'searches' options
4850                 - (merge_one_ip4_config): if there are no searches in the source config,
4851                         merge domains of the source config into the target config
4852                 - (compute_nameservers): make formatting of resolv.conf a bit nicer
4853
4854 2008-03-10  Dan Williams  <dcbw@redhat.com>
4855
4856         * src/nm-serial-device.c
4857                 - (get_reply_got_data): clean up indentation, shrink serial buffer
4858                 - (wait_for_reply_got_data): try to handle slower serial devices where
4859                         the reply is broken up into multiple reads by concatenating replies
4860                         together until either an error is received or the search string is
4861                         found
4862
4863 2008-03-10  Dan Williams  <dcbw@redhat.com>
4864
4865         * src/nm-device.c
4866                 - (nm_device_bring_down): deactivate the device if it's activating too,
4867                         not just if it's already activated.  This makes sure that everything
4868                         from an association attempt is cleaned up (like DHCP for example)
4869
4870 2008-03-10  Dan Williams  <dcbw@redhat.com>
4871
4872         * src/nm-serial-device.c
4873                 - (config_fd): report error from TCSETA
4874                 - (nm_serial_device_open): fail when config_fd() fails
4875
4876 2008-03-10  Dan Williams  <dcbw@redhat.com>
4877
4878         * src/nm-ip4-config.c
4879                 - (nm_ip4_config_init): allocate searches list
4880                 - (finalize): free searches list
4881
4882 2008-03-09  Dan Williams  <dcbw@redhat.com>
4883
4884         Patch from Bas Zoetekouw <bas@debian.org>
4885
4886         * src/dhcp-manager/nm-dhcp-manager.c
4887                 - (nm_dhcp_manager_get_ip4_config): handle domain-search option too
4888
4889 2008-03-09  Dan Williams  <dcbw@redhat.com>
4890
4891         Patch from Bas Zoetekouw <bas@debian.org>
4892
4893         * src/nm-ip4-config.c
4894           src/nm-ip4-config.h
4895                 - (nm_ip4_config_add_search, nm_ip4_config_get_search,
4896                    nm_ip4_config_get_num_searches): add 'searches' as distinct from
4897                         domains.  'searches' is the correct way to store multiple search
4898                         domains, whereas 'domains' is really just supposed to store one
4899                         domain.  Some sites abuse the DHCP 'domain-name' option to push
4900                         search domains to the client.
4901                 - (nm_ip4_config_add_domain): group with related functions (my patch)
4902
4903 2008-03-09  Dan Williams  <dcbw@redhat.com>
4904
4905         * src/dhcp-manager/nm-dhcp-manager.c
4906                 - (dhclient_run): send interface-specific config files to dhclient
4907
4908 2008-03-07  Dan Williams  <dcbw@redhat.com>
4909
4910         * system-settings/plugins/ifcfg-fedora/parser.c
4911                 - (is_wireless_device): new function; test a device for wireless
4912                         extensions
4913                 - (parser_parse_file): if the ifcfg file doesn't have a TYPE tag,
4914                         test the device for wireless extensions to determine the type
4915
4916 2008-03-07  Dan Williams  <dcbw@redhat.com>
4917
4918         Change manager's StateChange signal to StateChanged for consistency.
4919
4920         * introspection/nm-manager.xml
4921                 - Add 'StateChanged' signal
4922                 - Move 'StateChange' down to the deprecated section
4923
4924         * src/nm-hal-manager.c
4925                 - (nm_hal_manager_new): connect to 'state-changed' instead
4926
4927         * src/NetworkManagerPolicy.c
4928                 - (nm_policy_new): connect to 'state-changed' instead
4929
4930         * src/nm-manager.c
4931           src/nm-manager.h
4932                 - (nm_manager_update_state): emit both 'state-changed' and 'state-change'
4933                 - (nm_manager_class_init): add 'state-changed' and not the deprecation
4934                         of 'state-change'
4935
4936         * libnm-glib/nm-client.c
4937           libnm-glib/nm-client.h
4938                 - (constructor, nm_client_class_init, client_state_changed_proxy):
4939                         track and proxy 'state-changed' instead of 'state-change'
4940
4941 2008-03-07  Dan Williams  <dcbw@redhat.com>
4942
4943         First pass of multiple active device support.  Expect bugs.
4944
4945         * src/nm-ip4-config.c
4946           src/nm-ip4-config.h
4947                 - (nm_ip4_config_get_secondary, nm_ip4_config_set_secondary): remove;
4948                         there are better ways to do this in the named manager
4949
4950         * src/nm-device.c
4951           src/nm-device.h
4952                 - (nm_device_can_activate): return whether the device can activate a
4953                         connection right now; taking into account things like carrier state
4954                         and rfkill state
4955                 - (nm_device_get_best_auto_connection): renamed from
4956                         nm_device_get_best_connection
4957                 - (real_act_stage4_get_ip4_config): MTU stuff is now handled in the
4958                         device subclasses themselves, so that each device can override the
4959                         MTU from it's NMSetting subclass if needed
4960                 - (nm_device_set_ip4_config): set MTU when setting up routes and stuff
4961                         in NetworkManagerSystem.c, not here
4962
4963         * src/named-manager/nm-named-manager.c
4964           src/named-manager/nm-named-manager.h
4965                 - (nm_named_manager_name_owner_changed,
4966                    nm_named_manager_dbus_connection_changed): fix for changes to
4967                         rewrite_resolv_conf()
4968                 - (compute_nameservers): don't need the NMNamedManager at all, remove
4969                         from parameter list
4970                 - (merge_one_ip4_config): new function; merge ip4 configs together
4971                 - (rewrite_resolv_conf): write out resolv.conf from all the stored
4972                         ip4 configs; the VPN config takes precedence, then the best
4973                         device config, then the rest of the configs
4974                 - (get_domain_for_config): take the NMNamedManager as an argument
4975                         to check whether the config is the VPN config
4976                 - (add_ip4_config_to_named): fixups for removal of the 'secondary'
4977                         attribute from ip4 configs
4978                 - (add_all_ip4_configs_to_named): add all the configs in priority order
4979                 - (remove_ip4_config_from_named): fix for changes to
4980                         get_domain_for_config()
4981                 - (nm_named_manager_add_ip4_config): assign the config to the right slot
4982                         based on its type; callers must pass in the type now
4983                 - (get_last_default_domain): remove, unused
4984                 - (nm_named_manager_remove_ip4_config): handle config slots correctly
4985
4986         * src/nm-device-802-11-wireless.c
4987                 - (real_can_activate): new function
4988                 - (real_get_best_auto_connection): renamed from real_get_best_connection
4989                 - (real_act_stage4_get_ip4_config): handle MTU override
4990
4991         * src/nm-device-802-3-ethernet.c
4992                 - (real_can_activate): new function
4993                 - (real_get_best_auto_connection): renamed from real_get_best_connection
4994                 - (real_act_stage4_get_ip4_config): new function; handle MTU override
4995
4996         * src/vpn-manager/nm-vpn-connection.c
4997                 - (nm_vpn_connection_ip4_config_get): don't need to set the 'secondary'
4998                         attribute on the ip4 config
4999
5000         * src/NetworkManagerPolicy.c
5001                 - (nm_policy_auto_get_best_device): remove
5002                 - (nm_policy_device_change_check): remove
5003                 - (update_default_route): new function; set the default route via
5004                         the specified device
5005                 - (get_device_priority): new function; return the priority number of
5006                         a device type WRT which one should have the default route.  Order is
5007                         (highest to lowest)  wired, wireless, GSM, CDMA.
5008                 - (update_routing_and_dns): new function; determine which device should
5009                         have the default route, then update the routing table and DNS
5010                 - (maybe_auto_activate_device): new function; if a device is now
5011                         available for activation, find out what connection it would like to
5012                         activate and do it
5013                 - (schedule_activate_check): new function; if a device can be activated
5014                         now, schedule the activation.  Each device may have only one
5015                         pending activation at a given time.
5016                 - (device_state_changed): if activation was canceled, try again,
5017                         possibly with another connection; if the device was activated,
5018                         update routing and DNS; if the device was deactivated, try again
5019                         with another connection
5020                 - (device_carrier_changed): if there is no carrier, deactivate the
5021                         device; otherwise schedule an activation check for the device
5022                 - (wireless_networks_changed): schedule an activation check for the
5023                         device
5024                 - (device_added): keep track of the signal handler IDs so they can
5025                         be removed when the device goes away
5026                 - (device_removed): remove any signal handlers that might be attached
5027                         to the device; update routing and DNS
5028                 - (schedule_activate_all): new function
5029                 - (connections_added, connection_added, connection_updated): when
5030                         connections change, schedule all devices for an activation check
5031                 - (connection_removed): when a device is deactivated because its
5032                         connection was removed, schedule another activation check for it
5033                 - (nm_policy_destroy): destroy pending activations and disconnect
5034                         all device signal handlers
5035
5036         * src/nm-manager.c
5037                 - (nm_manager_activate_device): if the device was already actived,
5038                         deactivate it
5039                 - (deactivate_old_device): remove
5040                 - (connection_added_default_handler, impl_manager_activate_device):
5041                         don't deactivate other devices when activating this one
5042
5043         * src/backends/NetworkManagerGentoo.c
5044           src/backends/NetworkManagerFrugalware.c
5045           src/backends/NetworkManagerPaldo.c
5046           src/backends/NetworkManagerRedHat.c
5047           src/backends/NetworkManagerSlackware.c
5048           src/backends/NetworkManagerArch.c
5049           src/backends/NetworkManagerSuSE.c
5050           src/backends/NetworkManagerDebian.c
5051                 - (nm_system_get_mtu): remove; MTU should be provided through the
5052                         distro's system settings service plugin instead
5053                 - (nm_system_device_add_default_route_via_device): remove
5054                 - (nm_system_device_add_default_route_via_device_with_iface): remove
5055                 - (nm_system_device_replace_default_route): new function; call
5056                         generic implementation
5057
5058         * src/backends/NetworkManagerGeneric.c
5059           src/backends/NetworkManagerGeneric.h
5060                 - (nm_generic_device_add_default_route_via_device,
5061                    nm_generic_device_add_default_route_via_device_with_iface): remove
5062                 - (nm_generic_device_replace_default_route): replace the default route
5063                         with the given route via some gateway
5064
5065         * src/NetworkManagerSystem.c
5066           src/NetworkManagerSystem.h
5067                 - (nm_system_device_set_from_ip4_config): let the policy handle updates
5068                         to routing and DNS; but set the MTU here
5069                 - (nm_system_vpn_device_set_from_ip4_config): set the route with the
5070                         ip_iface of the active device; use the standard MTU setting function
5071                 - (nm_system_set_mtu): remove
5072                 - (nm_system_device_set_mtu): consolidate MTU setting code in one place
5073
5074 2008-03-07  Tambet Ingo  <tambet@gmail.com>
5075
5076         Rework the interaction between ppp manager and pppd plugin. Register a well
5077         known DBUS service in manager and let the plugin call it's methods instead
5078         of listening plugin's signals.
5079
5080         * src/ppp-manager/nm-pppd-plugin.c: Call ppp-manager dbus methods instead
5081         of emitting signals.
5082
5083         * src/ppp-manager/nm-ppp-manager.c: Implement dbus service here.
5084
5085         * src/ppp-manager/Makefile.am: Build nm-ppp-manager-glue.h.
5086
5087         * src/nm-serial-device.c (real_act_stage2_config): Pass NMConnection to
5088         nm_ppp_manager_start().
5089
5090         * introspection/nm-ppp-manager.xml: New file.
5091
5092         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_get_speed): Handle
5093         the case correctly where driver is trying to send -1 for the speed, which gets
5094         casted to u16 and thus is always > 0.
5095
5096 2008-03-07  Dan Williams  <dcbw@redhat.com>
5097
5098         * src/nm-hal-manager.c
5099                 - (nm_get_device_driver_name): use net.originating_device first, fall
5100                         back to physical device.  HAL has deprecated physical_device.
5101
5102         * libnm-glib/nm-device.c
5103                 - (get_product_and_vendor): use net.originating_device first, fall
5104                         back to physical device.  HAL has deprecated physical_device.
5105                 - (nm_device_update_description): s/physical_device_udi/orig_dev_udi
5106
5107 2008-03-07  Dan Williams  <dcbw@redhat.com>
5108
5109         * src/nm-netlink.c
5110                 - (nm_netlink_get_default_handle): mistakenly removed too much code in
5111                         last commit; fix that
5112                 - (get_link_cache): print error string
5113
5114 2008-03-07  Dan Williams  <dcbw@redhat.com>
5115
5116         * src/nm-netlink.c
5117                 - (nm_netlink_get_default_handle): NMNetlinkMonitor now uses libnl,
5118                         don't need this hack any more (Benoit Boissinot)
5119
5120 2008-03-06  Dan Williams  <dcbw@redhat.com>
5121
5122         * autogen.sh
5123                 - Die gnome-common, die
5124
5125 2008-03-04  Dan Williams  <dcbw@redhat.com>
5126
5127         Patch from Michael Biebl <biebl@debian.org>
5128
5129         * NetworkManager.pc.in
5130                 - doesn't actually depend on dbus-1
5131
5132         * libnm-util/nm-utils.h
5133                 - remove unused #include <dbus/dbus.h>
5134
5135         * libnm-glib/libnm_glib.pc.in
5136                 - depends on glib and dbus-glib
5137
5138 2008-03-02  Dan Williams  <dcbw@redhat.com>
5139
5140         * src/NetworkManagerPolicy.c
5141                 - s/device_state_changed_idle_id/update_state_id/
5142
5143 2008-03-02  Dan Williams  <dcbw@redhat.com>
5144
5145         * src/nm-device.c
5146           src/nm-device.h
5147           src/nm-device-802-11-wireless.c
5148           src/nm-device-802-3-ethernet.c
5149           src/NetworkManagerPolicy.c
5150                 - s/link_active/carrier
5151                 - nm_device_set_active_link() -> nm_device_set_carrier()
5152                 - nm_device_has_active_link() -> nm_device_get_carrier()
5153
5154 2008-03-02  Dan Williams  <dcbw@redhat.com>
5155
5156         * system-settings/plugins/ifcfg-fedora/parser.c
5157                 - (make_wireless_setting): fail connection creation on missing SSID
5158
5159 2008-02-29  Dan Williams  <dcbw@redhat.com>
5160
5161         * src/NetworkManagerPolicy.c
5162                 - (nm_policy_device_change_check): ensure that a previously active
5163                         device with a system connection has a link before denying a switch
5164                         to a user connection
5165
5166 2008-02-29  Dan Williams  <dcbw@redhat.com>
5167
5168         * src/nm-device-802-11-wireless.c
5169                 - (link_timeout_cb): try again if scanning; deactivate the device when
5170                         activated if the link dies
5171                 - (supplicant_iface_connection_state_cb_handler): bump link timeout to
5172                         15 seconds
5173
5174 2008-02-29  Dan Williams  <dcbw@redhat.com>
5175
5176         * src/nm-device-802-11-wireless.c
5177           src/nm-device-802-11-wireless.h
5178                 - (nm_device_802_11_wireless_reset_scan_interval): remove, unused
5179                         elsewhere; fold into the sole user in nm-device-802-11-wireless.c
5180                 - (device_cleanup): reset the scan interval lower when the device
5181                         deactivates
5182                 - (can_scan): base decision mostly off device state, not supplicant
5183                         interface state since the supplicant interface state isn't a
5184                         great indicator of whether the device is active or not
5185                 - (request_wireless_scan): clean up; schedule the next scan here
5186                 - (schedule_scan): only back the scan interval off if a new scan
5187                         actually gets scheduled; and make scan intervals tighter when the
5188                         device is disconnected
5189                 - (supplicant_iface_state_cb_handler): fold in the bits of
5190                         nm_device_802_11_wireless_reset_scan_interval() by resetting scan
5191                         interval to minimum
5192                 - (activation_success_handler): reset scan interval to something
5193                         reasonable 
5194
5195 2008-02-28  Saleem Abdulrasool  <compnerd@compnerd.org>
5196
5197         reviewed by: Steev <steev@steev.net>
5198
5199         * configure.in:
5200         * src/backends/NetworkManagerGentoo.c:
5201         (nm_system_restart_mdns_responder):
5202                 Howl is no longer a supported mDNS provider
5203
5204 2008-02-28  Tambet Ingo  <tambet@gmail.com>
5205
5206         Get rid of a bunch of unused distro specific functions.
5207
5208 2008-02-28  Tambet Ingo  <tambet@gmail.com>
5209
5210         Implement suse plugin for system settings daemon.
5211
5212         * system-settings/plugins/ifcfg-suse/*: Implement.
5213
5214         * system-settings/plugins/Makefile.am: Add ifcfg-suse to subdirs when targeting
5215         suse.
5216
5217         * configure.in: Check (without failing) for gio.
5218         Create ifcfg-suse plugin's Makefile.
5219
5220 2008-02-20  Dan Williams  <dcbw@redhat.com>
5221
5222         * libnm-util/nm-connection.c
5223           libnm-util/nm-connection.h
5224                 - (nm_connection_compare): accept compare flags and pass them to the
5225                         setting compare function
5226
5227         * libnm-util/nm-setting.c
5228           libnm-util/nm-setting.h
5229                 - (nm_setting_compare): accept compare flags; ignore properties that are
5230                         marked fuzzy
5231
5232         * libnm-util/nm-setting-connection.c
5233           libnm-util/nm-setting-wireless.c
5234           libnm-util/nm-setting-ppp.c
5235           libnm-util/nm-setting-wired.c
5236                 - Mark some setting properties as ignorable when doing a fuzzy compare
5237
5238         * src/nm-device.c
5239                 - (device_activation_precheck): use exact compare
5240
5241 2008-02-20  Dan Williams  <dcbw@redhat.com>
5242
5243         * src/NetworkManagerPolicy.c
5244                 - (nm_policy_device_change_check): get scope off the connection, not
5245                         using the manager helper
5246
5247         * src/nm-manager.c
5248           src/nm-manager.h
5249                 - (get_scope_for_proxy): rename from get_type_for_proxy()
5250                 - (connection_get_settings_cb): set scope and path on connection, not
5251                         using GObject data items
5252                 - (get_connection_for_proxy): don't need to return path, since that
5253                         can be gotten from the connection
5254                 - (get_connection_for_proxy): get path off the connection, not from
5255                         parameters
5256                 - (connection_removed_cb, connection_updated_cb): don't need to get
5257                         path from get_connection_for_proxy(); get scope off the connection
5258                         instead of using GObject data items
5259                 - (connection_added_default_handler, add_one_connection_element): use
5260                         nm_connection_get_path() not nm_manager_get_connection_dbus_path()
5261                 - (nm_manager_get_connection_dbus_path): remove
5262                 - (nm_manager_get_connection_scope): remove
5263
5264 2008-02-20  Dan Williams  <dcbw@redhat.com>
5265
5266         * Global rename of NMConnectionSettings -> NMExportedConnection to cut down
5267                 on confusing names
5268
5269         * Add 'path' and 'scope' properties to NMConnection since both NM and the
5270                 applet were having to hack this in anyway.  Remove the 'path' stuff from
5271                 NMExportedConnection
5272
5273         * Internally rename NMConnectionType -> NMConnectionScope
5274
5275         * Provide default implementations of the 'get_id' and 'get_settings' methods
5276                 of NMExportedConnection
5277
5278 2008-02-15  Dan Williams  <dcbw@redhat.com>
5279
5280         * src/nm-device-802-11-wireless.c
5281                 - (device_cleanup): release the AP list here too so that the AP list
5282                         doesn't survive across suspend/resume and up/down.  There is some
5283                         room for optimization, for example blow the list away when the card
5284                         brought back up, but only if the device has only been down for a
5285                         minute or more.
5286
5287 2008-02-15  Dan Williams  <dcbw@redhat.com>
5288
5289         * src/nm-hal-manager.c
5290                 - (modem_device_creator): recognize new HAL modem capabilities
5291
5292 2008-02-12  Dan Williams  <dcbw@redhat.com>
5293
5294         * system-settings/plugins/ifcfg-fedora/plugin.c
5295                 - (watch_path): handle IN_DELETE_SELF too
5296                 - (handle_connection_changed): notify when removing a connection
5297                 - (stuff_changed): don't warn on unknown inotify watches; handle the
5298                         case of a file moving out of the profile directory
5299
5300 2008-02-12  Dan Williams  <dcbw@redhat.com>
5301
5302         * system-settings/plugins/ifcfg-fedora/parser.c
5303                 - (make_ip4_setting): bring IPv4 setting handling more up to spec
5304
5305 2008-02-12  Dan Williams  <dcbw@redhat.com>
5306
5307         * libnm-util/nm-utils.c
5308                 - (nm_utils_convert_uint_array_to_string): don't die on NULL array, it's
5309                         just any empty array
5310
5311 2008-02-12  Dan Williams  <dcbw@redhat.com>
5312
5313         * system-settings/src/nm-system-config-interface.c
5314           system-settings/src/nm-system-config-interface.h
5315                 - (load_connections): get_connections() should now return an allocated
5316                         GSList that the system settings service will free
5317
5318         * system-settings/plugins/ifcfg-fedora/plugin.c
5319           system-settings/plugins/ifcfg-fedora/parser.h
5320           system-settings/plugins/ifcfg-fedora/parser.c
5321                 - Fix up inotify issues; handle keys-* files, handle new files appearing
5322                         in the profile directory, handle resolv.conf file changes
5323
5324 2008-02-10  Dan Williams  <dcbw@redhat.com>
5325
5326         * src/nm-device-802-3-ethernet.c
5327                 - (real_bring_up): save the supplicant interface state signal id
5328                 - (real_bring_down): disconnect from the supplicant interface state
5329                         signal
5330
5331 2008-02-07  Dan Williams  <dcbw@redhat.com>
5332
5333         * initscript/RedHat/NetworkManager.in
5334           initscript/RedHat/NetworkManagerDispatcher.in
5335                 - Add new-style LSB init headers
5336
5337 2008-02-07  Dan Williams  <dcbw@redhat.com>
5338
5339         * system-settings/src/dbus-settings.c
5340           system-settings/src/dbus-settings.h
5341                 - (add_one_secret_to_hash): copy secrets out of the plugin-returned hash
5342                         table of secrets
5343                 - (connection_settings_get_secrets): consolidate error returns into
5344                         one place; use the new get_secrets() plugin interface function to
5345                         get secrets from the plugin itself rather than using GObject data
5346                         magic
5347
5348         * system-settings/src/main.c
5349                 - (connection_added_cb, connection_removed_cb, free_plugin_connections,
5350                    load_connections): keep a private list of the plugin-returned
5351                         connections, don't use the plugin's GSList
5352
5353         * system-settings/plugins/ifcfg-fedora/plugin.c
5354                 - (watch_path): watch the path, not the filename (duh)
5355                 - (reload_all_connections): use the direct hash/equal functions; the
5356                         ones for int aren't appropriate here
5357                 - (get_secrets, system_config_interface_init): implement the
5358                         get_secrets() function
5359                 - (build_one_connection, find_connection_by_path): ifcfg file path is
5360                         now in the connection's ConnectionData instead of being a GObject
5361                         data property
5362                 - (handle_profile_item_changed): ifcfg file path is now in the
5363                         connection's ConnectionData instead of being a GObject data property;
5364                         be sure to copy secrets over from the new connection to the existing
5365                         connection when updating the connection's settings
5366                 - (init): sc_plugin_inotify_init() returns success/fail, not the inotify
5367                         file descriptor
5368
5369         * system-settings/plugins/ifcfg-fedora/parser.c
5370           system-settings/plugins/ifcfg-fedora/parser.h
5371                 - (connection_data_get, copy_one_cdata_secret, clear_one_cdata_secret,
5372                    connection_data_copy_secrets, connection_data_free,
5373                    connection_data_add): new functions; connection data manipulation
5374                 - (make_wireless_security_setting): stuff secrets into the
5375                         connection data, not as GObject data items; make sure to close
5376                         the keys ifcfg file
5377                 - (wireless_connection_from_ifcfg, wired_connection_from_ifcfg): add
5378                         connection data to the connection
5379
5380 2008-02-07  Dan Williams  <dcbw@redhat.com>
5381
5382         * system-settings/src/nm-system-config-interface.c
5383           system-settings/src/nm-system-config-interface.h
5384                 - Add a get_secrets() interface function to retrieve secrets for a
5385                         specific setting of a specific connection.  Document the interface
5386                         a bit more too.
5387
5388 2008-02-07  Dan Williams  <dcbw@redhat.com>
5389
5390         * src/nm-device-802-11-wireless.c
5391                 - (handle_auth_or_fail): new function; consolidate device activation
5392                         failure check after a certain number of failures getting secrets
5393                 - (supplicant_connection_timeout_cb, real_act_stage2_config,
5394                    real_act_stage4_ip_config_timeout): use handle_auth_or_fail() to fail
5395                         the connection if secrets were requested more than a few times
5396                 - (real_act_stage3_ip_config_start): don't clear the wireless secrets
5397                         tries here; otherwise they are cleared before the IP configure
5398                         timeout, which happens with open system WEP when key is wrong
5399                 - (activation_success_handler): clear wireless secrets tries here too
5400
5401 2008-02-07  Dan Williams  <dcbw@redhat.com>
5402
5403         * src/NetworkManagerPolicy.c
5404                 - (connection_updated): clear invalid tag when connection gets updated
5405                         to allow that connection to be tried again
5406                 - (nm_policy_new): save signal ids so they can be disconnected when
5407                         the policy is destroyed
5408                 - (nm_policy_destroy): stop any in-progress state change idle handler,
5409                         and disconnect all signals from the manager object so that none
5410                         of the policy functions gets called after the policy is destroyed
5411
5412 2008-02-06  Dan Williams  <dcbw@redhat.com>
5413
5414         * src/nm-manager.c
5415                 - (finalize): remove devices a bit earlier; clean up system settings
5416                         poke
5417                 - (nm_manager_name_owner_changed): clean up system settings poke when
5418                         the service appears, and try to restart it if it fails
5419                 - (poke_system_settings_daemon_cb): try to get the system settings
5420                         service started through D-Bus service activation
5421                 - (initial_get_connections): start the system settings daemon if it's
5422                         not already running
5423
5424 2008-02-05  Dan Williams  <dcbw@redhat.com>
5425
5426         * src/supplicant-manager/nm-supplicant-config.c
5427                 - (nm_supplicant_config_add_setting_wireless): send scan_ssid=1 for
5428                         broadcast networks too
5429
5430 2008-02-04  Dan Williams  <dcbw@redhat.com>
5431
5432         * system-settings/plugins/ifcfg-fedora/parser.c
5433                 - (make_wireless_security_setting): fix spelling; unencrypted networks
5434                         need key_mgmt set too
5435                 - (parser_parse_file): validate ifcfg file name and don't try to parse
5436                         .bak files; ensure that an error is set whenever NULL gets returned
5437
5438 2008-02-04  Dan Williams  <dcbw@redhat.com>
5439
5440         * system-settings/src/Makefile.am
5441                 - Install D-Bus service activation file for the system settings
5442                         service
5443
5444         * system-settings/src/org.freedesktop.NetworkManagerSystemSettings.service
5445                 - D-Bus service activation file for system settings service
5446
5447 2008-02-04  Dan Williams  <dcbw@redhat.com>
5448
5449         * system-settings/src/main.c
5450                 - (parse_config_file): parse a config file
5451                 - (main): accept --config option and read plugins from config file
5452
5453 2008-02-04  Dan Williams  <dcbw@redhat.com>
5454
5455         * system-settings/plugins/ifcfg-fedora/plugin.c
5456                 - Change reported name to 'ifcfg-fedora'
5457                 - Use IFCFG_PLUGIN_NAME
5458
5459         * system-settings/plugins/ifcfg-fedora/plugin.c
5460                 - Remove PLUGIN_NAME, use IFCFG_PLUGIN_NAME instead
5461
5462 2008-02-04  Dan Williams  <dcbw@redhat.com>
5463
5464         * system-settings/plugins/ifcfg-fedora/parser.c
5465                 - (get_ifcfg_name): new function; factor out ifcfg name finding code
5466                 - (make_connection_setting): use get_ifcfg_name()
5467                 - (make_wireless_security_setting): handle shadow key files
5468                 - (get_one_wep_key): treat empty string as NULL
5469
5470 2008-02-04  Dan Williams  <dcbw@redhat.com>
5471
5472         * src/supplicant-manager/nm-supplicant-manager.c
5473                 - (poke_supplicant_cb): reschedule the poke as a timeout, don't let
5474                         glib automatically reschedule
5475                 - (nm_supplicant_manager_init): immediately try to start the supplicant
5476                 - (nm_supplicant_manager_name_owner_changed): immediately try to restart
5477                         the supplicant
5478
5479 2008-02-01  Dan Williams  <dcbw@redhat.com>
5480
5481         * src/NetworkManagerPolicy.c
5482                 - (device_state_changed): schedule a change check when a device gets
5483                         deactivated so something happens if you disconnect GSM/CDMA
5484
5485 2008-01-31  Dan Williams  <dcbw@redhat.com>
5486
5487         * src/nm-device-802-11-wireless.h
5488           src/nm-device-802-11-wireless.c
5489                 - (ap_list_get_ap_by_ssid, is_associated,
5490                    nm_device_802_11_wireless_ap_list_get_ap_by_ssid,
5491                    nm_device_802_11_wireless_ap_list_get_ap_by_obj_path): remove
5492                 - (nm_device_802_11_wireless_get_activation_ap): collapse
5493                         nm_device_802_11_wireless_ap_list_get_ap_by_obj_path() into this
5494                         function
5495
5496 2008-01-30  Dan Williams  <dcbw@redhat.com>
5497
5498         * system-settings/plugins/ifcfg
5499         * system-settings/plugins/ifcfg-fedora
5500                 - Move the ifcfg plugin to ifcfg-fedora
5501
5502 2008-01-24  Dan Williams  <dcbw@redhat.com>
5503
5504         * libnm-glib/nm-device-802-11-wireless.c
5505                 - (get_access_point): move the "/" check here; check for invalid path
5506                         too
5507                 - (nm_device_802_11_wireless_set_active_ap): leave the "/" check up
5508                         to get_access_point()
5509                 - (access_point_added_proxy, access_point_removed_proxy): don't try
5510                         to send signals for non-existent access points
5511
5512 2008-01-24  Dan Williams  <dcbw@redhat.com>
5513
5514         * libnm-glib/nm-device-802-11-wireless.c
5515                 - (nm_device_802_11_wireless_set_active_ap): path of "/" means no AP
5516
5517 2008-01-23  Dan Williams  <dcbw@redhat.com>
5518
5519         * libnm-glib/libnm_glib.c
5520                 - (libnm_glib_init): make thread joinable
5521                 - (libnm_glib_ctx_free): join thread on exit to clean up memory
5522
5523 2008-01-23  Dan Williams  <dcbw@redhat.com>
5524
5525         * test/libnm_glib_test.c
5526                 - (signal_handler, setup_signals): trap SIGINT and SIGTERM
5527                 - (main): set up signal handlers; call libnm_glib_shutdown
5528
5529 2008-01-21  Dan Williams  <dcbw@redhat.com>
5530
5531         * include/NetworkManager.h
5532                 - Add CDMA mobile broadband card device type
5533
5534         * src/nm-hal-manager.c
5535                 - (modem_device_creator): handle both CDMA and GSM modems; the device
5536                         must now be tagged with 'cdma' or 'gsm' capability
5537
5538         * src/nm-cdma-device.c
5539           src/nm-cdma-device.h
5540           src/Makefile.am
5541                 - Add the CDMA mobile broadband card device class
5542
5543         * libnm-util/nm-connection.c
5544                 - (register_default_settings): add NMSettingCdma
5545
5546         * libnm-util/nm-setting-cdma.c
5547           libnm-util/nm-setting-cdma.h
5548           libnm-util/Makefile.am
5549                 - Add the CDMA mobile broadband card setting class
5550
5551         * libnm-glib/nm-cdma-device.c
5552           libnm-glib/nm-cdma-device.h
5553           libnm-glib/Makefile.am
5554                 - Add the CDMA mobile broadband card GLib proxy class
5555
5556         * libnm-glib/nm-client.c
5557                 - (get_device): handle CDMA devices too
5558
5559 2008-01-21  Dan Williams  <dcbw@redhat.com>
5560
5561         * src/ppp-manager/nm-ppp-manager.c
5562                 - (ip4_config_get): set peer address too
5563
5564         * src/ppp-manager/nm-pppd-plugin.c
5565                 - (nm_ip_up): try harder to get the peer's address
5566
5567         * src/NetworkManagerSystem.c
5568                 - (nm_system_device_set_from_ip4_config): if the IP4Config has a peer
5569                         address, use that too.  Otherwise, some PPP connections won't work.
5570
5571 2008-01-19  Dan Williams  <dcbw@redhat.com>
5572
5573         * src/NetworkManagerPolicy.c
5574                 - (nm_policy_device_change_check): system connections override user
5575                         connections; don't activate a user connection if there's a currently
5576                         active system connection, and new, better system connections always
5577                         interrupt user connections
5578
5579 2008-01-19  Dan Williams  <dcbw@redhat.com>
5580
5581         * src/nm-manager.h
5582                 - (nm_manager_get_connection_type): new function
5583
5584 2008-01-19  Dan Williams  <dcbw@redhat.com>
5585
5586         * src/nm-device-802-11-wireless.c
5587                 - (real_get_best_connection): collapse find_best_connection() into this
5588                         function
5589
5590 2008-01-19  Dan Williams  <dcbw@redhat.com>
5591
5592         * src/nm-device-802-3-ethernet.c
5593                 - (real_get_best_connection): collapse find_best_connection() into this
5594                         function
5595
5596 2008-01-18  Dan Williams  <dcbw@redhat.com>
5597
5598         * src/nm-device-802-3-ethernet.c
5599                 - (find_best_connection): check MAC address too
5600                 - (real_get_best_connection): let autoconnect=True connections activate
5601                         for devices that don't have carrier detection
5602
5603         * src/nm-device-802-11-wireless.c
5604                 - (find_best_connection): check MAC address too
5605
5606 2008-01-18  Dan Williams  <dcbw@redhat.com>
5607
5608         * system-settings/plugins/ifcfg/parser.c
5609                 - (make_connection_setting): interpret ON_BOOT=y as 'autoconnect=True'
5610
5611 2008-01-17  Dan Williams  <dcbw@redhat.com>
5612
5613         * src/nm-device-802-3-ethernet.c
5614                 - (nm_device_802_3_ethernet_carrier_on,
5615                    nm_device_802_3_ethernet_carrier_off): ignore any spurious netlink
5616                         carrier events that might come in for devices that don't support
5617                         carrier detect
5618
5619 2008-01-17  Dan Williams  <dcbw@redhat.com>
5620
5621         * src/nm-device-interface.c
5622                 - (nm_device_interface_check_connection_conflicts): need to actually
5623                         get the interface, not cast to the object
5624
5625         * src/nm-device.c
5626                 - (nm_device_check_connection_conflicts): need to get the device class,
5627                         not cast the device to the device class
5628
5629 2008-01-17  Dan Williams  <dcbw@redhat.com>
5630
5631         * src/nm-device-802-11-wireless.c
5632                 - (real_check_connection_conflicts): ignore connections that aren't
5633                         wireless connections
5634
5635 2008-01-17  Dan Williams  <dcbw@redhat.com>
5636
5637         * src/NetworkManagerPolicy.c
5638                 - (nm_policy_device_change_check): clear change check idle here
5639                 - (device_change_check_done): remove
5640                 - (schedule_change_check): simplify
5641
5642 2008-01-17  Dan Williams  <dcbw@redhat.com>
5643
5644         * src/nm-manager.c
5645                 - (check_connection_allowed): take an NMDeviceInterface instead of
5646                         an NMDevice object as an argument
5647                 - (nm_manager_activate_device): pass an NMDeviceInterface to
5648                         check_connection_allowed()
5649
5650 2008-01-13  Dan Williams  <dcbw@redhat.com>
5651
5652         * libnm-glib/nm-device-802-11-wireless.c
5653                 - (nm_device_802_11_wireless_get_access_points): fix memory leak
5654
5655 2008-01-12  Dan Williams  <dcbw@redhat.com>
5656
5657         * src/nm-device-802-11-wireless.c
5658                 - (activation_success_handler): if a match was found in the scan list
5659                         and that match is a hidden AP, update that AP's SSID
5660
5661 2008-01-11  Dan Williams  <dcbw@redhat.com>
5662
5663         * src/NetworkManagerAP.c
5664                 - (nm_ap_new_fake_from_connection): mark fake APs as fake
5665
5666         * src/nm-device-802-11-wireless.c
5667                 - (get_active_ap): do two passes over the scan list if the caller
5668                         requests that hidden APs get matched too; during the second pass
5669                         when matching hidden APs, ignore the SSID since hidden APs in the
5670                         scan list don't have an SSID yet
5671                 - (periodic_update): move some checks to
5672                         nm_device_802_11_periodic_update() because not all callers need them
5673                 - (nm_device_802_11_periodic_update): move some checks here from
5674                         perodic_update()
5675                 - (merge_scanned_ap): if the current AP is fake, then don't do strict
5676                         matching on incoming scan results, because the fake AP's flags
5677                         might be slightly different (yet still compatible) with the incoming
5678                         scan result's flags and they might actually be the same AP; update
5679                         the rate on merged APs too
5680                 - (activation_success_handler): update the frequency of the fake AP
5681                         on successful connection; match hidden APs too since if the
5682                         current AP is fake, there might already be a scan result in the
5683                         scan list for the desired AP, just without it's SSID filled in yet
5684
5685 2008-01-10  Dan Williams  <dcbw@redhat.com>
5686
5687         * src/NetworkManagerAP.c
5688                 - (foreach_property_cb): catch more hidden SSID formats
5689
5690 2008-01-10  Dan Williams  <dcbw@redhat.com>
5691
5692         Fix gnome.org #464215.  Requires the kernel patch titled
5693         "Introduce WEXT scan capabilities" but will handle the patch not being
5694         present, you'll just continue to have problems with hidden SSIDs when
5695         using mac80211-based drivers.
5696
5697         * src/supplicant-manager/nm-supplicant-config.h
5698           src/supplicant-manager/nm-supplicant-config.c
5699                 - (nm_supplicant_config_add_setting_wireless): new parameter to indicate
5700                         whether the driver supports SSID scans or not.  If it does, and if
5701                         the AP is hidden, use ap_scan=1 instead of ap_scan=2
5702
5703         * src/nm-device-802-11-wireless.c
5704                 - (constructor): check whether or not the driver supports SSID scans
5705                 - (build_supplicant_config): pass driver SSID scan capability when
5706                         building the wireless bits of the supplicant config
5707
5708 2008-01-09  Dan Williams  <dcbw@redhat.com>
5709
5710         * src/nm-device.c
5711           src/nm-device.h
5712                 - (device_activation_precheck, check_connection_complete): remove this
5713                         virtual function; incomplete connections should be invalid by
5714                         definition, complete-ness should be checked in the setting's
5715                         verify function
5716
5717         * src/nm-serial-device.c
5718           src/nm-gsm-device.c
5719                 - (real_check_connection_complete): remove
5720
5721         * libnm-util/nm-setting-serial.c
5722                 - (verify): new function; ensure there is a PPP setting too
5723
5724         * libnm-util/nm-setting-gsm.c
5725                 - (verify): ensure there is a serial setting too
5726
5727 2008-01-06  Dan Williams  <dcbw@redhat.com>
5728
5729         * src/dhcp-manager/nm-dhcp-manager.c
5730                 - (nm_dhcp_manager_get_ip4_config): handle DHCP-provided MTU
5731                         (gnome.org #332953)
5732
5733 2008-01-04  Dan Williams  <dcbw@redhat.com>
5734
5735         * src/named-manager/nm-named-manager.c
5736                 - (rewrite_resolv_conf, add_ip4_config_to_named): use primary IP4Config's
5737                         nameservers if the secondary config doesn't have any
5738                         (gnome.org #346833)
5739
5740 2008-01-02  Tambet Ingo  <tambet@gmail.com>
5741
5742         * libnm-util/nm-setting-serial.c (nm_setting_serial_class_init): Mark the properties
5743         with G_PARAM_CONSTRUCT so that they get the default values.
5744
5745         * src/nm-gsm-device.c: Add preliminary support for monitoring device. It only monitors
5746         the monitoring device and prints out the output for now. Or more precicely, doesn't
5747         do absolutely anything right now since the montoring device argument is never set.
5748
5749         * src/nm-serial-device.c (serial_debug): Implement. It's very verbose and thus
5750         requires it's own knob to turn it on.
5751         (config_fd): Add NMSettingSerial to the arguments list.
5752         (nm_serial_device_open): Ditto.
5753         (get_reply_got_data): Ignore the terminators at the beginning of the output.
5754         (nm_serial_device_get_io_channel): Implement.
5755
5756         * src/nm-manager.c: Add NMDBusManager to the private data of the NMManager. Asking
5757         a new reference every time (and forgetting to release it sometimes) is a pain and
5758         it's not like NMManager could work without dbus.
5759         (nm_manager_add_device): Register the added device on dbus here.
5760
5761         * src/nm-hal-manager.c (modem_device_creator): Pass NULL for now for the monitoring
5762         device.
5763
5764         * src/nm-device.c (constructor): Don't export the device here, instead export
5765         it when it's added to the NMManager's device list.
5766
5767 2007-12-31  Dan Williams  <dcbw@redhat.com>
5768
5769         * src/nm-device-interface.c
5770           src/nm-device-interface.h
5771                 - (nm_device_interface_check_connection_conflicts): new function
5772
5773         * src/nm-device.c
5774           src/nm-device.h
5775                 - (nm_device_check_connection_conflicts): new function
5776                 - (device_activation_precheck): don't require subclasses to implement
5777                         check_connection_complete()
5778                 - check_connection() -> check_connection_complete()
5779
5780         * src/nm-device-802-11-wireless.c
5781                 - (real_check_connection): remove; unused
5782                 - (real_check_connection_conflicts): implement, handle lockdown for
5783                         system connections
5784
5785         * src/nm-device-802-3-ethernet.c
5786                 - (real_check_connection): remove; unused
5787
5788         * src/nm-manager.c
5789                 - (check_connection_allowed): new function
5790                 - (nm_manager_activate_device): ensure the connection being requested
5791                         is allowed to be activated
5792
5793         * src/nm-serial-device.c
5794           src/nm-gsm-device.c
5795                 - real_check_connection() -> real_check_connection_complete()
5796
5797 2007-12-27  Dan Williams  <dcbw@redhat.com>
5798
5799         * src/nm-device-interface.c
5800           src/nm-device-interface.h
5801                 - (nm_device_interface_error_quark, nm_device_interface_error_get_type):
5802                         normalize and expand errors
5803                 - (nm_device_interface_init): register errors so they can be marshalled
5804                         through dbus-glib
5805                 - (nm_device_interface_activate): ensure that failure of activation
5806                         returns an error
5807
5808         * src/nm-device.c
5809           src/nm-device.h
5810                 - (device_activation_precheck): implementations of check_connection()
5811                         now take a GError and must fill it in if the check fails.  Return
5812                         more descriptive error if the requested connection is already
5813                         activating
5814                 - (nm_device_activate): actually try to return descriptive errors on
5815                         failures
5816
5817         * src/nm-device-802-11-wireless.c
5818           src/nm-device-802-3-ethernet.c
5819           src/nm-serial-device.c
5820           src/nm-gsm-device.c
5821                 - (real_check_connection): return more descriptive errors on failure
5822
5823         * src/NetworkManagerPolicy.c
5824                 - (nm_policy_device_change_check): print activation errors in the logs
5825
5826         * src/nm-manager.c
5827                 - (nm_manager_error_quark, nm_manager_error_get_type,
5828                    nm_manager_class_init): new errors
5829                 - (nm_manager_activate_device): handle errors
5830                 - (nm_manager_error_new): removed
5831                 - (wait_for_connection_expired, connection_added_default_handler,
5832                    impl_manager_activate_device): better error handling
5833
5834 2007-12-27  Dan Williams  <dcbw@redhat.com>
5835
5836         Fixes gnome.org #466954
5837
5838         * src/supplicant-manager/nm-supplicant-settings-verify.c
5839                 - Allow 'frequency' network property
5840
5841         * src/supplicant-manager/nm-supplicant-config.c
5842           src/supplicant-manager/nm-supplicant-config.h
5843                 - (nm_supplicant_config_add_setting_wireless): add 'adhoc_freq' argument
5844                         for callers to specify the frequency an Ad-Hoc network should operate
5845                         on.  Some drivers require this to successfully create an Ad-Hoc
5846                         network.
5847
5848         * src/nm-device-802-11-wireless.c
5849                 - (iw_freq_to_uint32): new function; convert a struct iw_freq into a
5850                         guint32 value in MHz
5851                 - (constructor, nm_device_802_11_wireless_get_frequency): use
5852                         iw_freq_to_uint32()
5853                 - (find_supported_frequency): new function; find a free supported
5854                         frequency for a user-created Ad-Hoc network
5855                 - (build_supplicant_config): if no frequency was specified for a user-
5856                         created Ad-Hoc network, find a free one to use
5857                 - (real_act_stage1_prepare): mark Ad-Hoc connections that don't have
5858                         a specific object as user-created
5859
5860 2007-12-27  Dan Williams  <dcbw@redhat.com>
5861
5862         * libnm-util/nm-utils.c
5863           libnm-util/nm-utils.h
5864                 - (nm_utils_security_valid): add 'adhoc' argument and handle security
5865                         for adhoc networks
5866
5867 2007-12-24  Dan Williams  <dcbw@redhat.com>
5868
5869         * libnm-util/nm-setting-wireless.c
5870                 - (verify): add 802.11a channels 7, 8, 9, 11, 12, 16, 34, 165, 183, 184,
5871                         185, 187, 188, 192, and 196
5872
5873 2007-12-24  Dan Williams  <dcbw@redhat.com>
5874
5875         * src/nm-device-802-11-wireless.c
5876                 - (nm_device_802_11_wireless_get_frequency): handle drivers that return
5877                         a channel # instead of a frequency
5878
5879 2007-12-24  Dan Williams  <dcbw@redhat.com>
5880
5881         * src/NetworkManagerAP.c
5882           src/NetworkManagerAP.h
5883                 - (nm_ap_new_fake_from_connection): pass band to channel_to_freq()
5884                 - (freq_to_channel): handle split band tables
5885                 - (channel_to_freq): handle split band tables, take a band argument
5886
5887 2007-12-24  Dan Williams  <dcbw@redhat.com>
5888
5889         * libnm-util/nm-setting-connection.h
5890           libnm-util/nm-setting-connection.c
5891                 - Add 'lockdown' member
5892
5893 2007-12-22  Dan Williams  <dcbw@redhat.com>
5894
5895         * libnm-util/nm-setting-wireless.c
5896                 - (nm_setting_wireless_class_init): add missing 'rate' property
5897                         specification
5898
5899 2007-12-18  Dan Williams  <dcbw@redhat.com>
5900
5901         Base the NMNetlinkMonitor class on libnl instead of hand-rolled netlink.
5902
5903         * src/nm-netlink-monitor.c
5904           src/nm-netlink-monitor.h
5905                 - Remove handrolled netlink, use libnl instead
5906
5907         * src/nm-device-802-3-ethernet.c
5908                 - (constructor, nm_device_802_3_ethernet_carrier_off,
5909                    nm_device_802_3_ethernet_carrier_on): use new names
5910
5911 2007-12-17  Dan Williams  <dcbw@redhat.com>
5912
5913         * configure.in
5914                 - Bump requirement for libnl to 1.0-pre8 (which works with newer kernels
5915                         and fixes memory leaks)
5916
5917         * src/nm-netlink.c
5918                 - (nm_netlink_get_default_handle): handle new versions of libnl that
5919                         automatically handle the netlink PID
5920
5921 2007-12-17  Dan Williams  <dcbw@redhat.com>
5922
5923         Patch from Michael Biebl <biebl@debian.org>
5924
5925         * configure.in
5926           src/ppp-manager/Makefile.am
5927                 - fix up install dir of pppd plugin
5928                 - clean up configure.in a bit
5929
5930 2007-12-12  Dan Williams  <dcbw@redhat.com>
5931
5932         * system-settings/src/nm-system-settings.conf
5933                 - Allow non-root clients (like the applet) to read settings
5934
5935 2007-12-10  Tambet Ingo  <tambet@gmail.com>
5936
5937         * Replace all occurences of 'UMTS' with 'GSM'.
5938
5939 2007-12-07  Dan Williams  <dcbw@redhat.com>
5940
5941         * src/nm-serial-device.c
5942                 - (real_is_up): serial devices are always "up"
5943
5944 2007-12-07  Dan Williams  <dcbw@redhat.com>
5945
5946         * src/nm-netlink.c
5947           src/NetworkManagerSystem.c
5948                 - (new_nl_handle): ensure that the same netlink pid is never chosen
5949                         twice (gnome.org #491047)
5950                 - Make more robust against allocation-related failures should they occur
5951
5952 2007-12-07  Dan Williams  <dcbw@redhat.com>
5953
5954         Noticed by Christian Persch <chpe@gnome.org>
5955
5956         Always chain up to parent object in dispose and finalize handlers.
5957                 (gnome.org #433112)
5958
5959 2007-12-07  Dan Williams  <dcbw@redhat.com>
5960
5961         * src/nm-device-802-11-wireless.c
5962                 - Wrap #include of linux/mii.h to fix redefined structures due to
5963                         incorrect kernel headers (gnome.org #350061)
5964
5965 2007-12-06  Tambet Ingo  <tambet@gmail.com>
5966
5967         * src/nm-umts-device.c (real_act_stage1_prepare): Flash the modem (drop DTR)
5968         before doing anything else.
5969         (init_modem): Move modem initialization here.
5970
5971         * src/nm-serial-device.c (ppp_state_changed): React on pppd state changes.
5972         (nm_serial_device_flash): Implement.
5973
5974         * src/ppp-manager/nm-ppp-manager.c (name_owner_changed): Fix the typoes: the state
5975         changes signal is "StateChanged" and not "Status".
5976         (ppp_exit_code, ppp_status_changed): Remove the debug output, it's working fine now.
5977
5978 2007-12-06  Dan Williams  <dcbw@redhat.com>
5979
5980         * src/supplicant-manager/nm-supplicant-config.c
5981                 - (nm_supplicant_config_add_setting_wireless_security): reorganize a bit
5982                         to only send some options when they make sense; also send phase2
5983                         option to the supplicant (possible fix for rh #399631)
5984
5985 2007-12-06  Tambet Ingo  <tambet@gmail.com>
5986
5987         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): Change the
5988         arguments: This whole file shouldn't really know anything about NMDevices, it
5989         should deal only with device interfaces. Devices might have different ifaces for
5990         different stuff and this place shouldn't know anything about it.
5991
5992         * src/NetworkManagerPolicy.c: Get rid of leftover global variable global_policy.
5993         (global_state_changed): Implement. In the current NM it's not really important,
5994         but will be required in the case of multiple active devices. (Or even better,
5995         if stuff like that gets moved out from NM).
5996
5997         * src/vpn-manager/nm-vpn-connection.c (connection_state_changed): Don't call
5998         nm_system_device_set_from_ip4_config() directly, use nm_device_set_ip4_config() 
5999         instead.
6000
6001         * src/nm-device.c: Add a ip_face protected member. It's used for 'multi-interface'
6002         devices like serial devices (ttyS0 and ppp0 for example).
6003         (nm_device_get_ip_iface): Implement. Default to the device iface if ip_iface is not
6004         set.
6005         (nm_device_set_ip_iface): Implement.
6006         (nm_device_activate_stage5_ip_config_commit): Move all the extra actions that happen
6007         after setting ip4_config from here ...
6008         (nm_device_set_ip4_config): ... to here. The reason behind it is that no other code
6009         than this function should call nm_system_device_set_from_ip4_config() because no
6010         other code has enough information on which arguments to use. So instead, other code
6011         could just set the new ip4 config using this function and everyone is happy.
6012
6013         * src/nm-umts-device.c: Store the pending ids so that we can remove pending actions
6014         if we happen to get deactivated while something is pending.
6015         (automatic_registration): Handle the response that indicates pending network
6016         registration and wait until the pending registration is done.
6017         (real_deactivate_quickly): If there's a pending operation, cancel it.
6018
6019         * src/nm-serial-device.c (ppp_ip4_config): Set the ip_iface when the iface is up ...
6020         (real_deactivate_quickly): ... and remove it when it's down.
6021         (nm_serial_device_get_reply): Return the timeout id so that the callers can remove
6022         it if needed.
6023         (nm_serial_device_wait_for_reply): Ditto.
6024
6025 2007-12-05  Tambet Ingo  <tambet@gmail.com>
6026
6027         * src/nm-umts-device.c (dial_done): Fix the typoes in warnings.
6028         (get_network_done): Remove newline, nm_info() does it already.
6029         (real_act_stage1_prepare): Turn the modem echo off.
6030
6031         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): In case of serial
6032         device, set the route to the device interface. This is a hack.
6033
6034         * src/nm-serial-device.c (nm_serial_device_send_command_string): Only append carriage 
6035         return, no need for a new-line.
6036         (ppp_ip4_config): Store the ip4 config to be set in the next stage.
6037         Change the device iface here (ugh).
6038         (real_act_stage4_get_ip4_config): Implement.
6039         (real_deactivate_quickly): Free the pending ip4 config if it's still pending.
6040         Restore the device iface.
6041
6042         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Do nothing if the active
6043         device is not wired or wireless (eg, automatically upped) device.
6044
6045         * src/ppp-manager/nm-ppp-manager.c (ip4_config_get): Don't make the config secondary,
6046         it isn't.
6047         (nm_ppp_manager_start): Don't let pppd to set the default route, we want to do it.
6048
6049         * src/nm-hal-manager.c (get_creator): Make sure the device has required capability
6050         before calling it's is_device_fn().
6051
6052 2007-12-05  Dan Williams  <dcbw@redhat.com>
6053
6054         * libnm-util/nm-utils.c
6055                 - (nm_utils_register_value_transformations,
6056                    nm_utils_convert_gvalue_hash_to_string): better debug output of
6057                         GHashTables of GValues too
6058
6059 2007-12-04  Dan Williams  <dcbw@redhat.com>
6060
6061         * initscript/RedHat/NetworkManager.in
6062                 - No longer start named; it's D-Bus interface is going away
6063
6064 2007-12-04  Dan Williams  <dcbw@redhat.com>
6065
6066         Patch from Michael Biebl <biebl@debian.org>
6067
6068         * system-settings/plugins/ifcfg/Makefile.am
6069           system-settings/src/main.c
6070           system-settings/src/Makefile.am
6071                 - Put system settings plugins in NM plugins dir
6072
6073         * src/ppp-manager/Makefile.am
6074           src/ppp-manager/nm-ppp-manager.c
6075                 - Move pppd plugin to NM plugins dir
6076
6077 2007-12-04  Dan Williams  <dcbw@redhat.com>
6078
6079         * libnm-util/nm-setting-vpn-properties.h
6080                 - Clarify usage of the 'data' member of the setting
6081
6082         * libnm-util/nm-setting-vpn-properties.c
6083                 - (nm_setting_vpn_properties_init): initialize the 'data' hash table
6084                 - (set_property): just remove all the settings; don't recreate the has
6085                 - (update_one_secret): don't need to create the hash table here since
6086                         it should always be present
6087
6088 2007-12-03  Tambet Ingo  <tambet@gmail.com>
6089
6090         Implement PIN and PUK requesting.
6091
6092         * src/nm-umts-device.c (enter_pin_done): Request the secret again if it failed.
6093         (enter_pin): Handle PIN and PUK requests.
6094         (real_act_stage1_prepare): Clear the secret type.
6095         (real_connection_secrets_updated): Implement this class method to get
6096         notified when new secrets arrive.
6097         (nm_umts_device_class_init): Add private data back to the umts device class
6098         to store the required secret type.
6099
6100 2007-12-01  Dan Williams  <dcbw@redhat.com>
6101
6102         * system-settings/plugins/ifcfg/parser.c
6103                 - (parser_parse_file): don't try to verify NULL connections
6104
6105 2007-12-01  Dan Williams  <dcbw@redhat.com>
6106
6107         * system-settings/src/main.c
6108                 - (load_connections, add_connection_to_settings): actually export
6109                         plugin-provided connections over D-Bus so NM can get them
6110
6111 2007-12-01  Dan Williams  <dcbw@redhat.com>
6112
6113         * system-settings/plugins/ifcfg/parser.c
6114           system-settings/plugins/ifcfg/parser.h
6115           system-settings/plugins/ifcfg/plugin.c
6116                 - Hook up more inotify bits (untested)
6117
6118 2007-11-29  Dan Williams  <dcbw@redhat.com>
6119
6120         * system-settings/src/nm-system-config-interface.h
6121           system-settings/src/nm-system-config-interface.c
6122                 - (nm_system_config_interface_init,
6123                    nm_system_config_interface_get_connections): add
6124
6125         * system-settings/src/main.c
6126                 - (load_plugins, load_connections, main): use a GSList for plugins
6127                         to ensure priority ordering
6128
6129         * system-settings/plugins/ifcfg/parser.c
6130                 - (ifcfg_error_quark): move to plugin.c, and rename
6131
6132         * system-settings/plugins/ifcfg/plugin.h
6133           system-settings/plugins/ifcfg/plugin.c
6134                 - (ifcfg_plugin_error_quark): move here from parser.c
6135                 - rework connection loading and initialization
6136                 - Add preliminary inotify support for network profile config file
6137
6138 2007-11-28  Tambet Ingo  <tambet@gmail.com>
6139
6140         Merge the beginnings of the new GSM card support.
6141
6142         * src/ppp-manager/nm-ppp-manager.c (nm_ppp_manager_stop): Remove the
6143         ppp watch source before killing pppd - If this happens from g_object_unref()
6144         then the ppp manager is already destroyed by the time the watch callback runs.
6145
6146         * src/nm-hal-manager.c: Add a device_type_name string to the device
6147         creators, so that we can print a nice human readable string when a
6148         device is added.
6149
6150         * src/nm-umts-device.c (automatic_registration_get_network): Query
6151         for the activated network, not much is done with the result thought.
6152
6153         * src/nm-serial-device.c (nm_serial_device_get_reply): Implement.
6154         (ppp_ip4_config): Change the device state to activated here for now.
6155         (real_check_connection): Make sure the connection includes ppp setting.
6156
6157         * libnm-glib/nm-client.c (get_device): Handle umts devices.
6158
6159         * libnm-glib/Makefile.am: Add the new files to build.
6160
6161         * libnm-glib/nm-umts-device.c: 
6162         * libnm-glib/nm-umts-device.h: Implement.
6163
6164 2007-11-26  Tambet Ingo  <tambet@gmail.com>
6165
6166         * src/nm-umts-device.c (automatic_registration_get_network): For now, dial
6167         immediately, nm_serial_device_get_reply() isn't implemented correctly yet.
6168
6169         * src/nm-serial-device.c (wait_for_reply_info_destroy): Don't try to remove
6170         the timeout source - this function is only called when the timeout source has
6171         been removed.
6172         (nm_serial_device_wait_for_reply): Allocate the duplicate responses array
6173         to be big enough to contain the terminating zero element as well.
6174         The timeout argument is meant to be in seconds now.
6175         (real_deactivate_quickly): Implement.
6176
6177         * src/NetworkManager.conf: Allow root to own 
6178         "org.freedesktop.NetworkManager.PPP", deny it for everybody else.
6179
6180         * libnm-util/nm-setting-umts.c: Network type and band properties are ints,
6181         (not unsigned ints).
6182
6183         * libnm-util/nm-setting-serial.c (nm_setting_serial_class_init): Fix a 
6184         small issue with parity bounds - capital letters have lower ascii codes
6185         than lower case letters.
6186
6187         * libnm-util/nm-connection.c (register_default_settings): Register serial
6188         and umts settings.
6189
6190 2007-11-22  Tambet Ingo  <tambet@gmail.com>
6191
6192         Remove the "index" property from devices as not all device types have this.
6193
6194         * include/NetworkManager.h (NM_DBUS_PATH_DEVICE): Remove.
6195
6196         * src/nm-hal-manager.c (nm_get_device_index_from_hal): Remove.
6197         (wired_device_creator): Get the device interface from hal to create the device.
6198         (wireless_device_creator): Ditto.
6199
6200         * src/nm-device.c (nm_device_init): Remove the index member.
6201         (constructor): Remove the checks for index property, make interface property
6202         a require constructor property.
6203         Use the HAL udi for DBus path for devices.
6204         (nm_device_get_index): Remove.
6205         (set_property): Remove index handling.
6206         (get_property): Ditto.
6207         (nm_device_get_dbus_path): Remove.
6208
6209         * src/nm-device-interface.c (nm_device_interface_init): Remove the index
6210         property.
6211
6212         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_link_activated):
6213         Access the device index through it's interface.
6214         (nm_device_802_3_ethernet_link_deactivated): Ditto.
6215         (nm_device_802_3_ethernet_new): Remove the useless argument test_dev. Remove
6216         index argument. Add interface argument.
6217
6218         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_new): Remove
6219         the useless test_dev argument. Remove index argument. Add interface arugment.
6220
6221         * src/NetworkManagerSystem.c (nm_system_device_set_from_ip4_config): Get the
6222         device index through interface.
6223         (nm_system_set_mtu): Ditto.
6224
6225         * introspection/nm-device.xml: Remove the "Index" property.
6226
6227 2007-11-21  Tambet Ingo  <tambet@gmail.com>
6228
6229         * src/nm-serial-device.c: 
6230         * src/nm-serial-device.c: 
6231         * src/nm-umts-device.c:
6232         * src/nm-umts-device.h: Implement.
6233
6234         * src/nm-hal-manager.c (nm_get_device_driver_name): libhal_free_string the string 
6235         allocated by libhal.
6236         (modem_device_creator): Implement.
6237         (register_built_in_creators): Register the modem creator.
6238
6239         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_new): 
6240         Remove the unused test_dev argument.
6241
6242         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_new): Ditto.
6243
6244         * src/Makefile.am: Add new files to build.
6245         Link in ppp-manager.
6246
6247         * libnm-util/nm-setting-umts.c: 
6248         * libnm-util/nm-setting-umts.h: 
6249         * libnm-util/nm-setting-serial.c: 
6250         * libnm-util/nm-setting-serial.h: Implement.
6251
6252         * libnm-util/Makefile.am: Add new files to build.
6253
6254 2007-11-28  Dan Williams  <dcbw@redhat.com>
6255
6256         Patch from Zdeněk Jurka <zdenek.jurka@jware.cz>
6257
6258         Support DHCP-provided static routes.
6259
6260         * src/nm-ip4-config.h
6261           src/nm-ip4-config.c
6262                 - Add get/set functions for static routes
6263
6264         * src/dhcp-manager/nm-dhcp-manager.c
6265                 - (nm_dhcp_manager_get_ip4_config): extract static routes from the
6266                         DHCP response
6267
6268         * src/NetworkManagerSystem.c
6269                 - (nm_system_device_set_from_ip4_config): set any static routes on the
6270                         interface when applying the IP4Config
6271
6272 2007-11-28  Dan Williams  <dcbw@redhat.com>
6273
6274         * src/nm-device-802-11-wireless.c
6275                 - (real_act_stage1_prepare): mark APs created for hidden networks
6276                         as non-broadcasting
6277
6278 2007-11-27  Dan Williams  <dcbw@redhat.com>
6279
6280         * system-settings/src/nm-system-config-interface.h
6281                 - Note how to store secrets on NMSetting objects
6282
6283         * system-settings/src/dbus-settings.c
6284                 - (connection_settings_get_secrets): implement
6285
6286 2007-11-27  Dan Williams  <dcbw@redhat.com>
6287
6288         * system-settings/plugins/ifcfg/Makefile.am
6289           system-settings/plugins/ifcfg/parser.c
6290           system-settings/plugins/ifcfg/parser.h
6291           system-settings/plugins/ifcfg/plugin.c
6292                 - Parse wireless connections too
6293
6294         * system-settings/src/dbus-settings.c
6295           system-settings/src/dbus-settings.h
6296           system-settings/src/main.c
6297                 - Handle connection update/removal if the plugin supports it
6298
6299 2007-11-27  Dan Williams  <dcbw@redhat.com>
6300
6301         * src/nm-dbus-manager.h
6302           src/nm-hal-manager.c
6303                 - Include the correct headers now that NetworkManagerDbusUtils.h doesn't
6304                         do it for them
6305
6306         * src/Makefile.am
6307           src/NetworkManagerDbusUtils.c
6308           src/NetworkManagerDbusUtils.h
6309                 - Remove these two source files; they are unused
6310
6311 2007-11-27  Dan Williams  <dcbw@redhat.com>
6312
6313         * src/vpn-manager/nm-vpn-manager.c
6314                 - (impl_vpn_manager_connect): fix system settings check (found by
6315                         James M. Leddy)
6316
6317 2007-11-26  Dan Williams  <dcbw@redhat.com>
6318
6319         * Fix warnings so everything compiles with --enable-more-warnings
6320
6321 2007-11-25  Dan Williams  <dcbw@redhat.com>
6322
6323         * system-settings/*
6324                 - Rework structure and code to use GModule-loaded plugins and a plugin
6325                         interface that plugins export to the system settings service
6326
6327 2007-11-21  Dan Williams  <dcbw@redhat.com>
6328
6329         * system-settings/*
6330                 - Add Soren's system settings service.  Needs work for distros other
6331                         than Fedora; the backends from NM should mostly migrate to here
6332                         and be converted to GObjects
6333
6334 2007-11-21  Dan Williams  <dcbw@redhat.com>
6335
6336         * libnm-util/nm-setting-vpn-properties.c
6337                 - (set_property): must deep-copy the given settings hash, otherwise
6338                         double-free errors occur when the setting is disposed of
6339
6340 2007-11-21  Dan Williams  <dcbw@redhat.com>
6341
6342         * src/vpn-manager/nm-vpn-act-request.h
6343           src/vpn-manager/nm-vpn-act-request.c
6344                 - Remove; unused
6345
6346 2007-11-20  Dan Williams  <dcbw@redhat.com>
6347
6348         * libnm-util/nm-utils.c
6349                 - (nm_utils_convert_strv_to_string, nm_utils_convert_uint_array_to_string,
6350                    nm_utils_convert_ip4_addr_struct_array_to_string,
6351                    nm_utils_register_value_transformations): print out the readable
6352                         values of more types of properties of NMSettings subclasses
6353
6354 2007-11-20  Dan Williams  <dcbw@redhat.com>
6355
6356         * libnm-util/nm-setting-ip4-config.c
6357                 - (ip4_addresses_from_gvalue, ip4_addresses_to_gvalue,
6358                    nm_setting_ip4_config_class_init): apparently dbus-glib can't
6359                         marshal GValueArrays inside collections, so switch to types that it
6360                         can actually marshal/demarshal
6361
6362 2007-11-16  Dan Williams  <dcbw@redhat.com>
6363
6364         * libnm-util/nm-setting-wireless-security.c
6365                 - (verify_tls, verify_ttls, verify_identity, verify_nai): do some
6366                         minimal verification of EAP methods too
6367                 - (verify): verify phase1 eap methods too
6368
6369 2007-11-15  Dan Williams  <dcbw@redhat.com>
6370
6371         * libnm-glib/nm-device.h
6372           libnm-glib/nm-device.c
6373                 - (nm_device_get_product, nm_device_get_vendor): should be returning
6374                         const char *
6375
6376 2007-11-15  Dan Williams  <dcbw@redhat.com>
6377
6378         * libnm-glib/nm-device.c
6379                 - (get_product_and_vendor): don't try to free things that should be
6380                         freed
6381
6382 2007-11-15  Dan Williams  <dcbw@redhat.com>
6383
6384         * src/NetworkManagerUtils.c
6385                 - (nm_ethernet_address_is_valid): unbreak previous fix
6386
6387 2007-11-15  Dan Williams  <dcbw@redhat.com>
6388
6389         * src/supplicant-manager/nm-supplicant-config.c
6390                 - (nm_supplicant_config_add_setting_wireless_security): handle PEAP
6391                         options
6392
6393 2007-11-15  Dan Williams  <dcbw@redhat.com>
6394
6395         * src/NetworkManagerUtils.c
6396                 - (nm_ethernet_address_is_valid): fix style, clarify
6397                 - (nm_ethernet_addresses_are_equal): don't try to memcmp NULLs
6398
6399         * src/nm-device-802-11-wireless.c
6400                 - (get_active_ap): handle failure from nm_device_802_11_wireless_get_bssid()
6401                 - (nm_device_802_11_wireless_get_ssid,
6402                    nm_device_802_11_wireless_get_bssid,
6403                    nm_device_802_11_wireless_get_bitrate): zero the wreq structure
6404                         before calling the ioctl; fixes valgrind-reported jump depends on
6405                         uninitialized value errors
6406
6407 2007-11-15  Dan Williams  <dcbw@redhat.com>
6408
6409         * libnm-util/nm-setting.c
6410                 - (nm_setting_to_hash, one_property_cb): revert previous commit, it's
6411                         unecessary to serialize 'name'
6412
6413         * src/nm-activation-request.c
6414                 - (get_secrets_cb): fix cases where a full NMSetting is returned from
6415                         the GetSecrets call
6416
6417 2007-11-15  Dan Williams  <dcbw@redhat.com>
6418
6419         * libnm-util/nm-setting-connection.h
6420           libnm-util/nm-setting-connection.c
6421                 - Rename the 'name' property to 'id', because it conflicted with the
6422                         NMSetting superclass' 'name' property.
6423
6424         * libnm-util/nm-setting.c
6425                 - (nm_setting_to_hash): serialize the 'name' property
6426                 - (one_property_cb): ignore 'name' on deserialization of a connection
6427
6428         * src/nm-device-802-11-wireless.c
6429           src/vpn-manager/nm-vpn-connection.c
6430           src/NetworkManagerPolicy.c
6431                 - Fix up for NMSettingConnection 'name'->'id' changes
6432
6433 2007-11-13  Dan Williams  <dcbw@redhat.com>
6434
6435         * libnm-glib/nm-device-802-11-wireless.h
6436           libnm-glib/nm-device-802-11-wireless.c
6437                 - (nm_device_802_11_wireless_get_hw_address): return should be const
6438
6439         * test/nm-tool.c
6440           libnm-glib/libnm-glib-test.c
6441                 - Fixes for above change
6442
6443 2007-11-12  Dan Williams  <dcbw@redhat.com>
6444
6445         * src/supplicant-manager/nm-supplicant-settings-verify.c
6446                 - Allow fragment_size option
6447
6448         * src/supplicant-manager/nm-supplicant-settings-verify.c
6449                 - (nm_supplicant_config_add_setting_wireless_security): use a lower
6450                         EAP fragment size than the default to help some TLS connections
6451
6452 2007-11-12  Dan Williams  <dcbw@redhat.com>
6453
6454         Make certs actually work.  The private key is now a secret, and should be
6455         decrypted when requested by NM.  The private key and phase2 private key
6456         passwords are no longer interesting to NM because they should be used by
6457         the settings service to decrypt the private key itself before passing it
6458         to NM, and hence have been removed as fields.
6459
6460         * libnm-util/nm-setting-wireless-security.h
6461           libnm-util/nm-setting-wireless-security.c
6462                 - Remove private-key-passwd and phase2-private-key-passwd from
6463                         properties
6464                 - (need_secrets_password, need_secrets_eappsk, need_secrets_sim,
6465                    need_secrets): use property #defines instead strings to keep things
6466                         consistent
6467                 - (need_secrets_tls): if a client certificate is present but no
6468                         private key, request the private key
6469                 - (set_property, get_property, nm_setting_wireless_security_class_init):
6470                         remove private key password stuff, mark private keys as secret
6471
6472         * src/supplicant-manager/nm-supplicant-settings-verify.c
6473                 - Remove private_key_passwd and private_key2_passwd from opt_table
6474
6475 2007-11-09  Dan Williams  <dcbw@redhat.com>
6476
6477         Fix vpn-properties setting update_secrets call for new NMSetting stuff.
6478         Since the vpn-properties are managed and known by the VPN daemons themselves,
6479         libnm-util doesn't know what's secret and what's in the setting's 'data'
6480         member.
6481
6482         * libnm-util/nm-setting.h
6483           libnm-util/nm-setting.c
6484                 - Add the ability for subclasses to override update_one_secret
6485
6486         * libnm-util/nm-setting-vpn-properties.c
6487                 - Override update_one_secret and just copy the values into the
6488                         internal table
6489
6490 2007-11-09  Dan Williams  <dcbw@redhat.com>
6491
6492         * libnm-glib/nm-settings.h
6493           libnm-glib/nm-settings.c
6494                 - (nm_settings_new_error): remove
6495                 - (nm_settings_error_quark): add; instead of nm_settings_new_error,
6496                         clients should use g_set_error() with NM_SETTINGS_ERROR
6497
6498 2007-11-09  Dan Williams  <dcbw@redhat.com>
6499
6500         * src/supplicant-manager/nm-supplicant-config.c
6501                 - (nm_supplicant_config_add_setting_wireless_security): private key
6502                         passwords are never sent to wpa_supplicant, because the supplicant
6503                         should never be reading random files from the disk.  Clients like
6504                         the applet are required to decrypt the private keys and send NM
6505                         the decrypted blobs.
6506
6507 2007-11-08  Dan Williams  <dcbw@redhat.com>
6508
6509         * libnm-util/nm-setting-wireless-security.h
6510           libnm-util/nm-setting-wireless-security.c
6511                 - Add 'private-key-decrypted' and 'phase2-private-key-decrypted'
6512                         members to 802-11-wireless-security structure.  This should be used
6513                         to indicate that the values in private-key and phase2-private-key
6514                         are already decrypted by the user agent, and that no
6515                         private-key-passwd or phase2-private-key-passwd should be expected.
6516                         It is not meant to be a stored configuration value, but meant to
6517                         be set when the conneciton is sent to NM over dbus.
6518
6519 2007-11-08  Dan Williams  <dcbw@redhat.com>
6520
6521         * libnm-util/nm-connection.h
6522           libnm-util/nm-connection.c
6523                 - (nm_connection_need_secrets): add argument to return hints
6524
6525         * src/nm-device-802-11-wireless.c
6526                 - (link_timeout_cb, supplicant_connection_timeout_cb,
6527                    real_act_stage2_config, real_act_stage4_ip_config_timeout): handle
6528                         nm_connection_need_secrets() change
6529
6530 2007-11-07  Tambet Ingo  <tambet@gmail.com>
6531
6532         Rework NMSetting structures: Move each setting to it's own file.
6533         Convert to GObject. Remove home grown setting types and use GTypes.
6534         Use GObject property introspection for hash conversion, enumerating
6535         properties, etc.
6536
6537         * libnm-util/nm-setting-connection.[ch]
6538         * libnm-util/nm-setting-ip4-config.[ch]
6539         * libnm-util/nm-setting-ppp.[ch]
6540         * libnm-util/nm-setting-vpn.[ch]
6541         * libnm-util/nm-setting-vpn-properties.[ch]
6542         * libnm-util/nm-setting-wired.[ch]
6543         * libnm-util/nm-setting-wireless.[ch]
6544         * libnm-util/nm-setting-wireless-security.[ch]
6545
6546         New files, each containing a setting.
6547
6548         * libnm-util/nm-setting-template.[ch]: A template for creating new
6549         settings. To use it, just replace 'template' with the new setting
6550         name, and you're half-way done.
6551
6552         * libnm-util/nm-setting.c: Convert to GObject and use GObject
6553         introspection instead of internal types and tables.
6554
6555         * libnm-util/nm-connection.c: Adapt the new NMSetting work.
6556
6557         * libnm-util/nm-param-spec-specialized.[ch]: Implement. Handles
6558         GValue types defined by dbus-glib for composed types like collections,
6559         structures and maps.
6560
6561         * src/*: The API of NMSetting and NMConnection changed a bit: Getting
6562         a setting from connection takes the setting type now. Also, since
6563         the settings are in multiple files, include relevant settings.
6564
6565 2007-10-31  Saleem Abdulrasool <compnerd@compnerd.org>
6566
6567         * configure.in:
6568         * src/backends/NetworkManagerGentoo.c:
6569         (nm_system_restart_mdns_responder): Implement restarts for other mdns
6570         providers in Gentoo.
6571
6572 2007-10-31  Dan Williams  <dcbw@redhat.com>
6573
6574         * libnm-util/nm-connection.c
6575                 - (gvalue_to_string): handle UINT32 arrays
6576
6577 2007-10-31  Dan Williams  <dcbw@redhat.com>
6578
6579         * libnm-glib/nm-device.h
6580           libnm-glib/nm-device.c
6581                 - (nm_device_get_description): remove
6582                 - (nm_device_get_product, nm_device_get_vendor): add
6583                 - (nm_device_update_description): new function (private); walk HAL
6584                         devices to get product and vendor IDs for a specific device
6585
6586 2007-10-31  Dan Williams  <dcbw@redhat.com>
6587
6588         * src/nm-device-802-11-wireless.c
6589                 - (nm_device_802_11_wireless_get_mode): ignore ENODEV errors
6590
6591 2007-10-29  Dan Williams  <dcbw@redhat.com>
6592
6593         * src/nm-hal-manager.c
6594                 - (device_added, device_new_capability): ignore device additions while
6595                         asleep.  Fixes crash caused when NM goes to sleep, a network device
6596                         kernel module is unloaded and reloaded and recognized by NM again.
6597
6598 2007-10-26  Dan Williams  <dcbw@redhat.com>
6599
6600         Patch from Helmut Schaa <hschaa@suse.de> (and more bits from me)
6601
6602         * src/NetworkManagerAP.c
6603           src/NetworkManagerAP.h
6604           libnm-glib/nm-access-point.c
6605           libnm-glib/nm-access-point.h
6606                 - Make 'rate' property a guint32 to better match with WEXT and
6607                         wpa_supplicant and to allow representation of higher bitrates
6608
6609         * src/nm-device-802-11-wireless.c
6610           introspection/nm-device-802-11-wireless.xml
6611           libnm-glib/nm-device-802-11-wireless.c
6612           libnm-glib/nm-device-802-11-wireless.h
6613                 - Make 'bitrate' property a guint32 to match AP 'rate' property type
6614
6615         * src/nm-device-802-3-ethernet.c
6616           src/nm-device-802-3-ethernet.h
6617           introspection/nm-device-802-3-ethernet.xml
6618           libnm-glib/nm-device-802-3-ethernet.c
6619           libnm-glib/nm-device-802-3-ethernet.h
6620                 - Make 'speed' property a guint32 to match other speed/rate types
6621                 - Make nm_device_802_3_ethernet_get_speed() static
6622
6623         * test/nm-tool.c
6624                 - Update for the changes above
6625
6626 2007-10-26  Dan Williams  <dcbw@redhat.com>
6627
6628         * src/named-manager/nm-named-manager.c
6629                 - (rewrite_resolv_conf): clean up error handling to avoid double-free by
6630                     not calling fclose() twice on some error conditions
6631
6632 2007-10-26  Dan Williams  <dcbw@redhat.com>
6633
6634         * src/nm-activation-request.c
6635                 - (dispose): clean up indentation; get the right DBusGProxy object to
6636                         cancel the GetSecrets pending call on.  Need to use the Secrets
6637                         proxy, not the regular connection proxy.  Otherwise the GetSecrets
6638                         pending call doesn't get canceled, and pressing Cancel in the
6639                         applet's password dialog could cause get_secrets_cb() to be called
6640                         after the activation request has already been destroyed
6641
6642 2007-10-24  Dan Williams  <dcbw@redhat.com>
6643
6644         * src/supplicant-manager/nm-supplicant-config.c
6645                 - (nm_supplicant_config_add_blob): pass blob data and length for
6646                         verification
6647                 - (get_hash_cb): use GByteArrays rather than GArrays; easier to follow
6648
6649 2007-10-24  Dan Williams  <dcbw@redhat.com>
6650
6651         * src/supplicant-manager/nm-supplicant-settings-verify.c
6652                 - (opt_table): max length for certificates should be 65536
6653
6654 2007-10-24  Dan Williams  <dcbw@redhat.com>
6655
6656         * src/supplicant-manager/nm-supplicant-interface.c
6657                 - (blob_free): correctly free blob data after use
6658                 - (call_set_blobs): use the right D-Bus interfaace for setBlobs
6659
6660 2007-10-24  Dan Williams  <dcbw@redhat.com>
6661
6662         * libnm-util/nm-setting.c
6663                 - (setting_wireless_security_need_secrets): Fix lookup table logic for
6664                         EAP method need secrets
6665
6666 2007-10-24  Dan Williams  <dcbw@redhat.com>
6667
6668         * src/backends/NetworkManagerRedHat.c
6669                 - (nm_system_update_dns): be a lot smarter about telling nscd to restart
6670
6671 2007-10-23  Dan Williams  <dcbw@redhat.com>
6672
6673         * libnm-util/nm-setting.c
6674           libnm-util/nm-setting.c
6675                 - (nm_setting_compare): implement
6676                 - (default_setting_compare_fn, do_one_compare, compare_gvalue_hash,
6677                    compare_one_hash_gvalue): compare the contents of a setting
6678
6679         * libnm-util/nm-connection.c
6680                 - (nm_connection_compare): implement
6681
6682 2007-10-23  Dan Williams  <dcbw@redhat.com>
6683
6684         * src/nm-activation-request.c
6685                 - (get_secrets_cb): handle getting a setting back that is more than
6686                         just secrets (ie, user changed auth or EAP method or something)
6687
6688 2007-10-23  Dan Williams  <dcbw@redhat.com>
6689
6690         * libnm-util/nm-setting.c
6691           libnm-util/nm-setting.h
6692                 - (nm_setting_verify): new function; verify one setting
6693                 - (nm_settings_verify_all): rename from nm_settings_verify()
6694                 - (setting_connection_verify, setting_wireless_verify): allow NULL
6695                         all_settings
6696
6697         * libnm-util/nm-connection.c
6698                 - (nm_connection_replace_settings, nm_connection_verify,
6699                    nm_connection_new_from_hash): handle nm_settings_verify() rename
6700
6701 2007-10-23  Dan Williams  <dcbw@redhat.com>
6702
6703         * src/nm-device-802-11-wireless.c
6704                 - (real_act_stage2_config): use pre-increment on 'tries' to get the
6705                         desired behavior
6706
6707 2007-10-23  Dan Williams  <dcbw@redhat.com>
6708
6709         * src/supplicant-manager/nm-supplicant-settings-verify.c
6710                 - eap_allowed, phase2_allowed: harmonize with allowed values from
6711                         nm-settings.c
6712
6713 2007-10-23  Dan Williams  <dcbw@redhat.com>
6714
6715         * src/nm-device-802-11-wireless.c
6716                 - (real_act_stage2_config): after the first association failure,
6717                         if the connection still needs secrets ask the user for them
6718                         explicitly.  After the fourth association failure due to bad
6719                         secrets, fail the connection entirely.  Handles the GetSecrets
6720                         loop that NM gets into when the provided secrets don't match up
6721                         with the connection details.
6722
6723 2007-10-23  Dan Williams  <dcbw@redhat.com>
6724
6725         * src/supplicant-manager/nm-supplicant-config.c
6726                 - (nm_supplicant_config_add_setting_wireless_security): only add
6727                         WPA-specific options when WPA is in use
6728
6729 2007-10-23  Dan Williams  <dcbw@redhat.com>
6730
6731         * src/supplicant-manager/nm-supplicant-config.c
6732                 - (nm_supplicant_config_add_setting_wireless_security): 'password'
6733                         secret doesn't need to be unhexified
6734
6735 2007-10-23  Dan Williams  <dcbw@redhat.com>
6736
6737         * libnm-util/nm-setting.c
6738                 - (setting_wireless_security_need_secrets): ensure auth_alg is !NULL
6739                         before trying to do something with it
6740
6741 2007-10-23  Dan Williams  <dcbw@redhat.com>
6742
6743         * src/nm-device-802-11-wireless.c
6744                 - (merge_scanned_ap): handle NULL ssids returned from nm_ap_get_ssid()
6745
6746 2007-10-23  Dan Williams  <dcbw@redhat.com>
6747
6748         * src/nm-device-802-11-wireless.c
6749                 - (merge_scanned_ap): use libnm-util empty SSID check to catch more
6750                         non-SSID-broadcasting APs
6751
6752 2007-10-23  Dan Williams  <dcbw@redhat.com>
6753
6754         * src/NetworkManagerAP.c
6755                 - (match_cipher, security_compatible): remove
6756                 - (nm_ap_check_compatible): use nm_utils_ap_security_compatible() from
6757                         libnm-util instead
6758
6759 2007-10-23  Dan Williams  <dcbw@redhat.com>
6760
6761         * libnm-util/nm-utils.c
6762           libnm-util/nm-utils.h
6763                 - (nm_utils_ap_security_compatible): common function for checking
6764                         whether a specific AP is compatible with an NMConnection
6765
6766 2007-10-23  Dan Williams  <dcbw@redhat.com>
6767
6768         * libnm-util/nm-setting.c
6769                 - (setting_wireless_security_need_secrets, need_secrets_phase2,
6770                    need_secrets_tls, need_secrets_sim, need_secrets_eappsk,
6771                    need_secrets_password, setting_wireless_security_verify): fix
6772                         need_secrets for IEEE 802.1x and WPA-EAP by implementing need
6773                         secrets logic for each supported EAP method
6774
6775 2007-10-23  Dan Williams  <dcbw@redhat.com>
6776
6777         * src/supplicant-manager/nm-supplicant-config.c
6778                 - (nm_supplicant_config_add_setting_wireless_security): fix wpa_supplicant
6779                         config option name, should be "private_key2_passwd"
6780
6781 2007-10-22  Tambet Ingo  <tambet@gmail.com>
6782
6783         Implement support for static IP addresses, additional/overridden DNS and
6784         DNS domain search lists.
6785
6786         * libnm-util/nm-setting.c (uint_array_to_gvalue): Implement.
6787         (ip4_addresses_to_gvalue): Implement.
6788         (convert_array_to_byte_array): Implement.
6789         (nm_setting_populate_from_hash_default): Handle NM_S_TYPE_UINT_ARRAY and
6790         NM_S_TYPE_IP4_ADDRESSES.
6791         (nm_setting_hash): Ditto.
6792         (default_setting_clear_secrets): Add a default case for the switch: IP address
6793         shouldn't be secret, ever.
6794         (setting_ip4_config_verify): Update, requires addresses in case of manual
6795         configurations.
6796         (setting_ip4_config_destroy): Free stuff.
6797
6798         * src/nm-device.c (merge_ip4_config): Implement.
6799         (real_act_stage4_get_ip4_config): Merge IP4 configuration from NMConnection.
6800
6801 2007-10-22  Dan Williams  <dcbw@redhat.com>
6802
6803         * libnm-util/nm-setting.c
6804                 - (setting_wireless_security_verify): allow WEP-40 and WEP-104 as
6805                         pairwise cipher options for Dynamic WEP
6806
6807 2007-10-21  Dan Williams  <dcbw@redhat.com>
6808
6809         * src/NetworkManagerAP.c
6810           src/NetworkManagerAP.h
6811                 - Rename 'articifical' -> 'fake' since that's what they are until
6812                         noticed in scans
6813                 - (nm_ap_new_fake_from_connection): new function to create a 'fake' AP
6814                         from the attributes in an NMConnection object
6815                 - (security_compatible): better handle Dynamic WEP and LEAP; handle
6816                         WPA Enterprise
6817                 - (nm_ap_match_in_list): find a matching AP in a scan list
6818
6819         * src/nm-device-802-11-wireless.c
6820                 - (get_active_ap): add an 'ignore_ap' argument to ignore a specific
6821                         AP when searching the scan list; match on frequency and mode too
6822                 - (nm_device_802_11_wireless_get_frequency): implement
6823                 - (merge_scanned_ap): replace duplicate matching logic with
6824                         nm_ap_match_in_list()
6825                 - (real_act_stage1_prepare): handle a NULL specific object; ie where
6826                         the user is trying to connect to a hidden network that is not yet
6827                         known from the scan list
6828                 - (activation_success_handler): now that the card knows the AP's BSSID,
6829                         there may already be a scanned AP in the scan list that is what
6830                         we really wanted to connect to, but didn't know at the time.  Use
6831                         that instead of the 'fake' AP created at activation start and get
6832                         rid of the 'fake' AP 
6833                 - (cull_scan_list): don't remove fake APs
6834
6835 2007-10-21  Dan Williams  <dcbw@redhat.com>
6836
6837         * src/nm-activation-request.h
6838           src/nm-activation-request.c
6839                 - (nm_act_request_set_specific_object): new function; allow setting the
6840                         specific object if one isn't set yet
6841
6842 2007-10-20  Dan Williams  <dcbw@redhat.com>
6843
6844         * src/supplicant-manager/nm-supplicant-config.h
6845           src/supplicant-manager/nm-supplicant-config.c
6846                 - (nm_supplicant_config_init, nm_supplicant_config_finalize): add a hash
6847                         table to store blobs
6848                 - (nm_supplicant_config_add_blob): new function; add blob to internal
6849                         blob hash table
6850                 - (nm_supplicant_config_get_blobs): new function; get stored blobs
6851                 - (nm_supplicant_config_add_setting_wireless_security): handle
6852                         options that use certificates (ie, blobs)
6853
6854         * src/nm-device-802-11-wireless.c
6855                 - (build_supplicant_config): pass a UID (just use the connection path)
6856                         to the supplicant config as now required
6857
6858         * src/supplicant-manager/nm-supplicant-interface.c
6859                 - (add_network_cb, call_set_blobs, set_blobs_cb, call_set_network): if
6860                         there are any blobs to send to wpa_supplicant, send those first
6861                         before sending the network configuration
6862
6863 2007-10-19  Dan Williams  <dcbw@redhat.com>
6864
6865         Split the GetSecrets() call off to a separate D-Bus interface so that it
6866         can be more easily locked down with D-Bus policy.  Only 'root' (ie, NM)
6867         should be able to call GetSecrets().
6868
6869         * include/NetworkManager.h
6870                 - Define the connection secrets D-Bus interface
6871
6872         * src/vpn-manager/nm-vpn-connection.c
6873                 - (clear_need_auth): get the right proxy object for the connection
6874                         secrets interface
6875                 - (get_connection_secrets): use the connection secrets proxy; send
6876                         empty hints in get secrets request
6877
6878         * src/nm-activation-request.c
6879                 - (nm_act_request_request_connection_secrets): use the connection
6880                         secrets proxy; send empty hints in get secrets request
6881
6882         * src/nm-manager.c
6883           src/nm-manager.h
6884                 - (connection_get_settings_cb): set the connection secrets proxy on
6885                         the connection object too
6886                 - (internal_new_connection_cb): create the connection secrets proxy
6887
6888         * introspection/nm-settings-connection.xml
6889                 - Define Connection.Secrets interface and move GetSecrets there
6890                 - Add a 'hints' argument to GetSecrets
6891
6892         * libnm-glib/nm-settings.c
6893           libnm-glib/nm-settings.h
6894                 - (impl_connection_settings_get_secrets): add 'hints' argument
6895
6896 2007-10-19  Dan Williams  <dcbw@redhat.com>
6897
6898         * src/nm-device.c
6899                 - (constructor): add message about what path a device is exported as
6900                         to help in debugging rh #339011
6901
6902 2007-10-17  Dan Williams  <dcbw@redhat.com>
6903
6904         * libnm-util/nm-utils.h
6905           libnm-util/nm-utils.c
6906                 - (nm_utils_security_valid): common function to help find the intersection
6907                         of capabilities of devices and (optionally) access points
6908
6909 2007-10-17  Dan Williams  <dcbw@redhat.com>
6910
6911         * src/nm-device-802-11-wireless.c
6912                 - (get_wireless_capabilities): add missing braces so that WPA capabilities
6913                         don't get erroneously cleared
6914
6915 2007-10-17  Dan Williams  <dcbw@redhat.com>
6916
6917         * src/nm-manager.h
6918           src/nm-manager.c
6919           src/nm-hal-manager.c
6920                 - (device_removed, finalize, nm_manager_remove_device,
6921                    nm_manager_sleep): add a 'deactivate' argument to 
6922                    nm_manager_remove_device() to fully deactivate devices when necessary
6923                    (ie, always except when waking up)
6924
6925 2007-10-16  Dan Williams  <dcbw@redhat.com>
6926
6927         * libnm-util/nm-setting.c
6928                 - (setting_wireless_security_verify): fix phase2_auth methods; 'sim'
6929                         also isn't valid phase2 autheap method
6930
6931 2007-10-16  Dan Williams  <dcbw@redhat.com>
6932
6933         * libnm-glib/nm-client.c
6934                 - (update_wireless_status): consolidate updates of wireless status
6935                 - (constructor): use update_wireless_status()
6936                 - (manager_running): set wireless status off when NM goes away; requery
6937                         the wireless status when NM comes back
6938
6939 2007-10-16  Dan Williams  <dcbw@redhat.com>
6940
6941         * libnm-glib/nm-client.c
6942                 - (nm_client_activate_device): actually use the fixed-up specific
6943                         object path
6944
6945 2007-10-16  Dan Williams  <dcbw@redhat.com>
6946
6947         * src/nm-hal-manager.c
6948                 - (killswitch_getpower_reply, nm_hal_manager_destroy): only print out
6949                         killswitch error messages once
6950
6951 2007-10-16  Dan Williams  <dcbw@redhat.com>
6952
6953         * src/nm-manager.c
6954                 - (manager_set_wireless_enabled): don't allow wireless to be enabled
6955                         if it's disabled in hardware; don't touch network devices while
6956                         NM is asleep
6957
6958 2007-10-16  Dan Williams  <dcbw@redhat.com>
6959
6960         * libnm-util/nm-client.c
6961                 - (nm_client_activate_device): convert NULL specific_object to "/",
6962                         which is used in place of NULL
6963
6964         * src/nm-manager.c
6965                 - (impl_manager_activate_device): convert "/" specific_object back into
6966                         NULL
6967
6968 2007-10-16  Tambet Ingo  <tambet@gmail.com>
6969
6970         Implement a generic NMSetting creator from setting name.
6971         While at it, get rid of all nm_setting_foo_new_from_hash() functions and
6972         add a virtual function 'populate_fn'.
6973
6974         * libnm-util/nm-connection.c (nm_connection_create_setting): Implement.
6975         (register_default_creators): Register setting creators instead of functions
6976         that create and then populate.
6977         (parse_one_setting): Use the common setting creator and then setting specific
6978         poplulation function.
6979
6980         * libnm-util/nm-setting.c: Get rid of nm_setting_foo_new_from_hash() functions,
6981         they all looked exactly the same.
6982         Add a 'populate_fn' virtual function to NMSetting.
6983         Use default virtual functions in case they are not overriden.
6984         (nm_setting_populate_from_hash): Implement.
6985
6986         * src/nm-device.c (real_act_stage3_ip_config_start): Don't hard code the setting
6987         name, use a defined string.
6988         (real_act_stage4_get_ip4_config): Ditto.
6989
6990 2007-10-16  Tambet Ingo  <tambet@gmail.com>
6991
6992         * src/nm-hal-manager.c (killswitch_getpower_reply): The type returned from
6993         HAL is int, not uint.
6994
6995 2007-10-15  Tambet Ingo  <tambet@gmail.com>
6996
6997         Implement killswitch polling through HAL.
6998
6999         * src/nm-manager.c: Add wireless hardware status property. Add 
7000         'properties-changed' signal for changes in wireless and wireless hardware
7001         state changes.
7002
7003         * src/nm-hal-manager.c: Poll hal for killswitch statuses in every 6 seconds
7004         and update NMManager's wireless hardware state when it has changed.
7005         (nm_hal_manager_new): Don't try to add initial devices here - (hal_init)
7006         already does that.
7007
7008         * libnm-glib/nm-client.c: Add wireless hardware status property. Cache the
7009         values of wireless state and wireless hardware state. Listen for the
7010         'properties-changed' signals, update the cached values and emit notify.
7011
7012         * include/NetworkManager.h: Fix a typo in a comment.
7013
7014 2007-10-14  Dan Williams  <dcbw@redhat.com>
7015
7016         * libnm-util/nm-setting.c
7017                 - (setting_wireless_security_need_secrets): handle LEAP secrets
7018
7019 2007-10-13  Dan Williams  <dcbw@redhat.com>
7020
7021         * libnm-util/nm-setting.h
7022           libnm-util/nm-setting.c
7023           src/supplicant-manager/nm-supplicant-config.c
7024                 - Make the 'proto' field of the 802-11-wireless-security field a
7025                         string list
7026
7027 2007-10-12  Tambet Ingo  <tambet@gmail.com>
7028
7029         Rework the "properties-changed" signal listening implementation.
7030         Add a generic implementation to NMObject class that listens for
7031         the signal and calls property setters of the target NMObject.
7032
7033         * libnm-glib/nm-object.c (nm_object_handle_properties_changed): Implement.
7034
7035         * libnm-glib/nm-device-802-11-wireless.c: Move the GObject consturction
7036         code to the end of file so that all the static functions are available
7037         without extra declarations.
7038         Remove the "properties-changed" signal handling and use the framework from
7039         NMObject.
7040         Implement property setters for properties that change with 
7041         "properties-changed" signal.
7042
7043         * libnm-glib/nm-access-point.c: Ditto.
7044
7045 2007-10-12  Tambet Ingo  <tambet@gmail.com>
7046
7047         Rework the "properties-changed" signal implementation.
7048         In classes that need to use it, just emit "GObject::notify" and the new
7049         framework takes care of the rest to make the signal available on dbus.
7050         The framework queues the notifications and tries to send as many together
7051         in one signal as possible.
7052
7053         * src/nm-properties-changed-signal.c:
7054         * src/nm-properties-changed-signal.h: Implement.
7055
7056         * src/Makefile.am: Add new files to build.
7057
7058         * src/NetworkManagerAP.c: Use the general framework for properties-changed
7059         signal.
7060
7061         * src/nm-device-802-11-wireless.c: Ditto.
7062
7063 2007-10-10  Dan Williams  <dcbw@redhat.com>
7064
7065         * src/nm-manager.c
7066                 - (wait_for_connection_expired): ensure info is valid
7067                 - (connection_added_default_handler): Should only remove pending
7068                         connection info when the manager has the connection that it's
7069                         waiting for.  Fixes segfault in wait_for_connection_info().  
7070
7071 2007-10-10  Dan Williams  <dcbw@redhat.com>
7072
7073         * libnm-util/nm-setting.c
7074           libnm-util/nm-setting.h
7075                 - Add a default 'user_name' field to the VPN setting, which VPN plugins
7076                         can use if they choose.  Should be filled in by the settings service
7077                         on-the-fly with the currently logged in user's username
7078
7079 2007-10-10  Dan Williams  <dcbw@redhat.com>
7080
7081         * src/nm-device-802-11-wireless.c
7082                 - (merge_scanned_ap): make sure non-SSID-broadcasting APs are marked
7083                         as such, because even if the manager fills in the SSID, NM still
7084                         has to indicate to wpa_supplicant that the AP isn't broadcasting
7085                         its SSID
7086
7087 2007-10-10  Tambet Ingo  <tambet@gmail.com>
7088
7089         Move ppp-manager over to dbus-glib. The big deal is that it was the last piece of
7090         code that used NM's own version of dbus signal handling and custom dictionary
7091         marshalling/unmarshalling. With this change, all that obsolete code can disappear
7092         and we get to maintain over 2000 lines less code.
7093
7094         * libnm-util/dbus-dict-helpers.c:
7095         * libnm-util/dbus-dict-helpers.h: Remove.
7096
7097         * src/ppp-manager/nm-pppd-plugin.c: Convert it to use dbus-glib.
7098
7099         * src/ppp-manager/nm-pppd-plugin.xml: Implement.
7100
7101         * src/ppp-manager/nm-ppp-manager.c: Use dbus-glib instead of home-brewed dbus signal
7102         handlers.
7103
7104         * src/nm-dbus-manager.c: Remove all the manual dbus signal handling.
7105
7106         * configure.in: Remove test/libnm-util/Makefile creation.
7107
7108         * test/Makefile.am: Remove libnm-util from SUBDIRS.
7109
7110         * test/libnm-util/: Remove the whole directory.
7111
7112 2007-10-10  Tambet Ingo  <tambet@gmail.com>
7113
7114         * src/NetworkManagerPolicy.c (nm_policy_new): Initialize the 
7115         device_state_changed_idle_id variable or it would contain some random value and the
7116         schedule_change_check calls would not do anything.
7117
7118 2007-10-09  Dan Williams  <dcbw@redhat.com>
7119
7120         * src/nm-device-802-11-wireless.c
7121                 - (supplicant_iface_scanned_ap_cb): set the non-broadcast flag elsewhere
7122                 - (merge_scanned_ap): only have the manager fill the SSID if the AP
7123                         isn't broadcasting its SSID; set the non-broadcast flag here; fix
7124                         merging of non-SSID-broadcasting APs
7125
7126 2007-10-09  Tambet Ingo  <tambet@gmail.com>
7127
7128         * libnm-util/nm-utils.c (nm_utils_is_empty_ssid): Convert the ssid type to
7129         "guint8 *" since it's usually used with GByteArray->data.
7130         (nm_utils_ssid_to_utf8): Add it back, the applet needs it.
7131
7132 2007-10-09  Tambet Ingo  <tambet@gmail.com>
7133
7134         * src/NetworkManagerUtils.c
7135         (nm_utils_is_empty_ssid):
7136         (nm_utils_escape_ssid):
7137         (nm_utils_same_ssid): Remove. These functions are copied and pasted in a 
7138         lot of places, so they belong to libnm-utils instead.
7139
7140         Now with 100% less compiler warnings:
7141
7142         * libnm-util/nm-utils.c (nm_dbus_escape_object_path): Remove, unused.
7143         (nm_dbus_unescape_object_path): Ditto.
7144         (nm_utils_ssid_to_utf8): Ditto.
7145         (nm_utils_is_empty_ssid): Move here from src/NetworkManagerUtils.c
7146         (nm_utils_escape_ssid): Ditto.
7147         (nm_utils_same_ssid): Ditto.
7148
7149         * src/nm-manager.c: Include 'netinet/ether.h' for ether_aton_r.
7150         (add_one_connection_element): Remove an unused variable.
7151         (impl_manager_get_active_connections): Ditto.
7152
7153         * src/NetworkManagerPolicy.c (get_device_connection): Remove an unused
7154         variable.
7155
7156         * src/nm-dbus-manager.c (nm_dbus_manager_start_service): Remove a leftover
7157         from the previous commit.
7158
7159         * src/nm-device-802-11-wireless.c (set_current_ap): Remove unused variable.
7160         (real_act_stage1_prepare): Ditto.
7161         (activation_success_handler): Ditto.
7162         (get_property): Ditto.
7163
7164         * src/nm-device-802-3-ethernet.c (real_get_best_connection): Remove unused
7165         variable.
7166
7167         * src/ppp-manager/nm-pppd-plugin.c (nm_ip_up): Remove the check for 'ifname',
7168         it's always set.
7169
7170         * src/supplicant-manager/nm-supplicant-config.c 
7171         (nm_supplicant_config_add_setting_wireless): Cast the GByteArray's 'guint8 *'
7172         to expected "char *".
7173         (nm_supplicant_config_add_setting_wireless): Ditto.
7174         (nm_supplicant_config_remove_option): Remove, not used.
7175
7176         * libnm-glib/libnm-glib-test.c (dump_access_point): Frequency is a guint32,
7177         not double.
7178         (test_wireless_enabled): Ifdef out unused function.
7179         (device_deactivate): Ditto.
7180         (device_state_changed): Ditto.
7181         (nm_utils_is_empty_ssid): Remove, it's now in libnm-utils.
7182         (nm_utils_escape_ssid): Ditto.
7183
7184         * test/nm-tool.c (nm_utils_escape_ssid): Remove, it's now in libnm-utils.
7185         (nm_utils_is_empty_ssid): Ditto.
7186
7187         * libnm-glib/nm-client.c (nm_client_free_active_connection_element): Remove
7188         unused variable.
7189
7190         * libnm-util/nm-setting.c (setting_wireless_destroy): Remove unused variable.
7191         (setting_vpn_properties_update_secrets): Ditto.
7192         (int_to_gvalue): Ifdef out for now, not used.
7193         (byte_to_gvalue): Ditto.
7194
7195         * libnm-util/dbus-dict-helpers.c (_nmu_dbus_add_dict_entry_string_array): 
7196         Unused, remove.
7197
7198 2007-10-08  Tambet Ingo  <tambet@gmail.com>
7199
7200         * src/NetworkManager.c (main): When dbus manager doesn't want to start, complain
7201         about dbus manager, not named manager.
7202         Make sure hal_manager and dbus_mgr are created before trying to unreference.
7203
7204         * src/nm-dbus-manager.c: There was an issue with priv->proxy: We have a signal
7205         handler for it's 'destroy' signal - we use it to catch disconnects from dbus.
7206         However, the same signal is emitted when we destroy it and there's 
7207         nm_dbus_manager_cleanup -> destroy_cb -> nm_dbus_manager_cleanup cycle.
7208
7209         (nm_dbus_manager_cleanup): Let go of the DBusGProxy before
7210         releasing the DBusGConnection, since proxy needs a conneciton.
7211         (destroy_cb): Set the private proxy to NULL before cleaning up the manager.
7212
7213 2007-10-08  Dan Williams  <dcbw@redhat.com>
7214
7215         * src/NetworkManager.c
7216                 - (main): error on unknown command-line options
7217
7218 2007-10-08  Dan Williams  <dcbw@redhat.com>
7219
7220         Reimplement the invalid connection list.  Don't try to re-activate a
7221         connection that just failed or was canceled.
7222
7223         * src/nm-device.c
7224                 - (connection_secrets_failed_cb): fail device activation, don't just
7225                         deactivate the device.  Listeners have to know about the failure.
7226
7227         * src/NetworkManagerPolicy.c
7228                 - (nm_policy_auto_get_best_device): exclude invalid connections from
7229                         the connection list given to a device's get_best_connection()
7230                         method
7231                 - (device_state_changed): tag failed connections as invalid; clear the
7232                         tag from successful connections
7233
7234 2007-10-08  Dan Williams  <dcbw@redhat.com>
7235
7236         Fix problems with interrupted activation.  Previously, choosing an AP
7237         from the menu, then choosing another one before the first connection was
7238         successful wouldn't deactivate the device before starting the new connection
7239         on that same device.
7240
7241         * src/NetworkManagerPolicy.c
7242                 - (deactivate_old_device, device_state_changed, state_changed,
7243                    nm_policy_new): wrong place to deactivate old devices
7244
7245         * src/nm-manager.c
7246                 - (pending_connection_info_destroy, finalize,
7247                    wait_for_connection_expired): decouple destruction of the pending
7248                         connection info from the manager device
7249                 - (connection_added_default_handler): deactivate any active or
7250                         activating device before starting a new activation
7251                 - (impl_manager_activate_device): deactivate any active or activating
7252                         device before starting a new activation; be sure not to leak
7253                         pending connection info if a new activation request arrives but
7254                         there's already a pending one in-process
7255
7256 2007-10-08  Dan Williams  <dcbw@redhat.com>
7257
7258         * src/NetworkManagerAP.h
7259           src/NetworkManagerAP.c
7260                 - (nm_ap_has_manufacturer_default_ssid): remove, unused.  User clients
7261                         should handle default SSIDs and whether or not to autoconnect
7262                         to them
7263
7264 2007-10-08  Dan Williams  <dcbw@redhat.com>
7265
7266         * src/NetworkManagerPolicy.c
7267                 - (nm_policy_device_change_check): print out connection name where
7268                         possible
7269
7270 2007-10-08  Dan Williams  <dcbw@redhat.com>
7271
7272         * src/nm-device-802-11-wireless.c
7273           src/nm-device-802-11-wireless.h
7274                 - (nm_device_802_11_wireless_class_init, merge_scanned_ap): new
7275                         'hidden-ap-found' signal (for internal use only) that allows the
7276                         NMManager to fill in the AP's SSID if a connection has that AP's
7277                         BSSID in its seen-bssids list
7278
7279         * src/nm-manager.c
7280                 - (manager_hidden_ap_found, nm_manager_add_device): attach to a
7281                         wireless device's hidden-ap-found signal and fill in the APs SSID
7282                         if possible
7283
7284 2007-10-07  Dan Williams  <dcbw@redhat.com>
7285
7286         * src/nm-manager.c
7287           src/nm-manager.h
7288                 - Add a 'connections-added' signal to batch together updates of large
7289                         numbers of connections, like when reading from a settings service
7290                         the first time.  Otherwise, the policy would just activate the first
7291                         suitable connection it saw rather than waiting for the full list
7292                         to arrive.
7293                 - (nm_manager_class_init): register new signal
7294                 - (get_type_for_proxy, connection_get_settings_cb,
7295                    get_connection_for_proxy): centralize places where a proxy's setting
7296                         service is determined
7297                 - (free_get_settings_info): if the call being freed is the last call
7298                         in a pending call group, fire off the connections-added signal
7299                 - (internal_new_connection_cb): add call to a pending call group if
7300                         requested
7301                 - (list_connections_cb): always create a call group here, because this
7302                         call results in a batch of new connections
7303                 - (initial_get_connections): start getting system connections first
7304                 - (nm_manager_connections_destroy, emit_removed): actually emit the
7305                         removed signal when destroying connections
7306
7307         * src/NetworkManagerPolicy.c
7308                 - (nm_policy_new, connections_added): handle connections-added signal
7309                         from the manager
7310
7311 2007-10-06  Dan Williams  <dcbw@redhat.com>
7312
7313         * src/nm-device-802-11-wireless.c
7314                 - (constructor): fix leaked socket
7315
7316 2007-10-06  Dan Williams  <dcbw@redhat.com>
7317
7318         * src/NetworkManagerPolicy.c
7319                 - (nm_policy_auto_get_best_device): fix connection list reffing.  Each
7320                         connection in the list returned by nm_manager_get_connections() is
7321                         reffed, but they weren't getting unreffed before returning
7322
7323 2007-10-06  Dan Williams  <dcbw@redhat.com>
7324
7325         * src/nm-manager.c
7326                 - (connections_to_slist): sort connections first on autoconnect, then
7327                         on timestamp
7328
7329 2007-10-06  Dan Williams  <dcbw@redhat.com>
7330
7331         * libnm-util/nm-connection.c
7332                 - (gvalue_to_string): handle UINT64
7333
7334 2007-10-06  Dan Williams  <dcbw@redhat.com>
7335
7336         * src/NetworkManagerPolicy.c
7337                 - (connection_updated, nm_policy_new): recheck state when a connection
7338                         gets updated
7339
7340 2007-10-06  Dan Williams  <dcbw@redhat.com>
7341
7342         * src/nm-manager.c
7343           src/nm-manager.h
7344                 - (nm_manager_get_connection_dbus_path): make static
7345                 - (nm_manager_update_connections): remove; unused
7346                 - Add a connection-updated signal
7347                 - (new_connection_cb, connection_updated_cb, nm_manager_class_init):
7348                         handle connection object updates
7349
7350 2007-10-06  Dan Williams  <dcbw@redhat.com>
7351
7352         * src/NetworkManagerPolicy.c
7353                 - (connection_removed): deactivate removed connections
7354
7355 2007-10-06  Dan Williams  <dcbw@redhat.com>
7356
7357         * libnm-util/nm-connection.c
7358           libnm-util/nm-connection.h
7359                 - (nm_connection_replace_settings): new function
7360
7361 2007-10-06  Dan Williams  <dcbw@redhat.com>
7362
7363         * libnm-glib/nm-device-802-11-wireless.c
7364                 - (nm_device_802_11_wireless_get_active_access_point): don't segfault
7365                         on error when getting the active access point over D-Bus from NM
7366
7367 2007-10-05  Dan Williams  <dcbw@redhat.com>
7368
7369         * libnm-util/nm-setting.c
7370                 - (setting_wireless_verify, setting_wireless_destroy): add seen_bssids
7371                         to the NMSettingWireless table; it's now a string array not an array
7372                         of byte arrays
7373
7374 2007-10-05  Dan Williams  <dcbw@redhat.com>
7375
7376         * libnm-glib/nm-device-802-11-wireless.c
7377                 - Cache properties and update cached properties on D-Bus signals from NM
7378
7379 2007-10-05  Dan Williams  <dcbw@redhat.com>
7380
7381         * src/nm-device-802-11-wireless.c
7382                 - (set_current_ap): consolidate current_ap handling code into one place
7383                         to ensure that PropertiesChanged signals are emitted in all cases
7384                 - (periodic_update, real_deactivate_quickly, real_act_stage1_prepare,
7385                    nm_device_802_11_wireless_dispose): use set_current_ap()
7386
7387 2007-10-05  Dan Williams  <dcbw@redhat.com>
7388
7389         * libnm-glib/nm-access-point.c
7390           libnm-glib/nm-access-point.h
7391                 - (nm_access_point_get_hw_address): return 'const char *', not 'char *'
7392                         because the value is cached internally now.  Callers should not
7393                         free the internal value.
7394                 - Make signal name defines private
7395
7396         * test/nm-tool.c
7397           libnm-glib/libnm-glib-test.c
7398                 - Don't free value returned from nm_access_point_get_hw_address()
7399
7400 2007-10-04  Dan Williams  <dcbw@redhat.com>
7401
7402         * introspection/nm-device-802-11-wireless.xml
7403           src/nm-device-802-11-wireless.h
7404           src/nm-device-802-11-wireless.c
7405                 - Add a PropertiesChanged signal for wireless device
7406                 - Store currently associated access point
7407                 - (periodic_update): generalize; update rate here too and emit the
7408                         correct PropertiesChanged signal when stuff changes
7409                 - (real_deactivate_quickly, nm_device_802_11_wireless_dispose,
7410                    real_activation_cancel_handler): clear current_ap when device is
7411                         deactivated
7412                 - (link_to_specific_ap, get_ap_blacklisted,
7413                    nm_device_802_11_wireless_get_best_ap): remove obsolete and unused
7414                         code
7415                 - (nm_device_802_11_wireless_get_bitrate): make static; unused anywhere
7416                         outside this file
7417                 - (real_set_hw_address): emit property changed signal if the card's
7418                         MAC address changes
7419                 - (real_act_stage1_prepare): set the initial current_ap to the AP
7420                         the card is supposed to be connecting to
7421                 - (activation_success_handler): send out property updates on successful
7422                         activation
7423                 - (get_property): pull bitrate from cached value; use OBJECT_PATH type
7424                         for ACTIVE_ACCESS_POINT property because sometimes there won't be
7425                         one and dbus-glib doesn't like marshalling NULL G_TYPE_OBJECTs
7426                 - (nm_device_802_11_wireless_class_init): ACTIVE_ACCESS_POINT property
7427                         is now boxed; add PropertiesChanged signal
7428
7429 2007-10-04  Dan Williams  <dcbw@redhat.com>
7430
7431         * libnm-util/nm-connection.c
7432           libnm-util/nm-connection.h
7433                 - (nm_connection_verify): new function
7434
7435 2007-10-04  Dan Williams  <dcbw@redhat.com>
7436
7437         * libnm-util/nm-setting.c
7438                 - (nm_settings_verify): use #defines when possible rather than strings
7439                 - (setting_connection_verify): ensure that 'name' and 'type' are valid
7440                 - (setting_vpn_verify): tighter validity check on 'service_type'
7441
7442 2007-10-04  Dan Williams  <dcbw@redhat.com>
7443
7444         * libnm-glib/nm-settings.c
7445                 - (nm_connection_settings_class_init): provide correct type for argument
7446                         to the Updated signal so that dbus-glib knows how to marshal it
7447
7448 2007-10-03  Dan Williams  <dcbw@redhat.com>
7449
7450         * src/nm-device-802-3-ethernet.c
7451                 - (real_get_best_connection): don't create automatic connections
7452                         internally; clients should provide a setting that applies to
7453                         the device with 'autoconnect: True'.  Problem was that these
7454                         internally auto-created connections don't have a proxy or service
7455                         name becuase they weren't created by a settings daemon, and therefore
7456                         clients have no idea what to do with them.
7457
7458 2007-10-03  Dan Williams  <dcbw@redhat.com>
7459
7460         * src/nm-device-802-11-wireless.c
7461           src/nm-device-802-11-wireless.h
7462           introspection/nm-device-802-11-wireless.xml
7463                 - GetActiveNetworks -> GetAccessPoints
7464                 - ActiveNetwork -> ActiveAccessPoint
7465                 - NetworkAdded -> AccessPointAdded
7466                 - NetowrkRemoved -> AccessPointRemoved
7467
7468         * libnm-glib/nm-device-802-11-wireless.c
7469           libnm-glib/nm-device-802-11-wireless.h
7470                 - network-added signal -> access-point-added
7471                 - network-removed signal -> access-point-removed
7472                 - nm_device_802_11_wireless_get_active_network() ->
7473                         nm_device_802_11_wireless_get_active_access_point()
7474                 - nm_device_802_11_wireless_get_network_by_path() ->
7475                         nm_device_802_11_wireless_get_access_point_by_path()
7476                 - nm_device_802_11_wireless_get_networks() ->
7477                         nm_device_802_11_wireless_get_access_points()
7478
7479         * libnm-glib/libnm-glib-test.c
7480           test/nm-tool.c
7481           src/NetworkManagerPolicy.c
7482                 - Fixups for Network -> AccessPoint
7483
7484 2007-10-03  Dan Williams  <dcbw@redhat.com>
7485
7486         Add a GetActiveConnections() method on the Manager object.
7487
7488         * src/nm-manager.c
7489           src/nm-manager.h
7490           introspection/nm-manager.xml
7491                 - (connection_get_settings_cb): keep connection type around too
7492                 - (impl_manager_get_active_connections, add_one_connection_element):
7493                         implement; returns all active connections and what devices they
7494                         apply to
7495
7496         * libnm-glib/nm-client.c
7497           libnm-glib/nm-client.h
7498           introspection/nm-manager-client.xml
7499                 - (nm_client_get_devices): GPtrArray elements are allocated and owned
7500                         by the caller; free here to avoid memory leak
7501                 - (nm_client_get_active_connections): implement; return the list of
7502                         active connections
7503                 - (nm_client_free_active_connection_element): implement; free an element
7504                         of the GSList returned by nm_client_get_active_connections()
7505
7506 2007-10-03  Dan Williams  <dcbw@redhat.com>
7507
7508         * src/nm-device-802-11-wireless.c
7509                 - (nm_device_802_11_wireless_update_bssid): remove
7510                 - (get_active_ap): new function; find the AP in the scan list which
7511                         matches the current BSSID and SSID of the wireless device
7512                 - (nm_device_802_11_periodic_update): get current AP using
7513                         get_active_ap() and print AP roam messages
7514
7515 2007-10-01  Dan Williams  <dcbw@redhat.com>
7516
7517         * libnm-util/nm-setting.h
7518                 - Add a 'timestamp' option to NMSettingConnection
7519                 - Add a UINT64 type
7520
7521         * libnm-util/nm-setting.c
7522                 - (uint64_to_gvalue): new function
7523                 - (nm_setting_populate_from_hash, nm_setting_hash,
7524                    default_setting_clear_secrets): handle UINT64 type
7525                 - con_table: add 'timestamp' member
7526
7527 2007-10-01  Dan Williams  <dcbw@redhat.com>
7528
7529         * src/nm-manager.c
7530                 - (impl_manager_activate_device): ensure the D-Bus method sends a return
7531                         value when the connection can be activated immediately
7532
7533 2007-10-01  Dan Williams  <dcbw@redhat.com>
7534
7535         * libnm-glib/nm-device.c
7536                 - (nm_device_class_init): actually tell glib about the carrier-changed
7537                         signal
7538
7539 2007-10-01  Dan Williams  <dcbw@redhat.com>
7540
7541         * configure.in
7542           src/marshallers/Makefile.am
7543           src/marshallers/nm-marshal.list
7544           src/marshallers/nm-marshal-main.c
7545                 - Consolidate glib marshallers into one place
7546
7547         * src/dhcp-manager/Makefile.am
7548           src/dhcp-manager/nm-dhcp-manager.c
7549           src/supplicant-manager/Makefile.am
7550           src/supplicant-manager/nm-supplicant-manager.c
7551           src/supplicant-manager/nm-supplicant-interface.c
7552           src/ppp-manager/Makefile.am
7553           src/ppp-manager/nm-ppp-manager.c
7554           src/vpn-manager/Makefile.am
7555           src/vpn-manager/nm-vpn-connection.c
7556           src/Makefile.am
7557                 - Use consolidated marshallers
7558
7559         * src/dhcp-manager/nm-dhcp-marshal.list
7560           src/dhcp-manager/nm-dhcp-marshal-main.c
7561           src/supplicant-manager/nm-supplicant-marshal-main.c
7562           src/supplicant-manager/nm-supplicant-marshal.list
7563           src/nm-marshal-main.c
7564           src/nm-marshal.list
7565           src/ppp-manager/nm-ppp-marshal-main.c
7566           src/ppp-manager/nm-ppp-marshal.list
7567           src/vpn-manager/nm-vpn-marshal-main.c
7568           src/vpn-manager/nm-vpn-marshal.list
7569                 - Remove
7570
7571 2007-10-01  Dan Williams  <dcbw@redhat.com>
7572
7573         * include/NetworkManagerVPN.h
7574                 - define VPN connection state change reason codes
7575
7576         * src/vpn-manager/Makefile.am
7577           src/vpn-manager/nm-vpn-marshal.list
7578           src/vpn-manager/nm-vpn-marshal-main.c
7579                 - Add marshallers for StateChanged signal
7580
7581         * introspection/nm-vpn-connection.xml
7582                 - New Banner property
7583                 - StateChanged signal now includes a 'reason' argument
7584
7585         * src/vpn-manager/nm-vpn-connection.c
7586           src/vpn-manager/nm-vpn-connection.h
7587                 - Add a "Banner" property that contains the returned VPN server login
7588                         banner (if any); valid only in the ACTIVATED state
7589                 - (nm_vpn_connection_set_state, nm_vpn_connection_disconnect): now takes
7590                         a 'reason' argument and emits that reason along with the
7591                         state-changed signal
7592                 - Fix up calls to nm_vpn_connection_set_state() to include a reason
7593                 - (nm_vpn_connection_ip4_config_get): save banner for later
7594                 - (nm_vpn_connection_get_banner, get_property,
7595                    nm_vpn_connection_class_init): implement Banner property
7596
7597         * src/vpn-manager/nm-vpn-service.c
7598                 - (nm_vpn_service_connections_stop): take a reason argument; copy the
7599                         connection list because elements may get added/removed from it
7600                         while iterating over the list
7601                 - (connection_state_changed): signal now includes the 'reason' argument
7602
7603         * libnm-glib/nm-vpn-connection.c
7604           libnm-glib/nm-vpn-connection.h
7605                 - (nm_vpn_connection_get_banner): new function
7606                 - (state_changed_proxy): handle reason argument
7607
7608 2007-09-28  Tambet Ingo  <tambet@gmail.com>
7609
7610         * src/nm-manager.c:
7611         * src/nm-manager.h:
7612         Implement device activation through NMManager.
7613         Implement "pending device activation" here - If the connection isn't found,
7614         we try to wait for up to 5 seconds for the connection to be provided.
7615         Add NMConnectionType argument to "connection-added" and "connection-removed"
7616         signals.
7617         (nm_manager_get): Remove. Finally.
7618
7619         * src/nm-activation-request.c: 
7620         * src/nm-activation-request.h: 
7621         Remove all the deferred activation code.
7622
7623         * src/nm-device.c: Remove all the deferred activation code. Once the device
7624         activation is started, it's started. Update the activation virtual function
7625         signature.
7626
7627         * src/nm-device-interface.c:
7628         * src/nm-device-interface.h:
7629         Device activation now takes only NMActRequest argument.
7630         Don't expose device activation directly on dbus, it's supposed to go through
7631         NMManager now.
7632
7633         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Make the code
7634         a bit more compact.
7635         Use the new device activation methods through NMManager.
7636
7637         * introspection/nm-manager-client.xml: 
7638         * introspection/nm-manager.xml: 
7639         * libnm-glib/nm-client.c:
7640         * libnm-glib/nm-client.h:
7641         Add device activation method.
7642         
7643         * libnm-glib/nm-device.c: 
7644         * libnm-glib/nm-device.h: 
7645         * introspection/nm-device.xml: 
7646         Remove device activation method. It's done through NMManager now.
7647
7648         * src/vpn-manager/nm-vpn-manager.c (impl_vpn_manager_connect): Use the shiny
7649         new (nm_manager_get_device_by_path) function, get rid of our own )find_device).
7650
7651 2007-09-28  Dan Williams  <dcbw@redhat.com>
7652
7653         * libnm-glib/nm-vpn-connection.c
7654                 - (nm_vpn_connection_get_state): try to update state if the current
7655                         state is UNKNOWN
7656
7657 2007-09-27  Dan Williams  <dcbw@redhat.com>
7658
7659         Patch from Bill Nottingham
7660
7661         * src/supplicant-manager/nm-supplicant-config.c
7662                 - (ADD_STRING_VAL): use correct length for binary blobs when sending
7663                         data to the supplicant
7664
7665 2007-09-27  Dan Williams  <dcbw@redhat.com>
7666
7667         * src/NetworkManagerSystem.c
7668                 - (nm_system_vpn_device_set_from_ip4_config): clean up indentation;
7669                         and all address manipulation here should be happening on the
7670                         _VPN_ device, not the active device
7671
7672 2007-09-26  Dan Williams  <dcbw@redhat.com>
7673
7674         * src/nm-manager.c
7675           src/nm-manager.h
7676           src/nm-activation-request.c
7677           src/nm-activation-request.h
7678                 - Move the GetSecrets stuff out of the NMManager instance because it
7679                         doesn't really need to be there and complicates things
7680
7681         * src/nm-device.c
7682                 - (connection_secrets_failed_cb, device_activation_go): connect to the
7683                         connection-secrets-failed signal and deactivate the device if
7684                         the GetSecrets call fails
7685
7686         * src/nm-device-802-11-wireless.c
7687                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7688                    real_act_stage2_config, real_act_stage4_ip_config_timeout): request
7689                         secrets and give correct hints about whether new secrets should be
7690                         asked for by the client or not
7691
7692 2007-09-26  Dan Williams  <dcbw@redhat.com>
7693
7694         * src/vpn-manager/nm-vpn-connection.c
7695                 - (nm_vpn_connection_set_state, clear_need_auth, finalize,
7696                    connection_secrets_updated_cb, get_secrets_cb): don't need to attach
7697                         to the secrets-updated signal of the NMConnection since updating
7698                         the secrets is done within the scope of the NMVPNConnection object
7699                         already
7700                 - (get_connection_secrets): fix an uninialized variable usage error
7701
7702 2007-09-26  Dan Williams  <dcbw@redhat.com>
7703
7704         * libnm-util/nm-setting.c
7705                 - (setting_vpn_properties_update_secrets): implement so VPN secrets
7706                         actually get updated when the user enters them
7707
7708 2007-09-26  Dan Williams  <dcbw@redhat.com>
7709
7710         * libnm-glib/nm-vpn-plugin.c
7711                 - (impl_vpn_plugin_need_secrets): fix logic when no secrets are needed
7712
7713 2007-09-26  Dan Williams  <dcbw@redhat.com>
7714
7715         * include/NetworkManagerVPN.h
7716                 - Add a NEED_AUTH state
7717
7718         * src/vpn-manager/nm-vpn-connection.c
7719                 - Implement the NEED_AUTH state.  First ask the VPN service plugin if
7720                         the connection needs secrets, and if so, then ask the settings
7721                         service to fill in the secrets.  Then start the connection.
7722
7723 2007-09-26  Dan Williams  <dcbw@redhat.com>
7724
7725         * src/vpn-manager/nm-vpn-manager.c
7726                 - (new_vpn_error, impl_vpn_manager_connect): set errors
7727
7728 2007-09-26  Dan Williams  <dcbw@redhat.com>
7729
7730         * introspection/nm-vpn-plugin.xml
7731           libnm-glib/nm-vpn-plugin.c
7732           libnm-glib/nm-vpn-plugin.h
7733                 - (impl_vpn_plugin_need_secrets): implement a call that should return
7734                         the name of the NMSetting in an NMConnection that may require
7735                         secrets specific to that VPN plugin
7736
7737 2007-09-26  Dan Williams  <dcbw@redhat.com>
7738
7739         * src/nm-manager.c
7740           src/nm-manager.h
7741                 - (nm_manager_get_connection_secrets): make static, unused outside
7742                         the file
7743                 - Provide NM_MANAGER_CONNECTION_PROXY_TAG for other users
7744
7745 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7746
7747         * libnm-glib/nm-vpn-plugin.c (nm_vpn_plugin_connect): Update the plugin activation
7748         method.
7749         (impl_vpn_plugin_connect): Convert properties hash to NMConnection, activate, and
7750         unreference the connection.
7751
7752         * introspection/nm-vpn-plugin.xml: Modify the 'Connect' method arguments: instead of
7753         passing properties hash and routes string list, pass NMConnection (in hashed form).
7754
7755         * src/vpn-manager/nm-vpn-connection.c (nm_vpn_connection_get_routes): Return routes
7756         as GSList, no need to copy stuff around anymore.
7757         (nm_vpn_connection_activate): Update the plugin activation method.
7758
7759         * src/NetworkManagerSystem.c (nm_system_vpn_device_set_from_ip4_config): Convert
7760         routes argument to GSList.
7761
7762 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7763
7764         * src/nm-manager.c (manager_device_state_changed): Listen to device' NEED_AUTH
7765         state and try to get the secrets.
7766
7767         * src/NetworkManagerPolicy.c (nm_policy_auto_get_best_device): Get the list of
7768         connections from NMManager and let the device to choose the best from the list.
7769         Since the connection list is sorted by system ones first and user ones later,
7770         the devices still prefer system connections like they did before.
7771         (deactivate_old_device): Implement. When a device starts activation, we have a
7772         policy (for now at least) to deactivate any other device that might be either
7773         active or still activating.
7774
7775         * src/vpn-manager/nm-vpn-manager.c: Add NMManager back to the private structure.
7776         It's set on construction, there will be no other way to access it.
7777
7778         * src/nm-device-802-11-wireless.c: Don't touch NMManager, NMManager can listen to
7779         device events and drive the device, not the other way around.
7780
7781         * src/nm-device-802-3-ethernet.c: Ditto.
7782
7783         * src/nm-device.c (nm_device_get_best_connection): The connections list is now
7784         sent along, pass it on to virtual functions.
7785
7786         * src/nm-device-interface.c (nm_device_interface_get_iface): Implement. It's static
7787         for now, but should really be public instead of nm_device_get_iface() since iface
7788         is a property of the DeviceInterface, not Device.
7789         (impl_device_activate): Don't touch NMManager!
7790
7791 2007-09-26  Jürg Billeter  <j@bitron.ch>
7792
7793         * initscript/paldo/NetworkManager.in:
7794         * initscript/paldo/NetworkManagerDispatcher.in:
7795         * src/backends/NetworkManagerPaldo.c: (nm_system_enable_loopback),
7796         (nm_system_flush_loopback_routes): update paldo backend
7797
7798 2007-09-26  Tambet Ingo  <tambet@gmail.com>
7799
7800         * src/nm-device-802-3-ethernet.c (real_get_best_connection): Don't leak NMManager.
7801         The problem with leaking NMManager is that on shutdown, it doesn't get destroyed,
7802         which means none of the devices get brought down properly, which in turn leaves
7803         DHCP client running.
7804
7805         * src/nm-device-802-11-wireless.c (real_get_best_connection): Ditto.
7806         (supplicant_connection_timeout_cb): Ditto.
7807
7808 2007-09-25  Dan Williams  <dcbw@redhat.com>
7809
7810         * src/nm-device.c
7811                 - (device_activation_go): small hack to work around race when
7812                         activating deferred connections; should solve this in a better way
7813
7814 2007-09-25  Dan Williams  <dcbw@redhat.com>
7815
7816         * introspection/nm-device.xml
7817           libnm-glib/nm-device.c
7818           libnm-glib/nm-device.h
7819                 - Add 'Carrier' property to exported NMDevice objects
7820
7821         * src/nm-device-interface.h
7822           src/nm-device-interface.c
7823           src/nm-device.c
7824                 - Add a 'carrier' property to internal NMDevice objects
7825
7826 2007-09-25  Dan Williams  <dcbw@redhat.com>
7827
7828         * src/nm-device-802-11-wireless.c
7829                 - (ap_auth_enforced): also return the encryption status of the AP so
7830                         that callers can differentiate easily between unencrypted APs
7831                         and encrypted ones, in addition to whether the AP has an
7832                         authenticator
7833                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7834                    real_act_stage4_ip_config_timeout): handle unencrypted APs better,
7835                         previously would request secrets from unencrypted APs at times
7836
7837 2007-09-25  Dan Williams  <dcbw@redhat.com>
7838
7839         * src/nm-manager.c
7840                 - (nm_manager_update_state): new function; updates state and emits
7841                         appropriate signals ensuring a state-change signal for the same state
7842                         never gets emitted twice in a row.
7843                 - (manager_device_state_changed): handle more device state to get a
7844                         better picture of the overall NM state
7845
7846 2007-09-25  Dan Williams  <dcbw@redhat.com>
7847
7848         * libnm-glib/nm-settings.c
7849           libnm-glib/nm-settings.h
7850                 - (new_error -> nm_settings_new_error): make public so that subclasses
7851                         can use the same error domain.  Also pass a valid error code to
7852                         g_error_new_literal() so that libdbus doesn't assert when converting
7853                         the GError into a DBusError
7854                 - (impl_settings_list_connections, impl_connection_settings_get_id,
7855                    impl_connection_settings_get_settings,
7856                    impl_connection_settings_get_secrets): use new error creator
7857                         function
7858
7859 2007-09-25  Dan Williams  <dcbw@redhat.com>
7860
7861         * src/NetworkManager.c
7862                 - (nm_signal_handler, main): don't ignore SIGTERM/SIGINT during startup
7863
7864 2007-09-25  Dan Williams  <dcbw@redhat.com>
7865
7866         * src/supplicant-manager/nm-supplicant-manager.c
7867                 - (poke_supplicant_cb, nm_supplicant_manager_init,
7868                    nm_supplicant_manager_dispose, nm_supplicant_manager_name_owner_changed,
7869                    nm_supplicant_manager_startup): when the supplicant isn't running,
7870                         try to start it periodically via system bus activation.  Fixes
7871                         a problem where if wpa_supplicant goes away, NM gets stuck waiting
7872                         for the supplicant to come back
7873
7874 2007-09-25  Dan Williams  <dcbw@redhat.com>
7875
7876         Ensure that old activation requests are forgotten about; previously
7877         hitting Cancel in the password dialog would deactivate whatever device
7878         that password was requested for, even if that wasn't the currently
7879         activating connection.
7880
7881         * src/nm-manager.c
7882           src/nm-manager.h
7883                 - (nm_manager_get_connection_secrets): track the pending call
7884                         object so it can be canceled later if needed
7885                 - (nm_manager_cancel_get_connection_secrets): cancel a pending
7886                         GetSecrets call for a particular connection
7887
7888         * src/nm-activation-request.c
7889                 - (dispose): cancel any outstanding GetSecrets calls on the
7890                         connection
7891
7892 2007-09-25  Dan Williams  <dcbw@redhat.com>
7893
7894         * src/NetworkManagerPolicy.c
7895                 - (nm_policy_device_change_check): handle devices that have a
7896                         deferred activation.  These devices are not really active _yet_,
7897                         but need to be treated as such here.  Don't interrupt them
7898                         automatically.
7899
7900         * src/nm-device-interface.c
7901                 - (impl_device_activate): handle devices that have a deferred activation
7902                         like activating or active devices.  When multiple active devices
7903                         get committed, the device shouldn't be deactivated until the
7904                         connection details are available to avoid DoS and such.  Currently,
7905                         any active, activating, or deferred activation device is deactivated
7906                         here before starting the new activation request.
7907
7908 2007-09-25  Dan Williams  <dcbw@redhat.com>
7909
7910         Properly re-query secrets from the settings daemon when stuff fails.
7911
7912         * src/nm-device-802-11-wireless.c
7913                 - (ap_auth_enforced): handle static WEP correctly here by differentiating
7914                         between Shared Key and Open System auth modes
7915                 - (link_timeout_cb, supplicant_connection_timeout_cb,
7916                    real_act_stage4_ip_config_timeout): clear existing secrets and
7917                         request new ones when something fails due to a suspected wrong key
7918                 - (real_act_stage2_config): fix for new request_new argument to
7919                         nm_manager_get_connection_secrets()
7920
7921         * src/nm-manager.c
7922           src/nm-manager.h
7923                 - (nm_manager_get_connection_secrets): return error status; pass
7924                         new request_new argument on to the settings daemon
7925
7926         * introspection/nm-settings-connection.xml
7927                 - New 'request_new' argument to the GetSecrets call that hints to the
7928                         settings daemon to ask the user for completely new secrets
7929
7930         * libnm-glib/nm-settings.c
7931           libnm-glib/nm-settings.h
7932                 - (impl_connection_settings_get_secrets): handle new 'request_new'
7933                         argument
7934
7935 2007-09-25  Dan Williams  <dcbw@redhat.com>
7936
7937         * libnm-util/nm-connection.c
7938           libnm-util/nm-connection.h
7939                 - (nm_connection_clear_secrets): new function; clear secrets out of
7940                         each NMSetting in an NMConnection
7941
7942         * libnm-util/nm-setting.h
7943           libnm-util/nm-setting.c
7944                 - (nm_setting_clear_secrets, default_setting_clear_secrets): clear 
7945                         secrets out of an NMSetting
7946                 - (nm_setting_connection_new, nm_setting_ip4_config_new, 
7947                    nm_setting_wired_new, nm_setting_wireless_new,
7948                    nm_setting_wireless_security_new, nm_setting_ppp_new,
7949                    nm_setting_vpn_new, nm_setting_vpn_properties_new): set clear_secrets
7950                         to default handler default_setting_clear_secrets()
7951
7952 2007-09-25  Dan Williams  <dcbw@redhat.com>
7953
7954         * src/nm-activation-request.c
7955           src/nm-activation-request.h
7956                 - (nm_act_request_is_deferred): new function
7957
7958 2007-09-24  Dan Williams  <dcbw@redhat.com>
7959
7960         * src/nm-device-802-11-wireless.c
7961                 - (activation_success_handler): update signal strength immediately
7962                         after activation
7963
7964 2007-09-24  Dan Williams  <dcbw@redhat.com>
7965
7966         * libnm-util/nm-setting.c
7967                 - (verify_wep_key): 40-bit WEP keys are 10 bytes long, not 13
7968
7969 2007-09-24  Dan Williams  <dcbw@redhat.com>
7970
7971         * src/NetworkManagerPolicy.c
7972                 - (nm_policy_auto_get_best_device): don't interrupt activation of a
7973                         device by deactivating it because it doesn't have a "best connection".
7974                         Since autoconnect=False connections aren't automatically chosen,
7975                         NM would interrupt activation of such a connection because it
7976                         would never be "best" due to autoconnect=False.
7977
7978 2007-09-24  Dan Williams  <dcbw@redhat.com>
7979
7980         * src/nm-manager.c
7981                 - (nm_manager_get_connection_secrets): Add a long timeout so the user
7982                         actually has some time to enter a key before the GetSecrets call
7983                         times out
7984
7985 2007-09-24  Dan Williams  <dcbw@redhat.com>
7986
7987         * introspection/nm-manager.xml
7988           src/nm-manager.c
7989                 - (impl_manager_legacy_state): fix 'state' method call return value
7990
7991 2007-09-24  Matthias Clasen  <mclasen@redhat.com>
7992
7993         * test/Makefile.am: Install nm-tool
7994
7995 2007-09-24  Dan Williams  <dcbw@redhat.com>
7996
7997         Patch from Ross Burton <ross@burtonini.com>
7998
7999         * test/nm-tool.c
8000           callouts/nm-dhcp-client-action.c
8001           src/nm-netlink.c
8002           src/vpn-manager/nm-vpn-connection.c
8003           libnm-glib/libnm-glib-test.c
8004                 - warning fixes
8005
8006 2007-09-24  Dan Williams  <dcbw@redhat.com>
8007
8008         * libnm-util/nm-utils.h
8009           libnm-util/nm-utils.c
8010                 - (nm_dbus_send_with_callback_replied, nm_dbus_send_with_callback):
8011                         remove, unused
8012
8013 2007-09-23  Dan Williams  <dcbw@redhat.com>
8014
8015         * vpn-daemons/vpnc/properties/nm-vpnc.c
8016                 - Update for new VPN properties API bits; instead of passing around
8017                         a lot of random things, everything goes into the NMConnection
8018                         object.
8019
8020 2007-09-23  Dan Williams  <dcbw@redhat.com>
8021
8022         * libnm-util/nm-setting.c
8023                 - Correctly dispose of settings objects if creating them from a hash
8024                         table fails
8025
8026 2007-09-23  Dan Williams  <dcbw@redhat.com>
8027
8028         * libnm-util/nm-setting.c
8029                 - (property_value_destroy, nm_setting_vpn_properties_new): initialize
8030                         the hash table in a standard manner.  Clients of libnm-util should
8031                         only call g_hash_table_remove_all(), never destroy the hash table
8032                         and recreate it.
8033
8034 2007-09-22  Dan Williams  <dcbw@redhat.com>
8035
8036         * src/nm-device-802-11-wireless.c
8037                 - (real_bring_up): update signal strength every 6 seconds, not 2.  No
8038                         real reason to do it so often, and reduces wakeups for clients.
8039
8040 2007-09-21  Dan Williams  <dcbw@redhat.com>
8041
8042         * src/nm-device-802-11-wireless.c
8043                 - (build_supplicant_config): wpa_supplicant requires the option
8044                         key_mgmt=NONE for unencrypted networks
8045                 - (real_act_stage2_config): clarify log message on activation
8046
8047 2007-09-21  Dan Williams  <dcbw@redhat.com>
8048
8049         * test/nm-supplicant-test.c
8050           test/Makefile.am
8051                 - Remove supplicant test binary; no longer applicable
8052
8053 2007-09-21  Dan Williams  <dcbw@redhat.com>
8054
8055         * src/supplicant-manager/nm-supplicant-manager.c
8056                 - (nm_supplicant_manager_init): poke the supplicant at startup to
8057                         activate it on the system bus
8058
8059 2007-09-20  Dan Williams  <dcbw@redhat.com>
8060
8061         * initscript/RedHat/NetworkManager.in
8062                 - dhcdbd is no longer used, so don't try to start it from the initscripts
8063
8064 2007-09-20  Dan Williams  <dcbw@redhat.com>
8065
8066         * src/nm-device.c
8067                 - (nm_device_is_activating): work around a race between auto-activation
8068                         and the user activating the same device that is being auto-activated
8069
8070 2007-09-20  Dan Williams  <dcbw@redhat.com>
8071
8072         * src/nm-device-interface.c
8073                 - (impl_device_activate): until multiple active device support lands,
8074                         ensure only one device can be active at a time
8075
8076 2007-09-20  Dan Williams  <dcbw@redhat.com>
8077
8078         * src/supplicant-manager/nm-supplicant-config.c
8079           src/supplicant-manager/nm-supplicant-config.h
8080                 - (nm_supplicant_config_add_option): hide secrets from system logs
8081
8082 2007-09-20  Dan Williams  <dcbw@redhat.com>
8083
8084         * src/NetworkManagerPolicy.c
8085                 - (nm_policy_device_change_check): re-enable the wireless device change
8086                         checking code; insted of checking for SSIDs, check for the same
8087                         connection instead
8088
8089 2007-09-20  Dan Williams  <dcbw@redhat.com>
8090
8091         * src/nm-device-802-11-wireless.c
8092                 - (supplicant_iface_connection_state_cb_handler): don't use the card's
8093                         composite link state when determining when to start the disconnection
8094                         timer; that link state is already based on the supplicant interface's
8095                         status which is exactly what's already being examined, plus the link
8096                         state is a conglomeration of various things that we don't want here
8097
8098 2007-09-20  Dan Williams  <dcbw@redhat.com>
8099
8100         * libnm-glib/nm-access-point.c
8101                 - (handle_property_changed): strength is a UCHAR
8102
8103 2007-09-20  Dan Williams  <dcbw@redhat.com>
8104
8105         * src/supplicant-manager/nm-supplicant-config.c
8106                 - (nm_supplicant_config_add_setting_wireless_security): uppercase
8107                         string list keywords too since that's what wpa_supplicant wants
8108
8109 2007-09-20  Dan Williams  <dcbw@redhat.com>
8110
8111         * libnm-util/nm-setting.c
8112                 - (convert_strv_to_slist): dupe the values in the list because since
8113                         the list is a boxed value, it'll get destroyed when it's container
8114                         (like a hash table or whatever) gets destroyed
8115
8116 2007-09-20  Tambet Ingo  <tambet@gmail.com>
8117
8118         * libnm-util/nm-setting.h: Change the type of NMSettingVPN->routes to
8119         GSList.
8120
8121         * libnm-util/nm-setting.c (setting_vpn_destroy): Free routes too.
8122
8123         * src/nm-manager.c (connection_get_settings_cb): No need to use weakref,
8124         just use (g_object_set_data_full).
8125
8126         * src/vpn-manager/nm-vpn-connection.c (nm_vpn_connection_get_routes): Now
8127         that NMSettingVPN->routes is a GSList, convert it to char **.
8128         (nm_vpn_connection_ip4_config_get): Free routes when done.
8129         (nm_vpn_connection_activate): Ditto.
8130
8131         * src/nm-device-802-11-wireless.c (real_connection_secrets_updated)
8132         (real_act_stage2_config): Use defined setting names.
8133
8134 2007-09-20  Dan Williams  <dcbw@redhat.com>
8135
8136         * src/nm-device-802-11-wireless.c
8137           src/nm-manager.c
8138           src/nm-manager.h
8139                 - Pass an NMDeviceInterface into nm_manager_get_connection_secrets()
8140                         so that the device can be deactivated if secrets are wrong
8141
8142 2007-09-20  Dan Williams  <dcbw@redhat.com>
8143
8144         * introspection/nm-settings-connection.xml
8145           libnm-glib/nm-settings.c
8146           libnm-glib/nm-settings.h
8147                 - Make GetSecrets asynchronous on the server side
8148
8149 2007-09-20  Dan Williams  <dcbw@redhat.com>
8150
8151         * src/nm-manager.h
8152           src/nm-device.c
8153                 - (nm_device_activate): actually check if a given connection
8154                         exists before assuming it doesn't
8155
8156 2007-09-20  Tambet Ingo  <tambet@gmail.com>
8157
8158         * libnm-util/nm-connection.c (register_default_creators): Use defined
8159         setting names. Register NMSettingVPN and NMSettingVPNProperties.
8160
8161         * libnm-util/nm-setting.c: Define property name strings, use them.
8162         Implement NMSettingVPN and NMSettingVPNProperties settings.
8163         Implement NM_S_TYPE_GVALUE_HASH.
8164         (nm_setting_populate_from_hash): Handle NM_S_TYPE_GVALUE_HASH.
8165         (setting_connection_verify): Rename 'devtype' property to 'type'.
8166
8167         * introspection/nm-vpn-manager.xml: Use NMConnection for VPN service
8168         properties.
8169
8170         * src/vpn-manager/nm-vpn-service.c: Ditto.
8171
8172         * src/vpn-manager/nm-vpn-connection.c: Ditto.
8173
8174         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_connect): Ditto.
8175         (nm_vpn_manager_new): Remove NMManager argument, it's easy enough to get.
8176
8177         * src/nm-device-802-11-wireless.c (find_best_connection): Use defined setting
8178         names. NMSettingConnection->devtype got renamed to 'type'.
8179
8180         * src/nm-device-802-3-ethernet.c (find_best_connection):
8181         (real_get_best_connection): Ditto.
8182
8183         * src/NetworkManager.c (main): Update the vpn manager creation arguments.
8184
8185         * libnm-glib/nm-vpn-manager.[ch]: Update.
8186
8187 2007-09-19  Dan Williams  <dcbw@redhat.com>
8188
8189         * src/NetworkManagerAP.c
8190           src/NetworkManagerAP.h
8191           introspection/nm-access-point.xml
8192                 - Change strength-changed signal into a properties-changed signal
8193                         for all properties, not just strength.  Export that signal over dbus
8194                         so listeners don't have to poll NM for changes.
8195                 - (nm_ap_export_to_dbus, nm_ap_new): not every NMAccessPoint should
8196                         get exported over D-Bus, so break up the logic and let other bits
8197                         decided when to export the AP
8198                 - (nm_ap_new_from_ap): remove, unused
8199
8200         * src/nm-device-802-11-wireless.c
8201                 - (merge_scanned_ap): only export APs that are actually on the device
8202                         list, not every AP created internally
8203
8204         * libnm-glib/nm-access-point.c
8205           libnm-glib/nm-access-point.h
8206                 - Cache properties internally and only hit DBus when needed.  Get
8207                         property updates from NM signals
8208
8209 2007-09-16  Dan Williams  <dcbw@redhat.com>
8210
8211         * libnm-util/nm-connection.c
8212           libnm-util/nm-connection.h
8213                 - (nm_connection_for_each_setting_value): new function; iterate over
8214                         each setting's value and call a user-provided function with details
8215                         about that value
8216
8217         * libnm-util/nm-setting.c
8218           libnm-util/nm-setting.h
8219                 - (nm_setting_enumerate_values): new function; enumerate the values
8220                         of a specific NMSetting subclass for a user-provided function with
8221                         details about that value
8222                 - Change wep_tx_keyidx to a uint32
8223                 - Create settings value tables for each setting defining their type,
8224                         key name, offset into the NMSetting subclass' structure, and whether
8225                         they are required and/or a secret
8226                 - (nm_setting_populate_from_hash): generic function to populate an
8227                         NMSetting from a GHash table, make all settings use it
8228                 - (nm_setting_hash): generic function to derive a GHashTable from
8229                         an NMSetting object, make all settings use it
8230
8231 2007-09-14  Dan Williams  <dcbw@redhat.com>
8232
8233         Remove unused stuff in libnm-util
8234
8235         * configure.in
8236           libnm-util/Makefile.am
8237           libnm-util/cipher-private.h
8238           libnm-util/cipher-wep-ascii.c
8239           libnm-util/cipher-wep-ascii.h
8240           libnm-util/cipher-wep-hex.c
8241           libnm-util/cipher-wep-hex.h
8242           libnm-util/cipher-wep-passphrase.c
8243           libnm-util/cipher-wep-passphrase.h
8244           libnm-util/cipher-wpa-psk-hex.c
8245           libnm-util/cipher-wpa-psk-hex.h
8246           libnm-util/cipher-wpa-psk-passphrase.c
8247           libnm-util/cipher-wpa-psk-passphrase.h
8248           libnm-util/cipher.c
8249           libnm-util/cipher.h
8250           libnm-util/dbus-helpers.c
8251           libnm-util/dbus-helpers.h
8252           libnm-util/gnome-keyring-md5.c
8253           libnm-util/gnome-keyring-md5.h
8254           libnm-util/sha1.c
8255           libnm-util/sha1.h
8256           src/nm-device-802-11-wireless.c
8257           test/libnm-util/Makefile.am
8258           test/libnm-util/test-ciphers.c
8259           test/libnm-util/test-dbus-helpers.c
8260           test/libnm-util/test-inputs.h
8261                 - Removed
8262
8263 2007-09-14  Dan Williams  <dcbw@redhat.com>
8264
8265         * libnm-util/dbus-method-dispatcher.c
8266           libnm-util/dbus-method-dispatcher.h
8267                 - Remove, unused
8268
8269 2007-09-14  Dan Williams  <dcbw@redhat.com>
8270
8271         Implement deferred activation support in the device class.
8272
8273         * src/nm-device-interface.c
8274           src/nm-device-interface.h
8275                 - (nm_device_interface_activate): take more arguments to support
8276                         deferred activation; callers must pass one of (connection) OR
8277                         (service_name, connection_path)
8278                 - (impl_device_activate): connection validation is punted to the device
8279                         to be able to handle deferred activation.  Yes, this means errors
8280                         don't get returned from the Activate() dbus call, and yes, that
8281                         should be fixed somehow later.
8282
8283         * src/nm-device.c
8284           src/nm-device.h
8285                 - (clear_act_request): clear additional deferred activation stuff too
8286                 - (deferred_activation_timeout_cb): new function; clean up when
8287                         deferred activation times out.
8288                 - (deferred_activation_start_cb): new function; when the connection
8289                         finally becomes available, start device activation
8290                 - (nm_device_activate): attach to the right signals of the activation
8291                         request if we need to defer activation until the connection is valid
8292
8293         * src/NetworkManagerPolicy.c
8294                 - (nm_policy_device_change_check): update for additional arguments
8295                         required for nm_device_interface_activate().  Pass NULL for these
8296                         though because this function already knows exactly which
8297                         NMConnection to use
8298
8299 2007-09-14  Dan Williams  <dcbw@redhat.com>
8300
8301         Implement deferred activation handling in the NMActRequest class.  When a
8302         client wants to activate a device but must create the NMConnection details
8303         on the fly, there likely hasn't been enough time yet for NM to receive the
8304         new connection signal and grab all the connection details.  So the
8305         activation is deferred (and bounded by a timer) for a while, and if the
8306         connection appears within the window, it is activated.
8307
8308         * src/nm-activation-request.c
8309           src/nm-activation-request.h
8310                 - (nm_act_request_class_init): two new signals to support deferred
8311                         activation, to allow the listener to handle both timeout and success
8312                 - (nm_act_request_new_deferred): new function, starts the deferred
8313                         activation timeout handler and listens to the NMManager for
8314                         new-connection signals to notice when the connection comes in
8315
8316 2007-09-14  Dan Williams  <dcbw@redhat.com>
8317
8318         * src/nm-manager.h
8319           src/nm-manager.c
8320                 - (nm_manager_get_connection_service_name,
8321                    nm_manager_get_connection_dbus_path): get details about a connection
8322                         known internally by the NMManager
8323                 - (nm_manager_class_init): fix connection add/remove signal marshalers
8324                         because NMConnection is now a GObject subclass
8325                 - Use constant for the gobject data tag used on NMConnection objects for
8326                         storing the associated DBusGProxy
8327
8328 2007-09-14  Dan Williams  <dcbw@redhat.com>
8329
8330         * utils/Makefile.am
8331           utils/nm-utils.c
8332           utils/nm-utils.h
8333           src/supplicant-manager/Makefile.am
8334           src/dhcp-manager/Makefile.am
8335           src/backends/Makefile.am
8336           src/named-manager/Makefile.am
8337           src/ppp-manager/Makefile.am
8338           src/vpn-manager/Makefile.am
8339           test/libnm-util/Makefile.am
8340           test/test-common/Makefile.am
8341                 - Remove utils/; it was unused
8342
8343 2007-09-13  Dan Williams  <dcbw@redhat.com>
8344
8345         * libnm-glib/nm-vpn-manager.h
8346           libnm-glib/nm-vpn-manager.c
8347                 - (nm_vpn_manager_connect): take routes as a GSList, not a char **
8348
8349 2007-09-13  Dan Williams  <dcbw@redhat.com>
8350
8351         * src/nm-device-802-3-ethernet.c
8352                 - (real_bring_down, nm_device_802_3_ethernet_dispose): disconnect from
8353                         netlink monitor carrier signals on dispose, not bring down.  The
8354                         carrier signals should be handled over the entire lifetime of the
8355                         device anyway, not created/destroyed on up or down.
8356
8357 2007-09-13  Dan Williams  <dcbw@redhat.com>
8358
8359         * libnm-glib/nm-device.c
8360           libnm-glib/nm-device.h
8361                 - (nm_device_activate): take a connection object path rather than an
8362                         NMConnection because NMConnection isn't exported over D-Bus and
8363                         therefore it dbus-glib can't automatically get an object path from it
8364
8365 2007-09-13  Dan Williams  <dcbw@redhat.com>
8366
8367         * libnm-util/nm-setting.c
8368                 - (nm_setting_wired_new): set autonegotiate to TRUE by default
8369
8370 2007-09-13  Tambet Ingo  <tambet@gmail.com>
8371
8372         * autogen.sh: NetworkManagerMain.h is gone, check for NetworkManager.c.
8373
8374 2007-09-12  Tambet Ingo  <tambet@gmail.com>
8375
8376         * src/vpn-manager/nm-vpn-connection.[ch]: 
8377         * src/vpn-manager/nm-vpn-manager.[ch]:
8378         * src/vpn-manager/nm-vpn-service.[ch]: Rewrite the vpn handling code. Using 
8379         dbus-glib, GObjects, signals etc.
8380
8381         * libnm-glib/nm-vpn-manager.[ch]: 
8382         * libnm-glib/nm-vpn-connection.[ch]: Now that the NM implementation changed
8383         so much, rewrite these too.
8384
8385         * libnm-glib/Makefile.am: Add new files to build, build new binding files for
8386         the new introspection files.
8387
8388         * libnm-glib/nm-client.[ch]: Remove all VPN related stuff from here.
8389
8390         * libnm-glib/nm-dbus-utils.[ch]: Renamed from nm-utils.[ch] that was shadowing
8391         the header with the same name from libnm-utils.
8392
8393         * libnm-glib/nm-vpn-plugin.[ch]: Implement.
8394
8395         * libnm-util/Makefile.am: Add nm-utils.[ch] to build.
8396
8397         * introspection/nm-vpn-plugin.xml: Implement.
8398
8399         * introspection/nm-vpn-connection.xml: Implement.
8400
8401         * introspection/nm-vpn-manager.xml: Implement.
8402
8403         * src/NetworkManagerSystem.c (nm_system_vpn_device_set_from_ip4_config): Remove
8404         the named manager argument, it can just as easily get it as the caller.
8405         (nm_system_vpn_device_unset_from_ip4_config): Ditto.
8406
8407         * src/vpn-manager/nm-dbus-vpn.[ch]: Remove.
8408
8409         * src/nm-dbus-manager.h: Fix up the name_owner signal signature.
8410
8411         * src/dhcp-manager/nm-dhcp-manager.c (garray_to_string): Remove, use one from
8412         libnm-utils.
8413
8414         * libnm-util/nm-connection.c: Ditto.
8415
8416         * src/NetworkManagerMain.h: Remove, it's finally empty.
8417
8418         * configure.in: Remove utils/ from build.
8419
8420         * include/NetworkManagerVPN.h: Add some more defines to reduce the amount
8421         of hard-coded strings.
8422
8423         * utils/: Move it over to libnm-util.
8424
8425         * test/Makefile.am: Link against libnm-util now that util/ is gone.
8426
8427         * dispatcher-daemon/Makefile.am: Ditto.
8428
8429         * src/Makefile.am: Ditto.
8430
8431 2007-09-12  Dan Williams  <dcbw@redhat.com>
8432
8433         Wireless connections can be made with config data from the applet now.
8434         
8435         Yay.
8436
8437         * src/supplicant-manager/nm-supplicant-config.h
8438           src/supplicant-manager/nm-supplicant-config.c
8439                 - (nm_supplicant_config_new): kill unused init parameter 'iface'
8440                 - (nm_supplicant_config_add_setting_wireless,
8441                    nm_supplicant_config_add_setting_wireless_security): new functions;
8442                         add key/value pairs from the settings objects to the supplicant
8443                         config
8444
8445         * src/nm-device-802-11-wireless.c
8446                 - (cull_scan_list): fix check to not prune currently associated AP
8447                 - (build_supplicant_config, real_act_stage2_config): call the functions
8448                         of the NMSupplicantConfig that parse settings objects rather than
8449                         doing it manually here
8450
8451 2007-09-12  Dan Williams  <dcbw@redhat.com>
8452
8453         * src/supplicant-manager/nm-supplicant-interface.c
8454           src/supplicant-manager/nm-supplicant-marshal.list
8455                 - (nm_supplicant_interface_class_init): fix stupid mistake, the
8456                         "connection-error" signal arguments should be STRING not CHAR
8457
8458 2007-09-12  Dan Williams  <dcbw@redhat.com>
8459
8460         * src/NetworkManagerUtils.c
8461           src/NetworkManagerUtils.h
8462                 - (nm_utils_hexstr2bin): new function
8463
8464 2007-09-11  Dan Williams  <dcbw@redhat.com>
8465
8466         * src/nm-manager.c
8467                 - (connection_get_settings_cb): emit connection-added signal
8468                 - (connection_removed_cb): uncomment bits for system settings service,
8469                         send connection-removed when appropriate
8470                 - (nm_manager_get_connection_secrets, get_secrets_cb): don't clobber
8471                         the stack by trying to g_object_set_data() on something that's
8472                         not a GObject; handle case where settings service returns
8473                         empty settings hash table
8474
8475 2007-09-11  Dan Williams  <dcbw@redhat.com>
8476
8477         * src/NetworkManagerPolicy.c
8478                 - (connection_added, connection_removed): trigger device change checks
8479                         on connection changes
8480
8481 2007-09-11  Dan Williams  <dcbw@redhat.com>
8482
8483         * src/nm-activation-request.c
8484                 - (connection_secrets_updated_cb): fix c&p error in signal emission
8485
8486 2007-09-11  Dan Williams  <dcbw@redhat.com>
8487
8488         * src/nm-device-802-11-wireless.c
8489                 - (real_connection_secrets_updated): fix erroneous check
8490
8491 2007-09-11  Dan Williams  <dcbw@redhat.com>
8492
8493         * introspection/nm-device.xml
8494           libnm-glib/nm-device.c
8495           libnm-glib/nm-device.c
8496                 - Fix Activate call argument borkage; Activate takes 3 arguments
8497
8498 2007-09-11  Dan Williams  <dcbw@redhat.com>
8499
8500         * libnm-glib/nm-access-point.c
8501           libnm-glib/nm-access-point.c
8502                 - (nm_access_point_get_frequency): now returns guint32 to match
8503                         property change on 2007-09-10
8504
8505 2007-09-11  Dan Williams  <dcbw@redhat.com>
8506
8507         * src/nm-device-802-11-wireless.c
8508                 - (nm_device_802_11_wireless_new): s/index/idx, stupid system header
8509                         somewhere defines 'index' and I missed this one when I fixed the
8510                         shadow declaration errors earlier
8511
8512 2007-09-11  Dan Williams  <dcbw@redhat.com>
8513
8514         * libnm-util/nm-connection.c
8515                 - (nm_connection_update_secrets, need_secrets_check): move
8516                         802-11-wireless-security need_secrets checks to the setting object
8517                         itself, where it belongs
8518
8519         * libnm-util/nm-setting.c
8520           libnm-util/nm-setting.h
8521                 - (nm_setting_need_secrets): new function
8522                 - (setting_wireless_security_verify,
8523                    nm_setting_wireless_security_new_from_hash): make 'key-mgmt' required
8524                 - (setting_wireless_security_need_secrets): mostly copy code over
8525                         from nm-connection.c
8526
8527 2007-09-11  Dan Williams  <dcbw@redhat.com>
8528
8529         * libnm-util/nm-setting.c
8530           libnm-util/nm-setting.h
8531                 - (nm_setting_update_secrets): new function; add a virtual function that
8532                         subclasses can implement to update their secrets
8533                 - (setting_wireless_security_update_secrets): implement that function
8534                         for the 802-11-wireless-security subclass
8535
8536         * libnm-util/nm-connection.c
8537           libnm-util/nm-connection.h
8538                 - (nm_connection_update_secrets): update secrets for a Setting and
8539                         emit a signal on success
8540
8541         * src/nm-manager.c
8542           src/nm-manager.h
8543           src/nm-marshal.list
8544                 - (connection_get_settings_cb): enable system settings bits
8545                 - (nm_manager_get_connection_secrets, get_secrets_cb): add function
8546                         to request secrets from the settings dbus service and to
8547                         push those secrets to the NMConnection itself
8548
8549         * src/nm-activation-request.c
8550           src/nm-activation-request.h
8551                 - Attach to the 'secrets-updated' signal of the NMConnection that's
8552                         currently being activated, and proxy that signal to other listeners.
8553                         Goes through the activation request because the activation request
8554                         is the thing that manages the lifetime of the NMConnection that's
8555                         being activated.
8556
8557         * src/nm-device-802-11-wireless.c
8558                 - (real_connection_secrets_updated): implement the connection secrets
8559                         updated notification and restart activation when secrets are
8560                         received
8561                 - (real_act_stage2_config): request secrets from the settings dbus
8562                         service if secrets are needed
8563
8564         * src/nm-device.c
8565           src/nm-device.h
8566                 - (clear_act_request, nm_device_activation_cancel,
8567                    nm_device_deactivate_quickly, nm_device_dispose): consolidate places
8568                         where the activation request is cleared
8569                 - (nm_device_activate, connection_secrets_updated_cb): attach to the
8570                         updated secrets signal of activation request and add a function
8571                         that subclasses can override to handle it easily
8572
8573 2007-09-11  Tambet Ingo  <tambet@gmail.com>
8574
8575         * src/backends/NetworkManagerSuSE.c: Fix a build issue caused by the
8576         removal of NetworkManagerAPList.
8577
8578 2007-09-10  Dan Williams  <dcbw@redhat.com>
8579
8580         * src/NetworkManagerAP.c
8581           src/NetworkManagerAP.h
8582           introspection/nm-access-point.xml
8583                 - Change 'freq' property to a guint32 instead of a double since we
8584                         weren't using the floating point bits anyway
8585
8586 2007-09-10  Dan Williams  <dcbw@redhat.com>
8587
8588         * NetworkManagerAP.c
8589           NetworkManagerAP.h
8590           NetworkManagerPolicy.c
8591           NetworkManagerSystem.c
8592           NetworkManagerUtils.c
8593           NetworkManagerUtils.h
8594           nm-device-802-11-wireless.c
8595           nm-device-802-3-ethernet.c
8596           nm-hal-manager.c
8597           nm-manager.c
8598           vpn-manager/nm-dbus-vpn.c
8599                 - Warning fixes; casts and removal of unused variables
8600
8601 2007-09-10  Dan Williams  <dcbw@redhat.com>
8602
8603         * include/NetworkManager.h
8604                 - Kill NMNetworkType; AP types don't matter any more
8605
8606         * src/NetworkManagerAPList.c
8607           src/NetworkManagerAPList.h
8608           src/Makefile.am
8609                 - Kill; NMAccessPointList has outlived it's usefulness
8610
8611         * src/NetworkManagerAP.c
8612           src/NetworkManagerAP.h
8613                 - (match_cipher, security_compatible, nm_ap_check_compatible): new
8614                         functions; check if an NMConnection object is compatible with the
8615                         settings of this AP
8616                 - (freq_to_channel, channel_to_freq): utility functions for
8617                         channel <-> frequency conversion
8618
8619         * src/nm-device.c
8620           src/nm-device.h
8621                 - (nm_device_get_best_connection): pass the specific object around
8622                          (which might be the object path of a specific AP to connect to).
8623                          The get_best_connection() call should populate this on return
8624                          if needed (wireless does).
8625
8626         * src/nm-device-802-3-ethernet.c
8627                 - (real_get_best_connection): handle specific_object argument
8628
8629         * src/NetworkManager.c
8630           src/NetworkManagerMain.h
8631                 - Remove unused includes
8632
8633         * src/nm-device-802-11-wireless.c
8634           src/nm-device-802-11-wireless.h
8635                 - Convert the ap_list into a GSList from an NMAccessPointList
8636                 - No need for caching the 'activation_ap' since this is now determined
8637                         from the specific_object of the activation request, which is
8638                         populated from the get_best_connection() call or from a user request
8639                 - (nm_device_802_11_wireless_update_bssid): fix warning
8640                 - (get_wireless_capabilities): fix error message format arguments
8641                 - (nm_device_802_11_wireless_copy_allowed_to_dev_list): remove, unused
8642                 - (find_best_connection, real_get_best_connection): implement
8643                 - (ap_list_get_ap_by_ssid, nm_device_802_11_wireless_ap_list_print):
8644                         move here from NetworkManagerAPList
8645                 - (ap_need_secrets): remove; moved to nm-connection.c where it belongs
8646                 - (real_act_stage1_prepare): just ensure an AP exists, connection is
8647                         already verified earlier
8648                 - (real_act_stage2_config): use nm_connection_need_secrets()
8649
8650         * src/NetworkManagerPolicy.c
8651                 - (nm_policy_auto_get_best_device): handle specific objects
8652                 - (create_connection): remove; automatic connection creation functionality
8653                         is handled by the Connection objects
8654                 - (nm_policy_device_change_check): handle specific_object
8655
8656         * libnm-util/nm-connection.c
8657                 - (wireless_sec_need_secrets, nm_connection_need_secrets): implement
8658
8659 2007-09-10  Dan Williams  <dcbw@redhat.com>
8660
8661         * src/nm-manager.c
8662                 - (query_connections): fix uninitialized variable problem that caused
8663                         segfault
8664                 - (nm_manager_add_device): take devices down on startup so that we can
8665                         be assured that nm_device_is_up() won't short-circuit the init
8666                         process.  Hack until the is_up check gets split into two pieces
8667                         that aren't behaviorally confusing.
8668
8669 2007-09-09  Dan Williams  <dcbw@redhat.com>
8670
8671         * introspection/nm-device.xml
8672                 - The 'Activate' method now takes 3 arguments, a service name for the
8673                 settings service (user or system), the object path of the connection
8674                 to activate, and the specific object to activate, if any
8675
8676         * src/nm-device-interface.c
8677                 - (nm_device_interface_error_quark, nm_device_interface_error_get_type):
8678                 Add error bits
8679                 - (impl_device_activate): adapt to new Activate arguments; validate
8680                 the service name and get the Connection object from the NMManager
8681                 before starting to activate the device with the specified connection
8682
8683         * src/nm-device-802-3-ethernet.c
8684                 - (real_get_best_connection): find the best connection, or create a
8685                 default one if no existing connections can be used
8686
8687         * src/NetworkManagerPolicy.c
8688                 - (nm_policy_auto_get_best_device): Get the device's best connection
8689                 and only pick the device if it has one
8690                 - (nm_policy_device_change_check): disable wireless bits for now until
8691                 wireless get_best_connection() can be implemented (replacing "best_ap");
8692                 don't create a default connection here as the device subclass will do
8693                 that if needed
8694
8695         * src/nm-manager.h
8696           src/nm-manager.c
8697                 - (nm_manager_get): make NMManager a singleton and expose the getter
8698                 internally
8699                 - Rework internal NMManager connection handling to use the same
8700                 routines for both the system and user settings services.  Most calls
8701                 take a new NMConnectionType argument specifying either system or user
8702                 connections
8703                 - (nm_manager_get_connection_by_object_path): new function; get a
8704                 connection keyed on its object path
8705
8706         * src/NetworkManager.c
8707                 - (main): use nm_manager_get()
8708
8709 2007-09-09  Dan Williams  <dcbw@redhat.com>
8710
8711         * src/nm-device.h
8712           src/nm-device.c
8713                 - (nm_device_get_best_connection): new function; get best connection
8714                         for the device at that time
8715
8716 2007-09-09  Dan Williams  <dcbw@redhat.com>
8717
8718         * src/nm-device-interface.h
8719                 - Add NMDeviceInterfaceError with an UnknownConnection error
8720
8721 2007-09-09  Dan Williams  <dcbw@redhat.com>
8722
8723         Stupid mistake on my part; object path and interface for settings service
8724         and connection objects can be the same, only the service name must be
8725         different for the system and user settings services.
8726
8727         * include/NetworkManager.h
8728           src/nm-manager.c
8729           introspection/nm-settings-connection.xml
8730           introspection/nm-settings.xml
8731           libnm-glib/nm-settings.c
8732                 - (nm_connection_settings_init, query_user_connections,
8733                    new_connection_cb): Unify NetworkManagerSettings and Connection
8734                    interface name and object path
8735
8736 2007-09-06  Dan Williams  <dcbw@redhat.com>
8737
8738         * libnm-glib/nm-object.c
8739                 - (nm_object_get_string_property, nm_object_get_object_path_property,
8740                    nm_object_get_int_property, nm_object_get_uint_property,
8741                    nm_object_get_boolean_property, nm_object_get_byte_property,
8742                    nm_object_get_double_property, nm_object_get_byte_array_property):
8743                         clear GValues after copying their contents, fixes memory leaks
8744                         after every property access because dbus-glib copies the values
8745                         from the DBusMessage into the GValue already.
8746
8747 2007-09-06  Dan Williams  <dcbw@redhat.com>
8748
8749         * introspection/nm-access-point.xml
8750                 - Fix WpaFlags and RsnFlags property names to be what dbus-glib expects
8751                         them to be.  There's some magic property name parsing going on in
8752                         dbus-glib that breaks up property names based on studly-caps and
8753                         puts - between words.
8754
8755         * libnm-glib/nm-access-point.c
8756                 - (nm_access_point_get_wpa_flags, nm_access_point_get_rsn_flags):
8757                         Fix property names
8758
8759 2007-09-06  Dan Williams  <dcbw@redhat.com>
8760
8761         * src/nm-manager.c
8762                 - (nm_manager_user_connections_destroy): clear the user connections hash
8763                         table, don't destroy it
8764                 - (finalize): only destroy the hash table on NMManager finalization
8765
8766 2007-09-02  Dan Williams  <dcbw@redhat.com>
8767
8768         * include/NetworkManager.h
8769           libnm-glib/nm-settings.c
8770                 - defines for the user settings daemon D-Bus bits
8771
8772         * src/NetworkManager.c
8773                 - Remove stuff that referred to the old NetworkManagerInfo service
8774
8775         * src/vpn-manager/nm-dbus-vpn.h
8776                 - Move old NMI defines to the only place they are used still
8777
8778         * libnm-util/nm-connection.c
8779           libnm-util/nm-connection.h
8780           src/nm-activation-request.c
8781                 - Make NMConnection a GObject subclass so we can do spiffy stuff with it
8782
8783         * src/nm-manager.c
8784           src/nm-manager.h
8785                 - Get connections and their settings from the user settings daemon
8786                         at the appropriate times
8787
8788 2007-09-02  Dan Williams  <dcbw@redhat.com>
8789
8790         * libnm-util/nm-setting.c
8791                 - (nm_settings_verify): correct setting name is 'connection', not 'info'
8792                 - (setting_wireless_hash): set the right value on the item
8793
8794 2007-09-02  Dan Williams  <dcbw@redhat.com>
8795
8796         * test/Makefile.am
8797           test/nminfotest.c
8798                 - Remove, no longer useful
8799
8800 2007-08-30  Dan Williams  <dcbw@redhat.com>
8801
8802         * src/Makefile.am
8803           src/NetworkManagerDbus.c
8804           src/NetworkManagerDbus.h
8805           src/vpn-manager/nm-dbus-vpn.c
8806                 - Remove, no longer necessary.  Move last bits to the only place its
8807                 used, in nm-dbus-vpn.c
8808
8809         * src/NetworkManagerAPList.c
8810           src/nm-device.c
8811           src/NetworkManager.c
8812           src/nm-device-802-11-wireless.c
8813           src/vpn-manager/nm-vpn-manager.c
8814           src/vpn-manager/nm-vpn-service.c
8815           src/NetworkManagerPolicy.c
8816           src/nm-manager.c
8817                 - Remove usage of NetworkManagerDbus.h, and kill the obfuscation
8818                 that was message_is_error()
8819
8820 2007-08-30  Dan Williams  <dcbw@redhat.com>
8821
8822         * libnm-util/sha1.c
8823                 - Include config.h to get defines for endiannes (gnome.org #420216)
8824
8825 2007-08-30  Dan Williams  <dcbw@redhat.com>
8826
8827         Patch from Philip Withnall <bugzilla@tecnocode.co.uk>
8828
8829         * src/ppp-manager/Makefile.am
8830                 - use -fPIC (gnome.org #471825)
8831
8832 2007-08-29  Dan Williams  <dcbw@redhat.com>
8833
8834         * include/NetworkManager.h
8835                 - Keep NMConnection object path in sync
8836
8837         * libnm-glib/nm-settings.c
8838           libnm-glib/nm-settings.h
8839                 - Break D-Bus object registration out of the init function, because
8840                 every object that's exported over D-Bus needs to use the _same_
8841                 DBusConnection.  Otherwise, each object would get a different object
8842                 path tree and wouldn't be callable.
8843
8844 2007-08-29  Dan Williams  <dcbw@redhat.com>
8845
8846         * libnm-util/nm-setting.h
8847           libnm-util/nm-setting.c
8848           libnm-util/nm-connection.c
8849           src/NetworkManagerPolicy.c
8850                 - 'info' settings object should be 'connection' says the spec
8851                 at NetworkManagerConfigurationSpecification
8852
8853 2007-08-29  Dan Williams  <dcbw@redhat.com>
8854
8855         * libnm-glib/nm-settings.c
8856           libnm-glib/nm-settings.h
8857                 - make the dbus path a property of the object, and autogenerate it.
8858                 It can't be composed of the 'id' field becuase that's not available
8859                 yet during the GObject creation in nm_connection_settings_init()
8860
8861 2007-08-29  Dan Williams  <dcbw@redhat.com>
8862
8863         * introspection/nm-settings-connection.xml
8864           introspection/nm-settings.xml
8865                 - Service name -> NetworkManagerUserSettings because two services
8866                 can't share part of the same path.  I'm not really sure how we'll use
8867                 the same code with the system-settings daemon...
8868
8869 2007-08-28  Dan Williams  <dcbw@redhat.com>
8870
8871         * src/nm-device-interface.c
8872           src/nm-device-interface.h
8873                 - Kill one more bit of NMData
8874
8875 2007-08-28  Dan Williams  <dcbw@redhat.com>
8876
8877         * src/NetworkManagerSystem.h
8878           src/nm-device.c
8879           src/nm-device.h
8880           src/nm-hal-manager.c
8881           src/NetworkManager.c
8882           src/nm-device-802-11-wireless.c
8883           src/nm-hal-manager.h
8884           src/nm-device-802-3-ethernet.c
8885           src/vpn-manager/nm-vpn-service.h
8886           src/vpn-manager/nm-vpn-manager.c
8887           src/vpn-manager/nm-vpn-manager.h
8888           src/vpn-manager/nm-vpn-service.c
8889           src/nm-device-802-11-wireless.h
8890           src/NetworkManagerMain.h
8891           src/nm-device-802-3-ethernet.h
8892           src/backends/NetworkManagerGentoo.c
8893           src/backends/NetworkManagerPaldo.c
8894           src/backends/NetworkManagerFrugalware.c
8895           src/backends/NetworkManagerRedHat.c
8896           src/backends/NetworkManagerSlackware.c
8897           src/backends/NetworkManagerGeneric.c
8898           src/backends/NetworkManagerArch.c
8899           src/backends/NetworkManagerSuSE.c
8900           src/backends/NetworkManagerGeneric.h
8901           src/backends/NetworkManagerDebian.c
8902                 - Kill NMData
8903
8904 2007-08-28  Dan Williams  <dcbw@redhat.com>
8905
8906         * src/NetworkManagerMain.h
8907           src/nm-device-802-11-wireless.c
8908           src/NetworkManager.c
8909                 - Remove invalid AP list from NMData; need to rework this somewhat, but
8910                 for now we should set the 'invalid' property on individual APs, and when
8911                 we need to invalidate a whole ESS, set the 'invalid' on every member of
8912                 that ESS
8913
8914 2007-08-28  Dan Williams  <dcbw@redhat.com>
8915
8916         * src/NetworkManagerAP.c
8917           src/NetworkManagerAP.h
8918                 - Remove 'fallback' tag, to be replaced by NMConnection/NMSettings
8919                         'autoconnect' property instead
8920
8921         * src/NetworkManager.c
8922           src/NetworkManagerMain.h
8923           src/NetworkManagerPolicy.c
8924           src/NetworkManagerPolicy.h
8925                 - Remove the 'allowed_ap_list', which should be replaced by 
8926                         NMConnection/NMSettings instead, since _those_ are the allowed
8927                         things that NM can connect to
8928
8929         * src/nm-device-802-11-wireless.c
8930                 - Remove both allowed_ap_list usage and 'fallback' checking
8931
8932 2007-08-28  Dan Williams  <dcbw@redhat.com>
8933
8934         * src/nm-device.c
8935           src/named-manager/nm-named-manager.c
8936           src/named-manager/nm-named-manager.h
8937           src/NetworkManager.c
8938           src/vpn-manager/nm-vpn-manager.c
8939           src/NetworkManagerMain.h
8940           src/NetworkManagerSystem.c
8941                 - Remove the named-manager object from NMData structure in preparation
8942                 for NMData's timely death.  Make the NMNamedManager the singleton that
8943                 it really is
8944
8945 2007-08-28  Dan Williams  <dcbw@redhat.com>
8946
8947         Remove NMAPSecurity objects, they are replaced with flags on the APs for
8948         each AP's capabilities, and by NMConnection/NMSettings objects for user
8949         defined connections.
8950
8951         * include/NetworkManager.h
8952                 - Redefine 802.11 security properties.  There are now device capabilities
8953                         and AP flags and AP security flags.  It was way to unclear before.
8954
8955         * src/Makefile.am
8956           src/nm-ap-security-leap.h
8957           src/nm-ap-security-leap.c
8958           src/nm-ap-security-wpa-eap.c
8959           src/nm-ap-security-wpa-eap.h
8960           src/nm-ap-security-private.h
8961           src/nm-ap-security-wpa-psk.c
8962           src/nm-ap-security-wpa-psk.h
8963           src/nm-ap-security-wep.c
8964           src/nm-ap-security-wep.h
8965           src/nm-ap-security.c
8966           src/nm-ap-security.h
8967                 - Removed, to be replaced with NMConnection/NMSettings objects
8968
8969         * src/nm-dbus-nmi.c
8970           src/nm-dbus-nmi.h
8971                 - Removed, to be replaced by code that talks to the new info daemon
8972                         interface and gets NMConnection/NMSettings objects
8973
8974         * src/backends/NetworkManagerSuSE.c
8975                 - Remove usage of NMAPSecurity; should be replaced by a system-level
8976                         info-daemon that does the same thing but talks the new info-daemon
8977                         D-Bus interface
8978
8979         * src/NetworkManagerAP.h
8980           src/NetworkManagerAP.c
8981           src/NetworkManagerAPList.c
8982           libnm-glib/libnm-glib-test.c
8983                 - Remove usage of NMAPSecurity objects and adjust to new flags for
8984                         WPA/RSN
8985
8986         * libnm-glib/nm-access-point.c
8987           libnm-glib/nm-access-point.h
8988           introspection/nm-access-point.xml
8989           test/nm-tool.c
8990                 - Adjust to new flags for AP security
8991
8992         * utils/nm-utils.c
8993           utils/nm-utils.h
8994           src/vpn-manager/nm-dbus-vpn.c
8995                 - Remove D-Bus pending call stuff from nm-utils and put it in the VPN
8996                         stuff which is the only place it's used
8997
8998         * src/nm-device-interface.c
8999           src/nm-device-interface.h
9000           introspection/nm-device.xml
9001           src/nm-activation-request.c
9002           src/nm-activation-request.h
9003           src/nm-device.c
9004                 - Add a new 'specific_object' argument that hints to NM what actual
9005                         AP or other device-specific thing the connection should apply to.
9006                         NMConnection objects can apply to more than one actual device/AP.
9007
9008         * libnm-util/nm-connection.c
9009         * libnm-util/nm-connection.h
9010                 - Add 'have_secrets" call stubs
9011
9012         * libnm-util/cipher.h
9013                 - Move NM_AUTH_TYPE_* defines here for now
9014
9015         * src/nm-device-802-11-wireless.c
9016                 - Remove usage of NMAPSecurity, to be replaced with NMConnection/
9017                         NMSettings objects
9018
9019         * src/NetworkManagerDbus.c
9020         * src/NetworkManagerPolicy.c
9021                 - Remove usage of update_allowed_networks, should be pushing data in
9022                         a different manner
9023
9024 2007-08-27  Tambet Ingo  <tambet@gmail.com>
9025
9026         * src/nm-manager.c (impl_manager_get_devices): Duplicate the device path, 
9027         dbus-glib frees it when the call is done.
9028
9029 2007-08-26  Dan Williams  <dcbw@redhat.com>
9030
9031         * introspection/nm-device.xml
9032                 - Add 'Index' property on NMDevice objects (forgot to do this earlier)
9033
9034 2007-08-26  Dan Williams  <dcbw@redhat.com>
9035
9036         * src/nm-device-802-3-ethernet.c
9037                 - (constructor): move connection of interface-connected/disconnected
9038                         signals here from real_bring_up().  Should be listening to netlink
9039                         for carrier events no matter what the initial state of the device
9040                         is.
9041
9042 2007-08-26  Dan Williams  <dcbw@redhat.com>
9043
9044         * src/nm-netlink-monitor.c
9045                 - (nm_netlink_monitor_class_init): fix marshalling types for
9046                         interface-connected/interface-disconnected
9047                 - (nm_netlink_monitor_event_handler): clean up carrier on/off
9048                         check
9049
9050 2007-08-26  Dan Williams  <dcbw@redhat.com>
9051
9052         Convert to using interface indexes as the primary method of identifying
9053         devices inside NetworkManager.  Indexes are (?) stable, but devices can
9054         be renamed at any time.  Device object paths now refer to the device
9055         index rather than the name, and you can map those two manually if you like
9056         by looking in the /sys/class/net/<name>/ifindex file.  Also moves most
9057         netlink-related code to nm-netlink.c, and cleans up nm-netlink-monitor.c
9058         to use interface indexes rather than names.
9059
9060 2007-08-26  Dan Williams  <dcbw@redhat.com>
9061
9062         * src/nm-netlink-monitor.h
9063                 - Remove one last bit of wireless-event signal
9064
9065 2007-08-26  Dan Williams  <dcbw@redhat.com>
9066
9067         * src/nm-netlink-monitor.c
9068                 - (nm_netlink_monitor_class_init, nm_netlink_monitor_event_handler):
9069                         don't need the 'wireless-event' signal anymore since that's all
9070                         handled by wpa_supplicant
9071
9072 2007-08-25  Dan Williams  <dcbw@redhat.com>
9073
9074         It's 2007. Remove support for drivers that don't support wireless scanning.
9075
9076         * test/nm-tool.c
9077           include/NetworkManager.h
9078           src/NetworkManagerUtils.c
9079           src/NetworkManagerPolicy.c
9080           src/nm-device-802-11-wireless.c
9081                 - Remove special handling for non-scanning devices and mark them
9082                         as unsupported/unhandled
9083
9084 2007-08-20  Dan Williams  <dcbw@redhat.com>
9085
9086         * src/nm-device-802-11-wireless.c
9087           src/nm-device-802-3-ethernet.c
9088                 - (real_is_up): move device-specific tests before generic IFF_UP test,
9089                         because when the card is pulled or the module removed, the device
9090                         is already !IFF_UP and then device-specific cleanup (removing
9091                         the supplicant interface, periodic checks, etc) never gets done
9092
9093 2007-08-20  Dan Williams  <dcbw@redhat.com>
9094
9095         * src/nm-manager.c
9096                 - (nm_manager_remove_device): bring device down before disconnecting
9097                         signal handlers, so that the 'state' signal will get broadcast when
9098                         the device enters the DOWN state
9099                 - (manager_device_state_changed): add NM_DEVICE_STATE_DOWN to the list
9100                         of states that cause the NMManager to recheck its state
9101
9102 2007-08-20  Dan Williams  <dcbw@redhat.com>
9103
9104         * src/supplicant-manager/nm-supplicant-interface.c
9105                 - (interface_disconnect_done): don't try to dispose of the net proxy
9106                         when it may already have been disposed of
9107
9108 2007-08-20  Dan Williams  <dcbw@redhat.com>
9109
9110         * src/nm-device-802-11-wireless.c
9111                 - (nm_device_802_11_wireless_get_ssid): don't traceback and die when
9112                         the SSID isn't available; this can happen when the card is pulled
9113                         or the module unloaded, during the post-removal deactivation
9114                         paths, when the ioctl returns ENODEV
9115
9116 2007-08-20  Dan Williams  <dcbw@redhat.com>
9117
9118         * src/nm-device-802-11-wireless.c
9119                 - (merge_scanned_ap): only merge the AP with another if the SSID, BSSID,
9120                         frequency, and mode match.  Applets are now responsible for grouping
9121                         access points
9122
9123 2007-08-20  Dan Williams  <dcbw@redhat.com>
9124
9125         * src/NetworkManagerAP.c
9126         * src/NetworkManagerAP.h
9127                 - (nm_ap_print_self): new function
9128
9129         * src/NetworkManagerAPList.c
9130                 - (nm_ap_list_print_members): call nm_ap_print_self() rather than trying
9131                         to do it all here
9132         
9133 2007-08-17  Dan Williams  <dcbw@redhat.com>
9134
9135         * src/nm-device-802-3-ethernet.c
9136                 - (real_bring_down): don't try to dispose of stuff that might not
9137                         exist
9138
9139 2007-08-17  Dan Williams  <dcbw@redhat.com>
9140
9141         * src/NetworkManagerAP.c
9142                 - (nm_ap_set_user_addresses): uppercase any BSSID passed in from the
9143                         applet.  This ensures that the case between the seen-bssids and
9144                         the bssids reported by the driver match.
9145
9146 2007-08-17  Dan Williams  <dcbw@redhat.com>
9147
9148         * src/nm-device-802-11-wireless.c
9149                 - (device_cleanup): disconnect the interface in wpa_supplicant before
9150                         we dispose of the interface proxy in NM
9151
9152 2007-08-16  Dan Williams  <dcbw@redhat.com>
9153
9154         * libnm-glib/nm-client.c
9155                 - (nm_client_init): create VPN connections hash table with key free
9156                         function
9157                 - (proxy_vpn_connection_added): VPN connections hash table key should
9158                         be a duplicated value, not the same memory address as the VPN
9159                         connection name.  This is because the VPN connection name could
9160                         potentially be freed and set to something else during the lifetime
9161                         of the NMVPNConnection object.
9162
9163 2007-08-16  Tambet Ingo  <tambet@gmail.com>
9164
9165         * src/ppp-manager/nm-ppp-manager.c (pppd_child_setup): Implement.
9166         (nm_ppp_manager_start): Use g_spawn_async() since we're not doing anything
9167         with the file descriptors. Send a child setup function to change the pppd
9168         progress group.
9169
9170 2007-08-15  Dan Williams  <dcbw@redhat.com>
9171
9172         * src/supplicant-manager/nm-supplicant-interface.c
9173                 - (try_remove_iface): new function, ask wpa_supplicant to remove
9174                         an interface
9175                 - (nm_supplicant_interface_dispose): call try_remove_iface() when
9176                         disposing of the NMSupplicantInterface.  Otherwise weird stuff
9177                         happens on hotplug if wpa_supplicant doesn't tear down and readd
9178                         the interface internally
9179
9180 2007-08-15  Dan Williams  <dcbw@redhat.com>
9181
9182         * src/nm-device-802-11-wireless.c
9183                 - (real_bring_down): move most of this function into device_cleanup()
9184                         so that it can be called from elsewhere
9185                 - (nm_device_802_11_wireless_dispose): clean up device periodic timers
9186                         and stuff on dispose.  These would normally get cleaned up when
9187                         the device is marked down and deactivated, but when the device is
9188                         hot-unplugged, it's already down and real_down() never gets run
9189
9190 2007-08-15  Dan Williams  <dcbw@redhat.com>
9191
9192         * src/nm-dbus-nmi.c
9193                 - (nm_dbus_get_user_key_for_network_cb): fix incorrect refcounting that
9194                         caused a reference leak on device for which NM requested a key
9195
9196 2007-08-15  Dan Williams  <dcbw@redhat.com>
9197
9198         * libnm-glib/nm-client.c
9199                 - (nm_client_get_best_vpn_state): fix leakage of the vpn connection list
9200
9201 2007-08-15  Tambet Ingo  <tambet@gmail.com>
9202
9203         * src/ppp-manager: Implement ppp-manager. It's sort of dead code for now since
9204         nothing is using it at the moment, but it'll be all useful and stuff later on.
9205
9206         * libnm-util/nm-setting.h: Define NMSettingPPP.
9207
9208         * libnm-util/nm-setting.c: Implement NMSettingPPP.
9209
9210         * libnm-util/nm-connection.c (register_default_creators): Register ppp setting.
9211
9212         * src/Makefile.am: Add ppp-manager to SUBDIRS.
9213
9214         * configure.in: Require ppp headers. Build Makefile for ppp-manager.
9215
9216         * introspection/Makefile.am: Add nm-manager-client.xml to EXTRA_DIST.
9217
9218 2007-08-14  Tambet Ingo  <tambet@gmail.com>
9219
9220         * libnm-glib/Makefile.am: Use nm-manager-client.xml to produce nm-client-bindings.
9221
9222         * introspection/nm-manager-client.xml: Add a horrible horrbile hack to work around
9223         an issue with dbus-glib bindings generator. The issue is, the generated C caller
9224         functions for dbus methods "Sleep(bool)" and "sleep()" both have the same function
9225         name and different arguments and it won't compile anymore. To fix this, we now have
9226         two copies of nm-manager.xml file. nm-manager.xml contains the actual interface,
9227         that is new API + compatibility API and used by the daemon. The other, 
9228         nm-manager-client.xml is only the new API without compatibility bits and is used
9229         by libnm-glib to make it compile.
9230
9231         * introspection/nm-manager.xml: Define compatibility methods (sleep, wake, state).
9232
9233         * src/nm-manager.c (impl_manager_legacy_sleep)
9234         (impl_manager_legacy_wake, impl_manager_legacy_state): Implement the compatibility
9235         interface functions for 0.6 branch.
9236
9237 2007-08-14  Dan Williams  <dcbw@redhat.com>
9238
9239         * src/NetworkManagerAP.c
9240                 - (nm_ap_new_from_properties): fix mistaken check of return value
9241                         from memcmp (should expect 0)
9242
9243 2007-08-14  Dan Williams  <dcbw@redhat.com>
9244
9245         (force-commit to fix wrong comment and partial commit of r2685; this
9246          commit actually applies to r2685)
9247
9248         * src/NetworkManagerUtils.c
9249                 - (nm_utils_same_ssid): add "ignore_trailing_null" parameter which
9250                         ignores trailing nulls in the SSID to work around mismatches in
9251                         expectations between WEXT and what the info-daemon passes back.  The
9252                         info-daemon would pass back the correct length, but due to the
9253                         ESSID length issues with WEXT 22 and greater and wpa_supplicant,
9254                         the device would always have an SSID + 1 depending on what versions
9255                         of wpa_supplicant, the kernel, and NM you have.  This was most often
9256                         visible by just quitting the applet and relaunching, which caused
9257                         NM to reassociated to the same network over again when reloading
9258                         the save networks.
9259
9260         * src/NetworkManagerPolicy.c
9261           src/NetworkManagerUtils.h
9262           src/nm-device-802-11-wireless.c
9263                 - Update for new parameter to nm_utils_same_ssid()
9264
9265 2007-08-14  Dan Williams  <dcbw@redhat.com>
9266
9267         * src/NetworkManagerAP.c
9268                 - (nm_ap_new_from_properties): ignore BSSs with invalid BSSIDs.  Today
9269                         I encountered a BSS that wasn't just hiding it's ESSID, it was
9270                         setting the BSSID to all 0s.  That confused the heck out of NM,
9271                         plus it's useless and probably out-of-spec.
9272
9273 2007-08-14  Dan Williams  <dcbw@redhat.com>
9274
9275         * callouts/Makefile.am
9276           src/dhcp-manager/nm-dhcp-manager.c
9277           src/dhcp-manager/nm-dhcp-manager.h
9278           src/dhcp-manager/Makefile.am
9279                 - Change install location of nm-dhcp-client.action to ${prefix}/libexec
9280
9281 2007-08-14  Dan Williams  <dcbw@redhat.com>
9282
9283         * src/dhcp-manager/nm-dhcp-manager.c
9284                 - (dhclient_run): don't pass -x to dhclient until we figure out if
9285                         it's really needed, get rid of unused xtra_args parameter
9286
9287 2007-08-14  Dan Williams  <dcbw@redhat.com>
9288
9289         * include/NetworkManagerVPN.h
9290           src/vpn-manager/nm-dbus-vpn.c
9291           src/vpn-manager/nm-dbus-vpn.h
9292           src/vpn-manager/nm-vpn-act-request.c
9293           src/vpn-manager/nm-vpn-act-request.h
9294           src/vpn-manager/nm-vpn-service.c
9295           src/vpn-manager/nm-vpn-service.h
9296           libnm-glib/nm-vpn-connection.c
9297           libnm-glib/nm-vpn-connection.h
9298           libnm-glib/nm-client.h
9299                 - Rename NM_VPN_STATE_* -> NM_VPN_SERVICE_STATE_* and NMVPNState -> 
9300                         NMVPNServiceState to clarify what they apply to
9301                 - Rename NM_VPN_ACT_STAGE_* -> NM_VPN_CONNECTION_STATE_* and
9302                         NMVPNActStage -> NMVPNConnectionState for the same reason
9303
9304         * libnm-glib/nm-client.c
9305                 - Constant + type renames from above
9306                 - Properly handle NameOwnerChanged/manager_running signals
9307                         for NM service; only emit when state really changes
9308                 - Use hash tables correctly so that the key (which was previously owned
9309                         by the D-Bus message) now has the same lifetime as the value, since
9310                         the key is now taken from the the NMVPNConnection itself.  This
9311                         really fixes the double-VPN names in the applet
9312
9313 2007-08-13  Dan Williams  <dcbw@redhat.com>
9314
9315         Patch from Michael Biebl <biebl@debian.org>
9316
9317         * po/POTFILES.in
9318           po/POTFILES.skip
9319                 - Update for vpn-properties move
9320
9321 2007-08-13  Dan Williams  <dcbw@redhat.com>
9322
9323         * libnm-glib/nm-client.c
9324                 - Convert internal VPN connection tracking from a list to a hash table
9325                         to easily avoid duplicates
9326                 - (nm_client_get_vpn_connections): now returns an allocated GSList that
9327                         must be freed by the caller, like nm_client_get_devices()
9328                 - (nm_client_remove_vpn_connection): don't let the removal signal
9329                         leak through for NMVPNConnection objects that aren't actually
9330                         tracked.
9331                 - (manager_running): throw away VPN connection list when NM goes away,
9332                         like with the device list
9333
9334 2007-08-13  Dan Williams  <dcbw@redhat.com>
9335
9336         * src/dhcp-manager/nm-dhcp-manager.c
9337                 - Stop any dhclient instance that might be already running for a
9338                         particular interface before starting an NM spawned dhclient.  Fixes
9339                         dhclient processes left over if NM crashes, stuff like that.
9340
9341 2007-08-13  Dan Williams  <dcbw@redhat.com>
9342
9343         * src/NetworkManagerAP.c
9344                 - (finalize): don't try to g_array_free (NULL, ...), which happened
9345                         when the AP wasn't broadcasting it's SSID
9346
9347 2007-08-13  Rodrigo Moya <rodrigo@gnome-db.org>
9348
9349         * include/NetworkManager.h: added DBus path for connection settings.
9350
9351         * libnm-glib/nm-settings.[ch] (nm_settings_signal_new_connection,
9352         nm_connection_settings_signal_updated,
9353         nm_connection_settings_signal_removed): new functions to wrap the
9354         objects' signals.
9355         (nm_connection_settings_init): register GObject with DBus.
9356         (nm_connection_settings_get_dbus_object_path): new function.
9357
9358         * libnm-glib/Makefile.am: added libnmutil to link flags.
9359
9360 2007-08-13  Tambet Ingo  <tambet@gmail.com>
9361
9362         * configure.in: Remove checks for dhcdbd as it's killed! killed! killed!
9363
9364         * gnome/*: Remove. The nm-vpn-properties directory is now part of nm-applet,
9365         libnm_glib directory got merged with libnm-glib/.
9366
9367         * libnm-glib/libnm-glib.pc.in: Rename to libnm_glib.pc.in.
9368
9369         * libnm-glib/Makefile.am: Add legacy libnm_glib.[ch] to the build.
9370         Rename the library from libnm-glib to libnm_glib to maintain the library API
9371         compatibility with 0.6 branch.
9372
9373         * Makefile.am: Remove gnome/ SUBDIR.
9374
9375         * gnome/libnm_glib/libnm_glib.[ch]: Move to libnm-glib/.
9376
9377         * src/Makefile.am: Remove the WPA_SUPPLICANT_BIN define.
9378
9379         * dispatcher-daemon/Makefile.am: Link the binary with libnm_glib.
9380
9381         * configure.in: Remove GNOME checks, NetworkManager does not need any of these
9382         anymore.
9383         Remove checks for wpa_supplicant binary, it's used over dbus.
9384         Remove gnome/ directory files form AC_OUTPUT, that directory is getting moved.
9385
9386         * test/Makefile.am: Remove define WPA_SUPPLICANT_BIN.
9387         Link the binaries with libnm_glib.la.
9388
9389 2007-08-12  Dan Williams  <dcbw@redhat.com>
9390
9391         * src/NetworkManagerPolicy.c
9392                 - (nm_policy_device_change_check): fix policy to deactivate old device
9393                         before activating new one, at least until the multiple active
9394                         device support lands
9395
9396 2007-08-12  Dan Williams  <dcbw@redhat.com>
9397
9398         * src/NetworkManagerPolicy.c
9399                 - (nm_policy_new): hook up to connection-added / connection-removed
9400                         signals instead of connections-changed
9401
9402 2007-08-12  Dan Williams  <dcbw@redhat.com>
9403
9404         Kill dhcdbd until it's dead, dead, dead.  Based on a patch from
9405         Robert Frank <rfrank@redhat.com>
9406
9407         * src/dhcp-manager/nm-dhcp-manager.c
9408           src/dhcp-manager/nm-dhcp-manager.c
9409           src/nm-device.c
9410                 - Spawn and communicate with dhclient directly, through means of a
9411                 custom dhclient callout script.  Process callout D-Bus signals
9412                 with dbus-glib instead of hand-rolled dbus.  DHCP timeouts are now
9413                 sent via gobject signals rather than being driven by the dhcp manager
9414                 directly.
9415
9416 2007-08-12  Dan Williams  <dcbw@redhat.com>
9417
9418         * callouts/nm-dhcp-client-action.c
9419                 - (build_message): ignore non-DHCP-related environment variables
9420
9421 2007-08-12  Dan Williams  <dcbw@redhat.com>
9422
9423         * Makefile.am
9424           configure.in
9425           callouts/Makefile.am
9426           callouts/nm-dhcp-client-action.c
9427           callouts/nm-dhcp-client.conf
9428                 - Add dhclient-executed callout that takes the place of dhclient-script
9429                 and dhcdbd, pushing DHCP options out to the system bus as a signal that
9430                 NM then listens for
9431
9432 2007-08-09  Tambet Ingo  <tambet@gmail.com>
9433
9434         [Based on patch by Helmut Schaa <hschaa@suse.de>]
9435
9436         * libnm-glib/nm-client.h:
9437         * libnm-glib/nm-object.h:
9438         * libnm-glib/nm-vpn-connection.h:
9439         * libnm-glib/nm-settings.h:
9440         * libnm-glib/nm-device.h:
9441         * libnm-glib/nm-ip4-config.h:
9442         * libnm-glib/nm-access-point.h:
9443         * libnm-glib/nm-device-802-3-ethernet.h:
9444         * libnm-util/nm-setting.h: 
9445         * libnm-util/nm-connection.h: Add G_BEGIN_DECLS / G_END_DECLS to support C++.
9446
9447         * libnm-glib/nm-object.c (nm_object_get_byte_property): Implement.
9448
9449         * libnm-glib/nm-access-point.c: Strength has type char.
9450
9451         * gnome/vpn-properties/Makefile.am: Remove GNOME_DISABLE_DEPRECTATED for now
9452         to fix build. GnomeDruid is deprecated in recent libgnomeui.
9453
9454         * introspection/nm-access-point.xml: Strength property is char, not int.
9455
9456         * src/NetworkManagerAP.c (set_property): Set strength from char.
9457         (get_property): Handle hidden APs (with empty SSID).
9458         Get strength value from char.
9459         (nm_ap_class_init): Strength property has char type.
9460
9461 2007-08-03  Rodrigo Moya <rodrigo@gnome-db.org>
9462
9463         * introspection/Makefile.am:
9464         * introspection/nm-settings.xml:
9465         * introspection/nm-settings-connection.xml: added Settings interfaces.
9466
9467         * libnm-glib/nm-settings.[ch]:
9468         * libnm-glib/Makefile.am: added abstract class for Settings interfaces
9469         containing the DBus implementation.
9470
9471 2007-07-26  Dan Williams  <dcbw@redhat.com>
9472
9473         Patch from Bernhard Miklautz <bernhard.miklautz@shacknet.at>
9474
9475         * src/NetworkManagerSystem.c
9476                 - (nm_system_device_set_ip4_route): don't add the route if it's on the
9477                         same subnet (#437396)
9478
9479 2007-07-26  Dan Williams  <dcbw@redhat.com>
9480
9481         Patch from Kelemen Gábor <kelemeng@gnome.hu>
9482
9483         * gnome/vpn-properties/nm-vpn-properties.c
9484                 - Fix translatable strings (#445865)
9485
9486 2007-07-26  Dan Williams  <dcbw@redhat.com>
9487
9488         Patch from Andreas Hanke <andreas.hanke@gmx-topmail.de>
9489
9490         * configure.in
9491                 - Remove useless junk (#412530)
9492
9493 2007-07-10  Christopher Aillon  <caillon@redhat.com>
9494
9495         Patch from Robert Buchholz <rbu@gentoo.org>:
9496
9497         * configure.in:
9498         * Makefile.am:
9499         * introspection/Makefile.am:
9500         Make make distcheck work again.
9501
9502 2007-06-27  Dan Williams  <dcbw@redhat.com>
9503
9504         * Make SSIDs GByteArrays everywhere
9505         * Rename "essid" -> "ssid" everywhere that's appropriate
9506         * Refcount activation_ap member of the 802.11 wireless device class
9507
9508 2007-06-27  Tambet Ingo  <tambet@ximian.com>
9509
9510         * libnm-glib/nm-object.[ch]: Add these to the SVN, oops.
9511
9512 2007-06-22  Tambet Ingo  <tambet@ximian.com>
9513
9514         * src/nm-device-802-11-wireless.c (merge_scanned_ap): Don't advertise constantly
9515         that we got a new AP when we just update existing AP properties.
9516
9517 2007-06-21  Tambet Ingo  <tambet@ximian.com>
9518
9519         * libnm-glib/Makefile.am: Add NMObject to build, remove nm-utils.[ch].
9520
9521         * nm-utils.[ch]: Remove.
9522
9523         * libnm-glib/nm-object.c: Implement a base class for all libnm-glib dbus-aware
9524         objects for easy property access and dbus connection handling.
9525
9526         * libnm-glib/nm-client.c: Derive from NMObject.
9527
9528         * libnm-glib/nm-device.c: Ditto.
9529
9530         * libnm-glib/nm-device-802-3-ethernet.c: Changes for being based on NMObject.
9531
9532         * libnm-glib/nm-device-802-11-wireless.c: Ditto.
9533
9534         * libnm-glib/nm-ip4-config.c: Ditto.
9535
9536         * libnm-glib/nm-access-point.c: Ditto.
9537
9538         * libnm-util/nm-connection.c (nm_connection_compare): Add a stub for connection
9539         comparision. Currently used by the device activation code to determine if the new
9540         activation is the same as the old one.
9541
9542         * src/nm-dbus-nmi.c (nm_dbus_get_user_key_for_network): Don't use the obsolete and
9543         wrong way of getting the dbus path for AP. Fixes the issue where the applet isn't
9544         able to ask password for the AP.
9545
9546         * src/nm-device.c (nm_device_activate): Change the logic here - instead of giving
9547         up if the device is already connected, tear down it's connection (if it isn't the
9548         same as new one) and start the activation.
9549
9550         * src/nm-manager.c: Add the beginnings of NMConnection storage and signals.
9551
9552         * src/NetworkManagerAP.c (nm_ap_init): Set the default values to AP memebers, fixes
9553         the issue where all APs are always listed as encrypted.
9554
9555         * src/NetworkManagerDbus.c (nm_dbus_get_object_path_for_network): Remove. APs have
9556         their own registered paths.
9557
9558         * test/nm-tool.c (detail_device): Don't try to get active network from wireless
9559         device if it's not connected - dbus-glib will happily crash trying to marshal NULL.
9560
9561 2007-06-13  Tambet Ingo  <tambet@ximian.com>
9562
9563         * src/NetworkManagerAP.c (foreach_property_cb): Set WEP capabilities too!
9564         (0 & 0 == 0, doh)
9565
9566         * src/nm-device.c (nm_device_state_changed): Emit the signal before handling it
9567         because the handling code will cause the next state change and signal listeners
9568         get the signals in wrong order.
9569
9570         * src/NetworkManagerPolicy.c (nm_policy_device_change_check): Get the "old_dev"
9571         correctly in case of pending activation.
9572
9573         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_set_activation_ap):
9574         Convert the essid byte array to string correctly, including the terminating NULL.
9575
9576         * src/NetworkManagerPolicy.c (create_connection): Create wireless ssid and
9577         mode with correct types.
9578
9579         * src/nm-dbus-nmi.c (nm_dbus_get_user_key_for_network): Fix a typo, pass the
9580         constructed info to dbus call instead of the activation request.
9581
9582 2007-06-11  Christopher Aillon  <caillon@redhat.com>
9583
9584         Patch from Christian Persch <chpe@gnome.org>
9585
9586         * libnm-glib/Makefile.am:
9587         * dispatcher-daemon/Makefile.am:
9588         Use the correct variables, the correct paths, and correct ordering. (446315)
9589
9590 2007-06-11  Tambet Ingo  <tambet@ximian.com>
9591
9592         * src/nm-device.c: Make the activation stage virtual functions take NMDevice
9593         argument. The activation request is easy to retrieve.
9594
9595         * src/nm-activation-request.c: Convert to GObject. Do not include half of NM headers
9596         just to be a convenient location for devices to store random stuff.
9597
9598 2007-06-11  Christopher Aillon  <caillon@redhat.com>
9599
9600         Patch from Alex Smith <alex@alex-smith.me.uk>
9601
9602         * src/backends/NetworkManagerFrugalware.c:
9603         Update the FrugalWare backend to fix a few segfaults. (#392642)
9604
9605 2007-06-08  Tambet Ingo  <tambet@ximian.com>
9606
9607         * libnm-util/nm-setting.c: Implement NMSettingWirelessSecurity.
9608
9609         * libnm-util/nm-connection.c (register_default_creators): Register wireless security
9610         setting.
9611         (gvalue_to_string): Recognize G_TYPE_UCHAR and GSList.
9612
9613 2007-06-06  Tambet Ingo  <tambet@ximian.com>
9614
9615         * libnm-util/nm-setting.c: Get rid of dump virtual functions, that can happen
9616         automagically.
9617         Implement NMSettingIP4Config.
9618         Finish NMSettingWired by adding all known members.
9619         (setting_wired_verify): Implement.
9620         Finish NMSettingWireless by adding all known members.
9621         (setting_wireless_verify): Implement.
9622
9623         * libnm-util/nm-connection.c: Register "ipv4" setting.
9624         (nm_connection_dump): Implement. Instead of requiring every NMSetting to implement
9625         dump function, we can introspect the GHashTable which is used for sending connections
9626         over dbus.
9627
9628         * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_set_activation_ap):
9629         Take GByteArray for essid, it's really not a string.
9630
9631         * src/nm-device.c (real_act_stage3_ip_config_start): Get information from NMSettings.
9632         Start DHCP request if setting is not passed or if it states that DHCP should be used.
9633         (real_act_stage4_get_ip4_config): If settings are provided, use them, even if it
9634         means overriding the values we got from DHCP.
9635         (real_activation_cancel_handler): Cancel DHCP transaction only if it has started, doh.
9636         (nm_device_deactivate_quickly): Ditto.
9637
9638         * src/nm-device-interface.c (impl_device_activate): Dump the connection structure
9639         for debugging.
9640
9641 2007-05-07  Tambet Ingo  <tambet@ximian.com>
9642
9643         * libnm-glib/Makefile.am: Link with libnm-util to gain access to
9644         NMConnection.
9645
9646         * libnm-glib/nm-device-802-11-wireless.c:
9647         (nm_device_802_3_ethernet_activate): Remove.
9648
9649         * libnm-glib/nm-device-802-3-ethernet.c
9650         (nm_device_802_3_ethernet_activate): Remove.
9651
9652         * libnm-glib/nm-device.c (nm_device_activate): Implement.
9653
9654         * src/nm-device-802-3-ethernet.c: Implement the new activation using
9655         NMConnection.
9656
9657         * src/nm-device-802-11-wireless.c: Store an activation AP once the
9658         activation has started.
9659         Implement the new activation using NMConnection.
9660
9661         * src/nm-activation-request.c: Store a generic connection object instead
9662         of a wireless-specific AP.
9663
9664         * src/NetworkManagerPolicy.c (create_connection): Implement. Depending
9665         on device type, create a device specific connection object suitable for
9666         device activation.
9667
9668         * src/nm-device.c (nm_device_activate): Re-implement. Call the device
9669         specific check to validate the connection and on success start the
9670         activation.
9671
9672         * src/nm-device-interface.h: Add a activate virtual function to the
9673         interface definition.
9674
9675         * src/nm-device-interface.c (nm_device_interface_activate): Implement.
9676         (impl_device_activate): Implement.
9677
9678         * introspection/nm-device.xml: Add a generic device activation interface
9679         that accepts an abstract NMConnection structure that has device-specific
9680         information in it.
9681
9682         * introspection/nm-device-802-3-ethernet.xml: Remove the wired-specific
9683         activation interface.
9684
9685         * introspection/nm-device-802-11-wireless.xml: Remove the wireless-specific
9686         activation interface.
9687
9688         * libnm-util/nm-connection.c: 
9689         * libnm-util/nm-connection.h: 
9690         * libnm-util/nm-setting.c:
9691         * libnm-util/nm-setting.h: Add.
9692
9693         * libnm-util/Makefile.am: Build the added files.
9694
9695         * src/nm-dbus-manager.c
9696         (proxy_name_owner_changed, nm_dbus_manager_class_init): Remove the
9697         DbusConnection argument from 'name-owner-changed' signal. The manager
9698         is already passed as a first argument to the signal and the connection
9699         is easy enough to get from it.
9700
9701         * src/vpn-manager/nm-vpn-service.c (nm_vpn_service_name_owner_changed):
9702         Update the signature of the function.
9703
9704         * src/vpn-manager/nm-vpn-manager.c (nm_name_owner_changed_handler):
9705         Ditto.
9706
9707         * src/NetworkManager.c: Ditto.
9708
9709         * src/named-manager/nm-named-manager.c
9710         (nm_named_manager_name_owner_changed): Ditto.
9711
9712         * src/supplicant-manager/nm-supplicant-manager.c
9713         (nm_supplicant_manager_name_owner_changed): Ditto.
9714
9715         * src/nm-hal-manager.c (name_owner_changed): Ditto.
9716
9717         * src/dhcp-manager/nm-dhcp-manager.c
9718         (nm_dhcp_manager_name_owner_changed): Ditto.
9719
9720         * src/nm-hal-manager.c: Add a list of device detectors and creators
9721         to make it easier to add new devices. Each device type has it's own
9722         entry in the table so adding new device types is only a matter of
9723         implementing a couple of functions, one for device detection and the
9724         other for device creation.
9725
9726 2007-04-25  Dan Williams  <dcbw@redhat.com>
9727
9728         * initscript/RedHat/NetworkManager.in: remove trailing backslash
9729                 (gnome.org #432401)
9730
9731 2007-03-30  Dan Williams  <dcbw@redhat.com>
9732
9733         * src/NetworkManagerSystem.c
9734                 - (nm_system_device_set_ip4_route): clean up and fix argument
9735                         to nm_dev_sock_open()
9736
9737 2007-03-28  Tambet Ingo  <tambet@ximian.com>
9738
9739         * src/supplicant-manager/nm-supplicant-config.c (get_hash_cb): Marshal the
9740         data to correct types instead of always using string.
9741
9742         * src/NetworkManagerAP.c (get_property): AP is encrypted if capabilities does
9743         _not_ have NM_802_11_CAP_PROTO_NONE.
9744         (foreach_property_cb): Set AP capabilities if it's not set or if the protocol
9745         is not set.
9746
9747 2007-03-27  Tambet Ingo  <tambet@ximian.com>
9748
9749         * libnm-glib/Makefile.am: Fix the build issue.
9750
9751 2007-03-26  Tambet Ingo  <tambet@ximian.com>
9752
9753         * libnm-glib/nm-vpn-connection.h: 
9754         * libnm-glib/nm-vpn-connection.c: Implement.
9755
9756         * libnm-glib/nm-client.c: Add VPN support.
9757
9758         * src/vpn-manager/nm-dbus-vpn.c (dbus_message_handler): Implement DBUS message
9759         handler for VPN.
9760
9761         * src/vpn-manager/nm-vpn-manager.c (nm_vpn_manager_new): Register VPN interface
9762         on DBUS again.
9763
9764 2007-03-26  Dan Williams  <dcbw@redhat.com>
9765
9766         * src/NetworkManagerAPList.c
9767         * src/nm-device-802-11-wireless.c
9768         * src/NetworkManagerAP.c:
9769                 - Store last seen as glong instead of GTimeVal.
9770                 - Fix the upper bound of capabilities, it's a bitfield.
9771
9772 2007-03-16  Tambet Ingo  <tambet@ximian.com>
9773
9774         * libnm-glib/nm-device.c (nm_device_get_description): Implement.
9775
9776         * libnm-glib/nm-client.c (nm_client_manager_is_running): Implement. Also add a
9777         "manager-running" signal that notifies the appearance/disappearance of NM.
9778         (nm_client_sleep): Implement.
9779
9780         * libnm-glib/nm-device.c:
9781         * libnm-glib/nm-device-802-11-wireless.c: 
9782         * libnm-glib/nm-device-802-3-ethernet.c: 
9783
9784         Don't inherit from DBusGProxy, add a proxy to private
9785         data. The reason is, classes inherited from NMDevice wouldn't get any dbus signals
9786         for anything but their own dbus interface. DBusGProxy objects support only one
9787         interfaces and to work around this, NMDevice has spearate proxy for each dbus
9788         interface. The nice side effect of this change is that we do not create a new
9789         DBusGProxy object for each property access.
9790
9791 2007-03-15  Tambet Ingo  <tambet@ximian.com>
9792
9793         * src/nm-device-802-11-wireless.c (constructor): Initialize the iw_ext structures
9794         with zeroes before passing them to functions - the functions never do that and
9795         reading the values back may produce wrong values.
9796         (real_bring_up): Store the signal handler id ...
9797         (real_bring_down): ... So that it can be removed here.
9798         Disconnect the supplicant interface here as well.
9799         (nm_device_802_11_wireless_ap_list_get_ap_by_obj_path): Use the dbus object path
9800         from the access point instead of old $device/Networks/$essid.
9801
9802         * src/nm-manager.c (nm_manager_get_state): Return NM_STATE_CONNECTED when the
9803         device state is connected (instead of just having link/carrier).
9804
9805         * src/nm-activation-request.c: Don't store NMData in activation request, it's
9806         already easily accessible through the device.
9807
9808         * src/NetworkManagerAP.c (nm_ap_init): Construct the dbus object path here and
9809         store it within the object.
9810         (nm_ap_get_dbus_path): Export it to public as well.
9811
9812         * src/dhcp-manager/nm-dhcp-manager.c (nm_dhcp_manager_get): Keep the ownership
9813         of the singleton.
9814
9815 2007-03-12  Dan Williams  <dcbw@redhat.com>
9816
9817         Get rid of 2 second poll of sysfs 'carrier' file for wired devices.  Useless
9818         for non-carrier-detect capable devices, and useless for carrier-detect
9819         devices since we get notifications from netlink about carrier status anyway.
9820
9821         * src/nm-device-802-3-ethernet.c
9822                 - remove 'link_source_id' member from private data
9823                 - (probe_link): remove and collapse into real_update_link()
9824                 - (nm_device_802_3_periodic_update): remove
9825                 - (real_is_up): check for sup_iface rather than link_source_id
9826                 - (real_bring_up): return gboolean for success/fail; require that
9827                         sup_iface be valid for device bringup to succeed
9828                 - (real_bring_down): zero out link signal ids
9829
9830         * src/nm-device.c
9831                 - (nm_device_activate_stage2_device_config): fail activation if device
9832                         bringup fails
9833                 - (real_act_stage4_get_ip4_config): fail activation if device bringup
9834                         fails
9835                 - (nm_device_bring_up): return success/fail
9836
9837         * src/nm-device.h
9838                 - bring_up now returns success/fail
9839
9840         * src/nm-device-802-11-wireless.c
9841                 - (real_bring_up): return success from bringup
9842
9843 2007-03-07  Dan Williams  <dcbw@redhat.com>
9844
9845         Patch from Simon Geard <delgarde@ihug.co.nz>  (Gnome.org #394956)
9846         * src/nm-ap-security-wpa-psk.c
9847                 - (real_write_supplicant_config): work with PSKs that may contain
9848                         zeros in the binary format rather than treating it as a string
9849
9850 2007-03-02  Tambet Ingo  <tambet@ximian.com>
9851
9852         * libnm-glib/nm-device-802-11-wireless.c
9853         (nm_device_802_11_wireless_get_capabilities): Implement.
9854
9855         * libnm-glib/nm-device.c (nm_device_get_capabilities): Implement.
9856
9857         * src/nm-device-802-11-wireless.c: Add "WirelessCapabilities" property.
9858
9859         * src/named-manager/nm-named-manager.c (remove_one_zone_from_named): Unref the
9860         reply only if it's not NULL. Not sure why this started happening right now.
9861
9862         * src/nm-manager.c (device_stop_and_free): Remove. No need to have different
9863         code paths for when devices get removed on shutdown or when a device is just
9864         removed.
9865         (finalize): Don't use a g_slist_foreach() when removing devices, the list data
9866         gets freed so any signal from a device (disconnected for instance) would invoke
9867         NMState update which would crash.
9868         (nm_manager_remove_device): Bring the device down when it gets removed.
9869
9870         * src/NetworkManagerPolicy.c (nm_policy_auto_get_best_device): Remove
9871         the unused dev_type.
9872
9873         * src/nm-hal-manager.c (create_device_and_add_to_list): Don't keep the
9874         reference to the added device, NMManager will own it (if it wants).
9875
9876         * test/nm-tool.c: Rewrite using libnm-glib.
9877
9878         * libnm-glib/nm-device-802-11-wireless.c: Cache networks (bssids) list.
9879         We get signalled when it changes.
9880
9881         * libnm-glib/nm-client.c: Cache NMState and device list, we get signalled
9882         when it changes.
9883
9884         * libnm-glib/nm-device.c: Cache the device state property.
9885
9886         * libnm-glib/nm-access-point.c: Cache the strength property.
9887
9888         * src/nm-device-802-11-wireless.c: Fix wireless device scanning scheduler.
9889         The new algorithm is to start from SCAN_INTERVAL_MIN (currently defined as 0)
9890         and add a SCAN_INTERVAL_STEP (currently 20 seconds) with each successful scan
9891         until SCAN_INTERVAL_MAX (currently 120 seconds) is reached. Do not scan while
9892         the device is down, activating, or activated (in case of A/B/G cards).
9893         Remove some old dead ifdef'ed out code that used to configure wireless devices,
9894         it's all done through supplicant now.
9895
9896         * src/supplicant-manager/nm-supplicant-interface.c: Fix the reference
9897         counting issues with pending calls which caused leaks and crashes when
9898         interface was removed (now that the interface actually gets removed).
9899
9900         * src/nm-call-store.c: Make a copy of data before running a foreach
9901         with user callback on it - The most common usage pattern is to cancel
9902         (and thus remove) all pending calls with foreach which would modify
9903         the hash table we're iterating over.
9904
9905         * src/nm-manager.c: When a device is added, make sure it is "up". When
9906         it's removed or disabled due to disabling wireless or networking, bring
9907         it down.
9908
9909         * include/NetworkManager.h: Add new device state NM_DEVICE_STATE_DOWN.
9910
9911         * src/nm-device-802-11-wireless.c: 
9912         * src/nm-device-802-3-ethernet.c: 
9913         * src/nm-device.c:
9914                 - Remove "init" virtual function, all gobjects have a place for that
9915                   already (constructor).
9916                 - Replace "start" virtual function with "bring_up", devices can be
9917                   brought up and down more than just on startup now.
9918                 - Add "is_up" virtual function.
9919                 - Implement one way to bring a device down instead of previous 4 different
9920                   ways, each of witch did something different.
9921
9922         * src/NetworkManagerUtils.c (nm_dev_sock_open): This doesn't need an NMDevice,
9923         all it needs is the device interface.
9924
9925         Get rid of NMData.dev_list (3 members to go).
9926         Get rif of NMData in a lot of places.
9927
9928         * gnome/libnm_glib/libnm_glib.c: Make it compile again.
9929
9930 2007-02-23  Dan Williams  <dcbw@redhat.com>
9931
9932         Patch from Andy Whitcroft <apw@shadowen.org> (Gnome.org #410426)
9933
9934         * src/NetworkManagerAP.c
9935                 - (add_capabilities_from_cipher): fix addition of WEP capabilities by
9936                         OR-ing rather than AND-ing
9937
9938 2007-02-20  Tambet Ingo  <tambet@ximian.com>
9939
9940         * libnm-glib/nm-device-802-11-wireless.c: Add "network-added" and
9941         "network-removed" signals.
9942
9943         * libnm-glib/libnm-glib.pc.in: Require NetworkManager >= 0.7.0.
9944
9945         * libnm-glib/nm-access-point.c: Add "strength-changed" signal, emit it
9946         when receiving the signal from dbus.
9947
9948         * src/nm-device-802-11-wireless.c (get_property): Fix PROP_ACTIVE_NETWORK
9949         property.
9950
9951         * src/NetworkManagerPolicy.c (state_changed): Fix a typo to make the
9952         deactivation of the previously activated device working again.
9953
9954         * src/nm-activation-request.c: Remove NMActStage property and it's getter
9955         and setter.
9956
9957         * src/nm-device.c (nm_device_is_activated): Remove.
9958         state == NM_DEVICE_STATE_ACTIVATED is just as easy to use.
9959
9960         * include/NetworkManager.h: Remove NM_DBUS_NO_DEVICES_ERROR,
9961         NM_DBUS_NO_DIALUP_ERROR, NM_DBUS_NO_NETWORKS_ERROR,
9962         NM_DBUS_NO_ACTIVE_DEVICE_ERROR, NM_DBUS_NO_ACTIVE_NET_ERROR errors and
9963         NM_DBUS_SIGNAL_STATE_CHANGE signal.
9964         Remove NMNetworkStatus and NMActStage enums.
9965
9966 2007-02-19  Tambet Ingo  <tambet@ximian.com>
9967
9968         * src/vpn-manager/nm-vpn-manager.c: Handle the DBUS state changes itself.
9969         Handle device state changes and disconnect VPN if it's device deactivates.
9970
9971         * src/nm-dbus-nm.c: 
9972         * src/nm-dbus-nm.h: 
9973         * src/nm-dbus-device.c: 
9974         * src/nm-dbus-device.c: 
9975         * src/nm-dbus-net.c: 
9976         * src/nm-dbus-net.h: Remove. All of it is implemented byt the new dbus API.
9977
9978         * src/NetworkManagerMain.h: Get rid of all but 3 properties of NMData.
9979
9980         * src/nm-device.c (nm_device_get_by_udi):
9981         (nm_device_get_by_iface): Remove. This doesn't belong here and is already
9982         implemented in the correct location (NMManager).
9983         Rip out all the test_device stuff.
9984
9985         * src/NetworkManagerPolicy.c: Remove the leftover activation success and
9986         failure handlers, it's all done by NMDevice already.
9987
9988         * src/NetworkManager.c: Move the signal handling here from nm-logging.c
9989         Remove the iochannel hack to route the unix signals to the main thread since
9990         we're not threaded anymore.
9991
9992         * src/NetworkManagerAP.c: Implement HWAddress property.
9993
9994         * src/NetworkManagerDbus.c: Remove the dbus signal sending code, it happens
9995         automatically with dbus-glib.
9996
9997         * src/nm-netlink-monitor.c: 
9998         * src/nm-netlink-monitor.h:
9999                 - Move it low in the class hierarchy, don't reference any NM types.
10000                 - Remove private data from the header.
10001                 - Use type safe checks in public API methods.
10002                 - Make it a singleton so we don't have to pass the single reference around.
10003
10004 2007-02-16  Tambet Ingo  <tambet@ximian.com>
10005
10006         * introspection/nm-ip4-config.xml: Implement.
10007
10008         * libnm-glib/libnm-glib-test.c: Use new DBUS API in tests.
10009
10010         * libnm-glib/nm-ip4-config.c:
10011         * libnm-glib/nm-ip4-config.c: Implement.
10012
10013         * src/nm-ap-security[-*]: Remove circular dependencies between APs and AP
10014         securities. APs reference security.
10015
10016         * src/nm-device-802-11-wireless.c: Implement missing properties that need to
10017         be exported over DBUS.
10018
10019         * src/nm-device-802-3-ethernet.c: Ditto.
10020
10021         * src/NetworkManagerAP.c:
10022         * src/NetworkManagerAP.h:
10023                 - Convert to GObject, export over DBUS.
10024
10025         * src/nm-ip4-config.h:
10026         * src/nm-ip4-config.h:
10027                 - Convert to GObject, export over DBUS.
10028
10029 2007-02-12  Dan Williams  <dcbw@redhat.com>
10030
10031         Patch from Helmut Schaa <hschaa@suse.de>
10032
10033         * vpn-daemons/pptp/configure.in
10034           vpn-daemons/pptp/Makefile.am
10035           vpn-daemons/openvpn/configure.in
10036           vpn-daemons/openvpn/Makefile.am
10037           vpn-daemons/vpnc/configure.in
10038           vpn-daemons/vpnc/Makefile.am
10039                 - Add --without-gnome switch which disables building gnome bits
10040
10041 2007-02-12  Tambet Ingo  <tambet@ximian.com>
10042
10043         * libnm-glib/nm-device.c (nm_device_get_use_dhcp): Remove.
10044
10045         * libnm-glib/nm-access-point.c (nm_access_point_is_broadcast): Remove.
10046
10047         * introspection/nm-device-802-3-ethernet.xml: Rename 'Address' property to
10048         'HwAddress'.
10049
10050         * introspection/nm-device.xml: Remove 'UseDhcp' property.
10051
10052         * introspection/nm-access-point.xml: Remove 'Broadcast' property.
10053
10054         Totally break NetworkManager. Please use 0.6 branch until futher notice.
10055
10056         * src/:
10057                 - Remove old low-level dbus interface implementations and replace them
10058                   with dbus-glib one.
10059
10060         * configure.in:
10061                 - Require dbus-glib >= 0.72.
10062                 - Plug in new sources to build.
10063
10064         * libnm-glib/:
10065                 - Implement GObject wrappers on top of DBUS glib auto-generated bindings
10066                   to make it more convenient to use from GObject based programs.
10067
10068         * introspection/:
10069                 - Implement DBUS XML introspection files, used by both NM and libnm-glib.
10070
10071 2007-02-09  Tambet Ingo  <tambet@ximian.com>
10072
10073         * src/nm-device-802-11-wireless.c:
10074                 - Add "network-added" and "network-removed" signals.
10075                 - Use gobject boilerplate macros to define the GObject.
10076                 - Implement wireless device activation.
10077                 - Remove activation_failure_handler and activation_success_handler
10078                   and instead listen on state-changed signals and run the same code
10079                   from there.
10080
10081         * src/nm-device.c:
10082                 - Implment NMDeviceInterface::deactivate.
10083                 - Remove activation_failure_handler and activation_success_handler
10084                   virtual methods. Each device which is interested in these events
10085                   can just listen on it's state changed signals.
10086
10087         * src/NetworkManagerPolicy.c:
10088                 - Move a bit more NMData usage to NMManager.
10089                 - Remove activation scheduling bits.
10090                 - Add listeners for wireless device's "network-added" and
10091                   "network-removed" signals.
10092                 - Listen device changed signals and deactivate currently activated
10093                   device when another device start activating (for now).
10094                 - Remove (nm_policy_schedule_device_change_check): There's never a need
10095                   for calling this, the policy code knows exactly when this should happen,
10096                   by listening on events from NMManager and NMDevices.
10097
10098         * src/nm-device-802-3-ethernet.c (nm_device_802_3_ethernet_activate):
10099         Implement.
10100
10101         * src/nm-dbus-nm.c (nm_dbus_nm_set_active_device): Call the activation
10102         method on the specific device instead of going to through policy code
10103         and determining the device type by passed in AP's existance.
10104
10105         * src/nm-device-interface.c (nm_device_interface_deactivate): Implement the
10106         abstract NMDevice deactivation.
10107
10108 2007-02-08  Tambet Ingo  <tambet@ximian.com>
10109
10110         * src/NetworkManager.c:
10111                 - Set up all the shiny new managers.
10112
10113         * src/NetworkManagerPolicy.c:
10114                 - Add the beginnings of new NMPolicy code. Instead of requireing all
10115                   classes to call into policy code, make the policy code kind of like
10116                   a supervisor that monitors what's going on and drives the whole NM.
10117
10118         * src/nm-hal-manager.c: 
10119         * src/nm-hal-manager.h:
10120                 - Collect all libhal code scattered around NM to this one class.
10121                 - Listen libhal and NMManager events and add/remove devices to
10122                   NMManager.
10123
10124         * src/nm-manager.c:
10125         * src/nm-manager.h:
10126                 - Implment a replacement for NMData. NMData is now officially
10127                 deprecated.
10128
10129 2007-02-05  Tambet Ingo  <tambet@ximian.com>
10130
10131         * src/nm-device-802-11-wireless.c (supplicant_iface_scan_result_cb): 
10132         * src/supplicant-manager/nm-supplicant-interface.h
10133         * src/supplicant-manager/nm-supplicant-interface.c
10134         (nm_supplicant_interface_class_init): Change the "scan-result" signal's
10135         argument to boolean from enum.
10136
10137         Make NMDevice abstract class, remove almost all references to it's
10138         subclasses (the last place gets removed with new policy manager). Add
10139         NMDeviceInterface (which NMDevice implements) so that when we have
10140         NMDevice exported over DBUS, there's a common NMDevice interface which
10141         all instances have, plus there's a device specific interface for each
10142         specific type.
10143         Remove functions (nm_device_is_802_3_ethernet) and
10144         (nm_device_is_802_11_wireless). There are already standard GObject macros
10145         for type safe checks.
10146         Use the updated supplican manager API.
10147
10148         * src/nm-device-interface.h: 
10149         * src/nm-device-interface.c: 
10150         * src/nm-call-store.h: 
10151         * src/nm-call-store.c: Implement.
10152
10153         * src/supplicant-manager/nm-supplicant-interface.c:
10154         * src/supplicant-manager/nm-supplicant-interface.h:
10155         * src/supplicant-manager/nm-supplicant-manager.c:
10156         * src/supplicant-manager/nm-supplicant-manager.h:
10157                 - Remove all private data type references from public header files.
10158                 - Remove all references to other NM classes, this class is just a
10159                   proxy between wpa_supplicant and NM so it doesn't have to know
10160                   any internals.
10161                 - Convert to dbus-glib bindings.
10162                 - Type safe checks for public methods' arguments.
10163                 - Store pending DBUS call ids to NMCallStore.
10164
10165         * src/supplicant-manager/nm-supplicant-config.c:
10166                 - Store config values in a GHashTable instead of GSList.
10167
10168         * src/NetworkManagerMain.h: Remove all references to DHCP manager.
10169
10170         * src/NetworkManager.c: Don't initialize the DHCP manager, it's a
10171         singleton now.
10172
10173         * src/nm-device.c: Use the new DHCP manager API.
10174
10175         * src/nm-activation-request.c:
10176         * src/nm-activation-request.h:
10177                 - Remove all dhcp related properties and methods.
10178
10179         * src/dhcp-manager/nm-dhcp-marshal-main.c: Add.
10180
10181         * src/dhcp-manager/nm-dhcp-marshal.list: Add.
10182
10183         * src/dhcp-manager/nm-dhcp-manager.c:
10184         * src/dhcp-manager/nm-dhcp-manager.h:
10185                 - Convert it to GObject since we need to signal state changes.
10186                 - Remove all references to other NM classes, this class is one
10187                   of the lowest classes in our hierarchy.
10188                 - One less class to use NMActRequest.
10189                 - Make it singleton, one less user of NMData.
10190                 - Remove a couple of sleep() calls.
10191                 - Convert a bunch of low-level dbus API calls to dbus-glib calls.
10192                   One less class to use the NM's custom tailored signal handlig.
10193
10194         * Makefile.am: Generate marshallers, add them to build.
10195
10196 2007-02-02  Dan Williams  <dcbw@redhat.com>
10197
10198         * configure.in
10199           gnome/Makefile.am
10200           nm-applet.desktop
10201           Makefile.am
10202                 - Remove last bits referencing gnome applet
10203
10204 2007-02-02  Dan Williams  <dcbw@redhat.com>
10205
10206         * src/vpn-manager/nm-vpn-service.c
10207                 - (nm_vpn_service_stage4_ip4_config_get): use uint32 arrays for DNS
10208                         and NBNS server addresses
10209
10210 2007-02-02  Tambet Ingo  <tambet@ximian.com>
10211
10212         * src/nm-dbus-manager.c:
10213         * src/nm-dbus-manager.h:
10214                 - Convert all internal DBUS code to use dbus-glib bindings.
10215                 - Remove GObject properties, we don't need them here.
10216                 - Don't explicitly set things to NULL after freeing, glib is
10217                   happy to do it if asked nicely (G_DEBUG=gc-friendly).
10218                 - Make public API argument checks type safe.
10219                 - Remove unnecessary (and wrong) cast to GObject for the first
10220                   argument to g_signal_* calls - The first argument is a gpointer.
10221                 - Export DBusGConnection to other cool classes that (are going to)
10222                   use dbus-glib.
10223
10224 2007-01-26  Dan Williams  <dcbw@redhat.com>
10225
10226         * libnm-util/dbus-dict-helpers.c
10227           libnm-util/dbus-dict-helpers.h
10228                 - Coordinate style with wpa_supplicant version to minimize diff
10229                 - Add uint32 array support
10230                 - (nmu_dbus_dict_append_uint32_array): new function
10231                 - (nmu_dbus_dict_begin_string_array, nmu_dbus_dict_string_array_add_element,
10232                    nmu_dbus_dict_end_string_array): bring over from wpa_supplicant
10233                         version; allow adding string array elements individually
10234
10235         * test/libnm-util/test-dbus-dict-helpers.c
10236                 - Test uint32 arrays
10237
10238 2007-01-27  Jürg Billeter  <j@bitron.ch>
10239
10240         * src/backends/NetworkManagerPaldo.c
10241                 - (nm_system_update_dns): clear nscd hosts cache
10242
10243 2007-01-04  Dan Williams  <dcbw@redhat.com>
10244
10245         Threading removal related cleanups:
10246
10247         - Use the glib default main context.  Remove the device main context
10248                 member from NMDevice, and the main_context member from NMData.  Change
10249                 all the idle and timeout scheduler functions to use plain
10250                 g_idle_add() and g_timeout_add().
10251
10252         - As a side-effect of the first change, nm_dbus_manager_get() no longer
10253                 takes an argument; fix that up too.
10254
10255         - Remove all locking, which is useless since we no longer use threads.  For
10256                 example, nm_get_device_by_iface_locked() has been removed.  The global
10257                 device list lock, the AP List lock, and all static locks in
10258                 NetworkManagerPolicy.c have been removed.  The locking utility functions
10259                 in NetworkManagerUtils.c have also been removed.
10260
10261         - Other cleanups in spacing and code style
10262
10263 2007-01-01  Dan Williams  <dcbw@redhat.com>
10264
10265         Found by Bill Moss:
10266
10267         * src/supplicant-manager/nm-supplicant-interface.c
10268                 - (nm_supplicant_interface_disconnect): fix cleanup logic when
10269                         the supplicant interface wasn't already disconnected.  Always
10270                         call removeNetwork and disconnect unless the supplicant interface
10271                         is in the DISCONNECTED or INACTIVE state.
10272
10273 2006-12-28  Dan Williams  <dcbw@redhat.com>
10274
10275         Use a single thread for everything.  With the move to wpa_supplicant
10276         and communication over D-Bus, there's no reason for multiple threads.
10277         Almost all of the blocking code has been removed, with one exception in
10278         the DHCP manager and a few in the VPN manager.  This commit removes the
10279         per-device worker thread and fixes activation cancellation in the absence
10280         of threads.  Further removal of thread-related code would be removing
10281         any locking code (like the device list lock) and simplification of logic
10282         around areas of code or data structures that are currently locked.
10283
10284         * autoip.c
10285           dhcp-manager/nm-dhcp-manager.c 
10286           nm-device-802-11-wireless.c
10287           nm-device-802-3-ethernet.c
10288           nm-device.c
10289           nm-device.h
10290                 - Remove usage of multiple threads
10291
10292 2006-12-19  Dan Williams  <dcbw@redhat.com>
10293
10294         Big wpa_supplicant + dbus update; need latest wpa_supplicant from CVS
10295         plus a few other patches from wpa_supplicant bugzilla.
10296
10297         * src/Makefile.am
10298           src/NetworkManagerPolicy.c
10299           src/NetworkManagerUtils.c
10300           src/NetworkManagerUtils.h
10301           src/nm-ap-security-leap.c
10302           src/nm-ap-security-wep.c
10303           src/nm-ap-security-wpa-eap.c
10304           src/nm-ap-security-wpa-psk.c
10305           src/nm-ap-security.c
10306           src/nm-ap-security.h
10307           src/nm-device-802-11-wireless.c
10308           src/nm-device-802-11-wireless.h
10309           src/supplicant-manager/nm-supplicant-config.c
10310           src/supplicant-manager/nm-supplicant-config.h
10311           src/supplicant-manager/nm-supplicant-interface.c
10312           src/supplicant-manager/nm-supplicant-interface.h
10313           src/supplicant-manager/nm-supplicant-marshal.list
10314           src/supplicant-manager/nm-supplicant-settings-verify.c
10315           src/supplicant-manager/nm-supplicant-settings-verify.h
10316                 - Move all connection management and association handling to
10317                         wpa_supplicant over dbus, rather than spawning a private copy
10318
10319 2006-12-19  Dan Williams  <dcbw@redhat.com>
10320
10321         * src/NetworkManagerPolicy.c
10322                 - (nm_policy_device_change_check, nm_policy_schedule_device_change_check):
10323                         better locking of the device change check handler ID.  Incorrect
10324                         locking was causing lost device change requests
10325
10326 2006-12-18  Dan Williams  <dcbw@redhat.com>
10327
10328         * libnm-util/dbus-dict-helpers.c
10329                 - (_nmu_dbus_dict_entry_get_array, _nmu_dbus_dict_entry_get_string_array,
10330                    _nmu_dbus_dict_entry_get_byte_array): replace usage of
10331                    dbus_message_iter_get_array_len()  (Gnome.org #382898)
10332
10333 2006-12-18  Dan Williams  <dcbw@redhat.com>
10334
10335         * gnome/libnm_glib/libnm_glib.c
10336                 - Change dbus_connection_close() -> dbus_connection_unref()
10337
10338 2006-12-11  Dan Williams  <dcbw@redhat.com>
10339
10340         * src/supplicant-manager/nm-supplicant-interface.c
10341                 - (iface_state_cb, wpas_iface_get_state): new functions; query initial
10342                         wpa_supplicant interface state
10343                 - (nm_supplicant_interface_add_cb): query initial wpa_supplicant interface
10344                         state before transitioning to READY state
10345
10346 2006-12-04  Dan Williams  <dcbw@redhat.com>
10347
10348         * src/nm-device-802-11-wireless.c
10349                 - (supplicant_iface_scanned_ap_cb): fix parsing of hidden APs due to
10350                         odd length of ESSID returned from ieee80211 stack-based drivers
10351
10352 2006-12-04  Dan Williams  <dcbw@redhat.com>
10353
10354         * src/nm-device-802-11-wireless.c
10355                 - (supplicant_iface_scanned_ap_cb): remove erroneous & from WPA & RSN
10356                         IE handling blocks that cause mis-parsing of the IE
10357
10358 2006-12-04  Dan Williams  <dcbw@redhat.com>
10359
10360         * src/nm-device-802-11-wireless.c
10361                 - (init_supplicant_interface): new function; pull supplicant interface
10362                         setup code out into standalone function since it must be called from
10363                         two different places
10364                 - (real_init): sup_mgr is now in private object data; get and track
10365                         the supplicant manager object over the NMDevice subclass' lifetime
10366                         and register a signal handler for its state signals; only try to
10367                         initialize the supplicant interface if the supplicant manager is in
10368                         the IDLE state (and therefore is ready for requests)
10369                 - (request_wireless_scan): reschedule the scan request if (a) there is
10370                         no supplicant interface yet (meaning wpa_supplicant isn't running
10371                         or isn't ready yet), or (b) if the supplicant interface isn't ready
10372                         for requests yet
10373                 - (supplicant_iface_connection_state_cb): new function; stub for
10374                         handling supplicant interface connection state signals
10375                 - (supplicant_mgr_state_cb): do the right thing when wpa_supplicant
10376                         comes and goes
10377                 - (nm_device_802_11_wireless_dispose): clean up spacing; release the
10378                         supplicant manager object that's being tracked starting with this
10379                         commit
10380
10381 2006-12-04  Dan Williams  <dcbw@redhat.com>
10382
10383         * src/supplicant-manager/nm-supplicant-interface.c
10384                 - (nm_supplicant_interface_set_property): track signal handler ID
10385                 - (nm_supplicant_interface_dispose): remove signal handler on dispose
10386
10387 2006-12-04  Dan Williams  <dcbw@redhat.com>
10388
10389         * src/supplicant-manager/nm-supplicant-interface.[ch]
10390                 - (nm_supplicant_interface_get_state): new function
10391
10392 2006-12-04  Dan Williams  <dcbw@redhat.com>
10393
10394         * src/supplicant-manager/nm-supplicant-interface.c
10395                 - (bssid_properties_cb): don't treat DBus errors as valid
10396                         scanned AP messages
10397
10398 2006-12-04  Dan Williams  <dcbw@redhat.com>
10399
10400         * src/supplicant-manager/nm-supplicant-interface.[ch]
10401                 - (nm_supplicant_interface_get_connection_state): new function
10402                 - define new supplicant connection states
10403                 - send a signal when the supplicant connection state changes
10404
10405 2006-12-03  Dan Williams  <dcbw@redhat.com>
10406
10407         * src/supplicant-manager/Makefile.am
10408           src/supplicant-manager/nm-supplicant-connection.h
10409           src/supplicant-manager/nm-supplicant-connection.c
10410           src/supplicant-manager/nm-supplicant-config.h
10411           src/supplicant-manager/nm-supplicant-config.c
10412           src/supplicant-manager/nm-supplicant-types.h
10413           src/supplicant-manager/nm-supplicant-interface.h
10414           src/supplicant-manager/nm-supplicant-interface.c
10415                 - Rename NMSupplicantConnection -> NMSupplicantConfig
10416
10417 2006-12-03  Dan Williams  <dcbw@redhat.com>
10418
10419         Patch from Gabor Kelemen <kelemeng@gnome.hu>  (Gnome.org #381890)
10420
10421         * po/POTFILES.in
10422           po/POTFILES.skip
10423                 - Move VPN-related translatables to .skip
10424
10425         * vpn-daemons/pptp/po/POTFILES.in
10426                 - Update with new translatables
10427
10428 2006-12-02  Dan Williams  <dcbw@redhat.com>
10429
10430         Patch from Christian Persch <chpe@gnome.org>
10431
10432         * gnome/applet/Makefile.am
10433           gnome/applet/applet-dbus-devices.c
10434           gnome/applet/applet-notifications.c
10435           gnome/applet/applet.c
10436           gnome/applet/applet.h
10437           gnome/applet/main.c
10438                 - Be a GtkStatusIcon on GTK+ >= 2.10
10439
10440 2006-12-02  Dan Williams  <dcbw@redhat.com>
10441
10442         * gnome/applet/applet.c
10443                 - (nma_update_info): fix two unecessary allocations
10444
10445 2006-12-02  Dan Williams  <dcbw@redhat.com>
10446
10447         Patch from Michael Biebl <biebl@teco.edu>
10448         * configure.in
10449           man/NetworkManager.1.in
10450           man/NetworkManagerDispatcher.1.in
10451           man/NetworkManager.8.in
10452           man/NetworkManagerDispatcher.8.in
10453                 - Add .SH NAME stanzas
10454                 - Move NM & NM Dispatcher manpages to section 8 (admin)
10455
10456 2006-12-02  Dan Williams  <dcbw@redhat.com>
10457
10458         Patch from Christian Persch <chpe@gnome.org>
10459
10460         * configure.in
10461                 - Check for GTK+ 2.10 in preparation for GtkStatusIcon patch
10462
10463 2006-11-29  Tambet Ingo  <tambet@ximian.com>
10464
10465         Patch by Timo Hoenig <thoenig@suse.de>:
10466         * src/nm-dbus-manager.c (nm_dbus_manager_start_service): Make it work with
10467         DBUS-1.0.
10468
10469         * src/supplicant-manager/Makefile.am: Add nm-supplicant-marshal here, since
10470         we can't use the one from the main source directory.
10471
10472 2006-11-27  Dan Williams  <dcbw@redhat.com>
10473
10474         Patch from Christian Persch <chpe@gnome.org>
10475
10476         * gnome/applet/applet-dbus-devices.c
10477                 - (hal_info_product_cb): fix memleak; free duped string.
10478                         Gnome.org #379908
10479
10480 2006-11-27  Dan Williams  <dcbw@redhat.com>
10481
10482         Patch from Christian Persch <chpe@gnome.org>
10483
10484         * gnome/applet/menu-items.c
10485                 - (network_menu_item_update): use gtk_progress_bar_set_fraction()
10486                         as gtk_progress_set_percentage is deprecated.  Should
10487                         work as far back as GTK+ 2.4.  Gnome.org #379780
10488
10489 2006-11-26  Dan Williams  <dcbw@redhat.com>
10490
10491         Scan using wpa_supplicant over DBus.
10492
10493         * src/nm-device-802-11-wireless.c
10494                 - remove wireless extensions netlink event handler bits
10495                         (wireless_event_helper, nm_device_802_11_wireless_event)
10496                 - remove wireless extensions scan event handler bits
10497                         (process_scan_results, add_new_ap_to_device_list, hexstr2bin,
10498                         hex2byte, hex2num, request_and_convert_scan_results,
10499                         free_process_scan_cb_data, scan_results_timeout,
10500                         schedule_scan_results_timeout, cancel_scan_results_timeout)
10501                 - Rename nm_device_802_11_wireless_scan() -> request_wireless_scan()
10502                         and request scans from the supplicant interface rather than directly
10503                 - Move functionality of convert_scan_results() to cull_scan_list() and
10504                         supplicant_iface_scanned_ap_cb()
10505                 - (supplicant_iface_scan_result_cb): new function; schedule a new scan
10506                         at the scan interval when the current scan has finished
10507                 - (supplicant_iface_state_cb): start scanning when the supplicant
10508                         interface enters the READY state, and stop scanning when it
10509                         enters the DOWN state
10510                 - (cull_scan_list): weed out old access points from the scan list
10511                 - (supplicant_iface_scanned_ap_cb): convert a supplicant scanned access
10512                         point into an NMAccessPoint and merge it into the device's scan list
10513
10514         * src/supplicant-manager/nm-supplicant-interface.c
10515           src/supplicant-manager/nm-supplicant-interface.h
10516                 - Add a new signal "scan-result" which is issued when the supplicant
10517                         notifies NM that a scan has completed
10518                 - Add a new signal "scanned-ap" that notifies listeners of a new access
10519                         point found in the scan.  Called once for each access point that
10520                         the supplicant interface object receives from the supplicant as a
10521                         result of the "scanResults" method call
10522                 - (wpas_iface_query_scan_results): don't wait 4s before querying
10523                         for the initial scan results
10524                 - (scan_request_cb): new function; send listeners the result
10525                         (success, error) of a wireless scan request
10526                 - (nm_supplicant_interface_request_scan): new function; ask the
10527                         supplicant to perform an immediate wireless scan
10528
10529 2006-11-25  Dan Williams  <dcbw@redhat.com>
10530
10531         * src/supplicant-manager/Makefile.am
10532                 - Since we're including NetworkManagerMain.h in nm-supplicant-interface.c,
10533                         add HAL cflags/includes and named-manager includes directory
10534
10535         * src/supplicant-manager/nm-supplicant-interface.h
10536                 - New state STARTING to handle transition from INIT to READY where
10537                         the addInterface pending call is still outstanding
10538
10539         * src/supplicant-manager/nm-supplicant-interface.c
10540                 - track pending calls differently since we may have more than one
10541                         going on at any given time
10542                 - request scan results from wpa_supplicant; but don't do it more often
10543                         than every 4 seconds.  Drivers that do background scanning
10544                         (like the 'ipw' drivers) send a continuous stream of scan completion
10545                         notifications, so we don't want to hammer the supplicant or dbus
10546                         with requests for all scan results every time we get a completion
10547                         notification.
10548
10549 2006-11-25  Dan Williams  <dcbw@redhat.com>
10550
10551         * src/supplicant-manager/nm-supplicant-types.h
10552                 - new file; move all supplicant manager object typedefs here for
10553                         #include sanity
10554
10555         * src/supplicant-manager/nm-supplicant-interface.c
10556           src/supplicant-manager/nm-supplicant-interface.h
10557                 - new file; an object that interfaces an NMDevice object to the
10558                         supplicant and handles signals from the supplicant.  This object
10559                         does all necessary DBus communication with wpa_supplicant.
10560
10561         * src/supplicant-manager/nm-supplicant-manager.c
10562           src/supplicant-manager/nm-supplicant-manager.h
10563                 - Actually do something.  Track the state of the wpa_supplicant service
10564                         and deal with its comings & goings.  Handle life events of
10565                         supplicant interfaces too.
10566                 - Move NMSupplicantManager typedef to nm-supplicant-types.h
10567
10568         * src/supplicant-manager/nm-supplicant-connection.h
10569                 - Move NMSupplicantConnection typedef to nm-supplicant-types.h
10570
10571         * src/supplicant-manager/Makefile.am
10572                 - Add new files to build, and add libnm-util to includes
10573
10574         * src/nm-marshal.list
10575                 - New marshaler type: VOID:UINT,UINT
10576
10577         * src/nm-device-802-3-ethernet.c
10578                 - (real_init): grab a supplicant interface
10579                 - (nm_device_802_3_ethernet_dispose): release the supplicant interface
10580                 - (supplicant_iface_state_cb): new function, stub for handling
10581                         supplicant interface state changes
10582
10583         * src/nm-device-802-11-wireless.c
10584                 - (real_init): grab a supplicant interface
10585                 - (nm_device_802_11_wireless_dispose): release the supplicant interface
10586                 - (supplicant_iface_state_cb): new function, stub for handling
10587                         supplicant interface state changes
10588
10589         * src/NetworkManager.c
10590                 - (main): create and keep the supplicant manager around for the lifetime
10591                         of NetworkManager
10592
10593         * src/Makefile.am
10594                 - Link to the supplicant manager sub-library and use the supplicant
10595                         manager includes
10596
10597 2006-11-25  Dan Williams  <dcbw@redhat.com>
10598
10599         Rework DBus manager signal handling to be more flexible.  Previously,
10600         only one signal handler could be registered for a particular interface.
10601         The DBus manager now reference counts DBus bus matches and allows multiple
10602         clients to register signal handlers for the same interface and sender.
10603
10604         * src/NetworkManager.c
10605                 - (main): track NMI signal handler ID and remove it when we quit
10606
10607         * src/NetworkManagerMain.h
10608                 - Keep track of NMI signal handler ID
10609
10610         * src/nm-dbus-manager.c
10611           src/nm-dbus-manager.h
10612                 - rework signal handling; each signal handler references one signal
10613                         match, but a signal match may be referenced by one or more
10614                         signal handlers.  Matches are refcounted and are destroyed when the
10615                         last signal handler that references the match is removed.  This is
10616                         necessary because two signal handlers may end up requiring the same
10617                         dbus bus match, so the match must live until the last signal handler
10618                         is destroyed (for example, with the wpa_supplicant network interface
10619                         dbus interface).
10620
10621         * src/dhcp-manager/nm-dhcp-manager.c
10622                 - (nm_dhcp_manager_new): track DHCP signal handler id
10623                 - (nm_dhcp_manager_dispose): remove DHCP signal handler
10624
10625         * src/vpn-manager/nm-vpn-service.c
10626                 - (nm_vpn_service_add_watch): track VPN service signal handler id
10627                 - (nm_vpn_service_remove_watch): remove VPN service signal handler
10628
10629 2006-11-25  Dan Williams  <dcbw@redhat.com>
10630
10631         Suggested by Helmut Schaa <hschaa@suse.de>
10632
10633         * src/vpn-daemons/nm-vpn-service.c
10634                 - (supplicant_child_setup): new function
10635                 - (supplicant_exec): make child process use a new process group id
10636
10637         * src/nm-device-802-11-wireless.c
10638                 - (nm_vpn_service_child_setup): new function
10639                 - (nm_vpn_service_stage1_daemon_exec): make child process use a new
10640                         process group id
10641
10642 2006-11-19  Dan Williams  <dcbw@redhat.com>
10643
10644         Patch from Dan Berrange <dan@berrange.com>  Gnome.org #377262
10645         * gnome/vpn-properties/nm-vpn-properties.c
10646                 - clean up after renamed VPN connection
10647
10648 2006-11-19  Dan Williams  <dcbw@redhat.com>
10649
10650         Patch from Dan Berrange <dan@berrange.com>  Gnome.org #377205
10651         * gnome/applet/applet-dbus-vpn.c
10652                 - (nma_dbus_vpn_properties_cb): sort VPN connections
10653
10654         * gnome/vpn-properties/nm-vpn-properties.c
10655                 - (init_app): sort VPN connections
10656
10657 2006-11-09  Dan Williams  <dcbw@redhat.com>
10658
10659         * src/NetworkManagerAPList.c
10660                 - (nm_ap_list_copy_one_essid_by_address): fix bug due to previous
10661                 code cleanup in revision 1.56; the split of the !nm_ap_get_essid()
10662                 from the nm_ap_list_get_ap_by_address() call was incorrect and
10663                 broke hidden SSID matching.  Found by Bill Moss.
10664
10665 2006-10-25  Dan Williams  <dcbw@redhat.com>
10666
10667         * src/nm-dbus-nm.c
10668                 - (nm_dbus_nm_set_active_device): return an empty success message on
10669                         success, rather than falling through to the error case.
10670
10671 2006-10-25  Dan Williams  <dcbw@redhat.com>
10672
10673         * src/NetworkManagerUtils.c
10674                 - (nm_utils_supplicant_request_with_check): suppress messages for the
10675                         "SCAN" command
10676
10677 2006-10-24  Dan Williams  <dcbw@redhat.com>
10678
10679         Reduce the number of times the Gnome applet wakes up, especially when
10680         it's doing absolutely nothing and is hidden.  Initial patch by
10681         Chris Aillon.
10682
10683         * gnome/applet/applet-dbus.c
10684                 - (nma_dbus_filter): when NM isn't around, or when it goes away,
10685                         kill the redraw timeout.  When NM starts up, start the redraw
10686                         timeout.  Also, if we get kicked off the bus for some reason,
10687                         start the reconnection timeout if one's not already running.
10688                 - (nma_dbus_init): better handling of error conditions, don't leak
10689                         a half-initialized dbus connection
10690                 - (nma_dbus_connection_watcher): consolidate places we reinitialize
10691                         the applet's data, just call nm_dbus_init_helper()
10692                 - (nma_start_dbus_connection_watch): new function, starts a periodic
10693                         timeout that calls nma_dbus_connection_watcher()
10694                 - (nma_dbus_init_helper): if we get a successful connection, kill the
10695                         reconnection timeout, and don't start the reconnection timeout
10696                         unconditionally anymore
10697
10698         * gnome/applet/applet-dbus.h
10699                 - Expose nma_start_dbus_connection_watch()
10700
10701         * gnome/applet/applet.c
10702                 - (nma_update_state): no longer static, called from applet-dbus.c for
10703                         immediate UI updates on certain events
10704                 - (nma_set_running): new function; take over setting applet->running,
10705                         when not running (ie, NM is not active), don't activate the redraw
10706                         timeout because we're not showing the applet anyway.  When we are
10707                         running (ie, NM is active), and only when we're running, start the
10708                         redraw timeout.
10709                 - (nma_destroy): kill the redraw timeout by setting 'not running', and
10710                         kill any reconnection timeout
10711                 - (nma_get_instance): move one-off dbus initialization code here since
10712                         nm_dbus_init_helper() gets called more than once, possibly by the
10713                         reconnection timeout function too.  And, when we start up, if we
10714                         can't get a connection to the bus, start the reconnection timeout.
10715                         But don't start the redraw timeout yet, only do that when we get
10716                         NM's state and find out if it's running or not.
10717
10718         * gnome/applet/applet.h
10719                 - Add the reconnection GSource ID
10720                 - Add prototypes for nma_set_running() and the no-longer-static
10721                         nma_update_state()
10722
10723 2006-10-24  Dan Williams  <dcbw@redhat.com>
10724
10725         * src/vpn-daemons/nm-dbus-vpnc.c
10726                 - (nm_dbus_vpn_update_one_connection_cb): unregister pending call in
10727                         pending call tracker
10728                 - (nm_dbus_vpn_connections_update_cb): unregister pending call in
10729                         pending call tracker; register one-vpn-connection update pending
10730                         call in pending call tracker
10731                 - (nm_dbus_vpn_update_one_vpn_connection): register one-vpn-connection
10732                         update pending call in pending call tracker
10733                 - (nm_dbus_vpn_connections_update_from_nmi): register vpn-connections
10734                         update pending call in pending call tracker; don't block waiting
10735                         for call to return
10736
10737 2006-10-19  Robert Love  <rml@novell.com>
10738
10739         * src/backends/NetworkManagerSuSE.c: Don't ever restart nscd; just
10740           refresh the cache.
10741
10742 2006-10-14  Dan Williams  <dcbw@redhat.com>
10743
10744         * src/dhcp-manager/nm-dhcp-manager.c
10745                 - (get_ip4_string, get_ip4_uint32s): have the caller pass
10746                 the dbus connection and the device object path rather than
10747                 constructing it inside both functions.  Saves a bit of memory
10748                 and clarifies a failure path.
10749                 - (nm_dhcp_manager_get_ip4_config): grab the dbus connection
10750                 and allocate device path here rather than each of the two
10751                 functions above.
10752
10753 2006-10-13  Dan Williams  <dcbw@redhat.com>
10754
10755         * src/NetworkManager.c
10756                 - (nm_name_owner_changed_handler): handle NMI coming and going,
10757                 this somehow droppout in the refactor
10758
10759 2006-10-13  Dan Williams  <dcbw@redhat.com>
10760
10761         * Huge DBus refactor:
10762                 - Create a "DBus Manager" object which manages the connection and
10763                 sends signals on NameOwnerChanged and connection/disconnection events,
10764                 handles reconnection to the bus if NM gets kicked off, and abstracts
10765                 signal handling
10766                 - Remove DBusConnection members from places where they are no
10767                 longer needed due to the refactor, like the dbus-connection
10768                 property of the named manager, and from NMData
10769                 - Reformats a bunch of the code to gnome style
10770                 (8-space tabs, braces on same line as statement, 80-col width).
10771                 Consider it open season to reformat any bits to gnome style.
10772                 style that aren't already.
10773
10774 2006-10-13  Dan Williams  <dcbw@redhat.com>
10775
10776         * src/supplicant-manager/Makefile.am
10777                 - Add new files
10778
10779         * src/supplicant-manager/nm-supplicant-manager.[ch]:
10780                 - Make it a minimal GObject
10781
10782         * src/supplicant-manager/nm-supplicant-settings-verify.[ch]:    
10783                 - Verify settings destined for wpa_supplicant
10784
10785         * src/supplicant-manager/nm-supplicant-connection.[ch]: 
10786                 - Minimal GObject to track wpa_supplicant controlled device
10787                 connections
10788
10789 2006-10-13  Wouter Bolsterlee  <wbolster@gnome.org>
10790
10791         * gnome/applet/applet.c: (nma_update_info),
10792         (nma_act_stage_to_pixbuf), (nma_update_state):
10793         Mark missing strings for translation. Fixes bug #343306.
10794
10795 2006-10-01  Dan Williams  <dcbw@redhat.com>
10796
10797         * src/vpn-manager/nm-vpn-manager.c
10798                 - (nm_vpn_manager_load_services): split and clean up
10799                 for readability and correctness.  Restrict VPN service
10800                 files to ending in ".name", as was meant from the
10801                 beginning (but not coded in).  Better error reporting.
10802
10803 2006-10-01  Dan Williams  <dcbw@redhat.com>
10804
10805         * utils/nm-utils.h
10806                 - Clean up formatting of debug/info/warning log messages
10807
10808 2006-09-27  Robert Love  <rml@novell.com>
10809
10810         Patch by Tambet Ingo <tambet@ximian.com>:
10811         * gnome/vpn-properties/nm-vpn-properties.c: Make Renaming a VPN entry
10812           actually work.
10813
10814 2006-09-07  Dan Williams <dcbw@redhat.com>
10815
10816         * test/Makefile.am
10817           test/libnm-util/Makefile.am
10818           test/nm-supplicant-test.c
10819                 - Add test program emulating the way NM drives wpa_supplicant
10820                 to help debug supplicant issues
10821
10822 2006-08-24  Dan Williams <dcbw@redhat.com>
10823
10824         * configure.in
10825           src/Makefile.am
10826           src/supplicant-manager/Makefile.am
10827           src/supplicant-manager/nm-supplicant-manager.c
10828           src/supplicant-manager/nm-supplicant-manager.h
10829                 - Add skeleton bits of the wpa_supplicant manager
10830
10831 2006-08-24  Dan Williams <dcbw@redhat.com>
10832
10833         Patch from Ed Catmur:
10834         * src/NetworkManagerUtils.c
10835                 - (nm_utils_ip4_netmask_to_prefix): don't infinitely loop
10836                 if netmask is 0 (Gnome #352634)
10837
10838 2006-08-17  Robert Love  <rml@novell.com>
10839
10840         * src/backends/NetworkManagerSuSE.c: Do not restart ypbind; our ypbind
10841           package is now DBUS-enabled and listens for the NM signals.
10842
10843 2006-08-14  Dan Williams  <dcbw@redhat.com>
10844
10845         * Patch from Christian Persch <chpe gnome org>
10846         * configure.in
10847           po/LINGUAS
10848           vpn-daemons/openvpn/po/LINGUAS
10849           vpn-daemons/openvpn/configure.in
10850           vpn-daemons/pptp/po/LINGUAS
10851           vpn-daemons/pptp/configure.in
10852           vpn-daemons/vpnc/po/LINGUAS
10853           vpn-daemons/vpnc/configure.in
10854                 - Convert to LINGUAS method so translators don't have to modify
10855                 configure.in, just stuff in po/.  Gnome #343132, requires intltool
10856                 0.35 or higher
10857
10858 2006-08-14  Dan Williams  <dcbw@redhat.com>
10859
10860         Patch from Alex Smith <alex.extreme2@gmail.com>
10861         * configure.in
10862           src/backends/Makefile.am
10863           src/backends/NetworkManagerFrugalware.c
10864                 - Add support for Frugalware
10865
10866 2006-08-13  Dan Williams  <dcbw@redhat.com>
10867
10868         Patch from Valentine Sinitsyn <e_val@inbox.ru>
10869         * src/nm-device-802-11-wireless.c
10870                 - (supplicant_exec): spawn wpa_supplicant without debug spew
10871                 Gnome #346875
10872
10873 2006-08-13  Dan Williams  <dcbw@redhat.com>
10874
10875         Patch from Valentine Sinitsyn <e_val@inbox.ru>
10876         * src/nm-ap-security.c
10877           src/nm-ap-security.h
10878                 - Add authentication_required bits for subclasses to specify whether
10879                 or not real authentication is required for connections, i.e. whether
10880                 the AP rejects us when an encryption key is wrong or not.
10881
10882         * src/nm-ap-security-wep.c
10883           src/nm-ap-security-wpa-eap.c
10884           src/nm-ap-security-wpa-psk.c
10885           src/nm-ap-security-leap.c
10886                 - Implement authentication_required appropriately for each method
10887
10888         * src/nm-device-802-11-wireless.c
10889                 - Be smarter about when to request a key; for example, using a wrong key
10890                 in WEP shared key mode previously just timed out and did not request
10891                 a new key
10892
10893 2006-08-13  Dan Williams  <dcbw@redhat.com>
10894
10895         * gnome/libnm_glib/libnm_glib.c
10896                 - dbus_connection_disconnect() -> dbus_connection_close() for
10897                 dbus >= 0.90
10898
10899 2006-08-07  Dan Williams  <dcbw@redhat.com>
10900
10901         Patch from Antony J Mee <A.J.Mee@ncl.ac.uk>
10902         * src/NetworkManagerSystem.c
10903                 - Respect specified MTU.  Gnome #344967
10904
10905 2006-08-07  Dan Williams  <dcbw@redhat.com>
10906
10907         * src/vpn-manager/nm-vpn-service.c
10908                 - Simplify print_vpn_config() arguments
10909
10910         Patch from Antony J Mee <A.J.Mee@ncl.ac.uk>
10911         * src/vpn-manager/Makefile.am
10912           src/vpn-manager/nm-vpn-service.c
10913                 - Add new API for passing VPN config options as a dict. Gnome #344967
10914
10915 2006-08-06  Dan Williams  <dcbw@redhat.com>
10916
10917         * gnome/applet/applet-dbus-devices.c
10918           gnome/applet/applet-dbus-vpn.c
10919           gnome/applet/applet-dbus.c
10920           gnome/applet/applet-dbus.h
10921           src/nm-dbus-nmi.c
10922           utils/nm-utils.c
10923           utils/nm-utils.h
10924                 - Make pending call tracking code generic,
10925                 so we can use it in NM as well as the applet
10926
10927 2006-08-06  Dan Williams  <dcbw@redhat.com>
10928
10929         * src/nm-activation-request.c
10930                 - Refcount pending call objects
10931
10932 2006-08-06  Dan Williams  <dcbw@redhat.com>
10933
10934         Patch from Christan Chiesa <christanc@gmail.com>
10935         * configure.in
10936                 - Tell sha1.c to use bigendian mode on PPC
10937
10938 2006-08-04  Robert Love  <rml@novell.com>
10939
10940         Glib Memory Slices!
10941         * configure.in: Require glib 2.10 or later.
10942         * src/NetworkManager.c, src/NetworkManagerAP.c, src/nm-ip4-config.c,
10943           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
10944           src/NetworkManagerDbusUtils.c, src/nm-dbus-nmi.c, src/wpa.c,
10945           src/nm-device-802-11-wireless.c: Convert applicable g_malloc and
10946           g_new calls to g_slice_new.  Likewise for g_free to g_slice_free.
10947           Memory Slices are the greatest thing since bread slices.
10948         * src/NetworkManagerAP.c: Also, fix memory leak.
10949
10950 2006-08-01  Robert Love  <rml@novell.com>
10951
10952         * gnome/applet/main.c: Shutdown all VPN connections on logout.
10953
10954 2006-07-31  Robert Love  <rml@novell.com>
10955
10956         * src/backends/interface_parser.c: Declarations must begin the block.
10957
10958 2006-07-24  Dan Williams  <dcbw@redhat.com>
10959
10960         Patch from Timothée Lecomte <timothee.lecomte@ens.fr>
10961         * src/backends/Makefile.am
10962           src/backends/NetworkManagerArch.c
10963           src/backends/NetworkManagerDebian.c
10964           src/backends/NetworkManagerGeneric.c
10965           src/backends/NetworkManagerGeneric.h
10966           src/backends/NetworkManagerGentoo.c
10967           src/backends/NetworkManagerPaldo.c
10968           src/backends/NetworkManagerRedHat.c
10969           src/backends/NetworkManagerSlackware.c
10970           src/backends/NetworkManagerSuSE.c
10971                 - Genericize common backend functions
10972
10973 2006-07-18  Robert Love  <rml@novell.com>
10974
10975         * configure.in: Add "--with-notify" option to allow disabling of
10976           libnotify support.
10977
10978 2006-07-13  Dan Williams  <dcbw@redhat.com>
10979
10980         Patch from Thiago Bauermann <thiago.bauermann@gmail.com>
10981         * gnome/applet/applet.glade
10982           gnome/applet/Makefile.am
10983           gnome/applet/nm-gconf-wso.c
10984           gnome/applet/nm-gconf-wso-leap.c
10985           gnome/applet/nm-gconf-wso-leap.h
10986           gnome/applet/wireless-security-manager.c
10987           gnome/applet/wso-leap.c
10988           gnome/applet/wso-leap.h
10989           include/NetworkManager.h
10990           libnm-util/dbus-helpers.c
10991           libnm-util/dbus-helpers.h
10992           src/Makefile.am
10993           src/NetworkManagerAP.c
10994           src/nm-ap-security.c
10995           src/nm-ap-security-leap.c
10996           src/nm-ap-security-leap.h
10997                 - Add LEAP authentication support
10998
10999 2006-07-13  Dan Williams  <dcbw@redhat.com>
11000
11001         Patch from Timothée Lecomte <timothee.lecomte@ens.fr>
11002         * configure.in
11003           src/backends/NetworkManagerArch.c
11004           src/backends/NetworkManagerDebian.c
11005           src/backends/NetworkManagerGentoo.c
11006           src/backends/NetworkManagerPaldo.c
11007           src/backends/NetworkManagerRedHat.c
11008           src/backends/NetworkManagerSlackware.c
11009           src/backends/NetworkManagerSuSE.c
11010                 - Convert hardcoding of 'ip' path to configure-time
11011                         detected one
11012
11013 2006-07-12  Leonid Kanter <leon@asplinux.ru>
11014
11015         * configure.in: added ru to ALL_LINGUAS
11016
11017 2006-07-10  Dan Williams  <dcbw@redhat.com>
11018
11019         Patch from Valentine Sinitsyn <e_val@inbox.ru>
11020         * src/nm-device.c
11021                 - (real_act_stage3_ip_config_start): don't infinite loop when
11022                         dhcdbd isn't running (Gnome #346845)
11023
11024 2006-07-09  Dan Williams  <dcbw@redhat.com>
11025
11026         * gnome/applet/applet.c
11027                 - (nma_destroy): don't pass NULL to notify_notification_close
11028                         (RH #197917)
11029
11030 2006-07-09  Dan Williams  <dcbw@redhat.com>
11031
11032         * gnome/applet/applet.c
11033                 - (nma_about_cb): remove empty documenters tab (Gnome #341324)
11034
11035 2006-07-04  Tor Krill  <tor@krill.nu>
11036
11037         Patch from Valentine Sinitsyn <e_val@inbox.ru>
11038         * src/backends/NetworkManagerArch.c: (nm_system_update_dns),
11039         (nm_system_restart_mdns_responder), (ArchReadConfig),
11040         (nm_system_device_get_system_config):
11041                 - Explicitly check for DHCP configuration
11042                 - Check if daemons are running before starting them
11043
11044 2006-06-25  Dan Williams  <dcbw@redhat.com>
11045
11046         * libnm-util/dbus-dict-helpers.[ch]
11047           test/libnm-util/test-dbus-dict-helpers.c
11048                 - Add string array support
11049
11050 2006-06-24  Dan Williams  <dcbw@redhat.com>
11051
11052         * src/dhcp-manager/nm-dhcp-manager.c
11053                 - (nm_dhcp_manager_process_signal): clean up spacing
11054
11055 2006-06-21  Dan Williams  <dcbw@redhat.com>
11056
11057         * src/nm-dbus-device.c
11058                 - (nm_dbus_device_get_driver): don't try to stuff a NULL
11059                         through dbus
11060
11061 2006-06-21  Raivis Dejus  <orvils@gmail.com>
11062
11063         * configure.in: Added 'lv' to ALL_LINGUAS
11064
11065 2006-06-19  Dan Williams  <dcbw@redhat.com>
11066
11067         * src/NetworkManagerAP.c
11068                 - Clarify usage of user_created
11069
11070         * src/nm-ap-security-wep.c
11071           src/nm-ap-security-wpa-eap.c
11072           src/nm-ap-security-wpa-psk.c
11073           src/nm-ap-security.c
11074           src/nm-ap-security.h
11075                 - s/user_created/adhoc, because we really do mean adhoc
11076
11077         Patch from Bernard Blackham <bernard@blackham.com.au>
11078         * src/nm-device-802-11-wireless.c         
11079                 - (supplicant_send_network_config): instead of user_created,
11080                         use adhoc, and do AP_SCAN 2 for adhoc networks
11081
11082 2006-06-18  Robert Love  <rml@novell.com>
11083
11084         * gnome/applet/nm-gconf-wso-wpa-eap.c: Don't set the Gconf keys unless
11085           we have a value to set.  Gconf generates a warning if `val' is NULL.
11086         * src/nm-ap-security-wpa-eap.c: Don't set the key for an Enterprise AP
11087           unless we actually received a valid private key file passphrase or
11088           password.  Otherwise, we don't know to later ask the applet to pull
11089           the key from the keyring.
11090
11091 2006-06-17  Dan Williams  <dcbw@redhat.com>
11092
11093         * libnm-util/dbus-dict-helpers.[ch]
11094           test/libnm-util/test-dbus-dict-helpers.c
11095                 - Fixes for zero-length byte arrays
11096                 - Replace return values of 0 with FALSE for clarity
11097                 - Test zero-length byte arrays
11098
11099 2006-06-17  Dan Williams  <dcbw@redhat.com>
11100
11101         * libnm-util/dbus-dict-helpers.[ch]
11102           test/libnm-util/test-dbus-dict-helpers.c
11103                 - Add helpers for byte arrays
11104                 - Rework bits of the testcase
11105
11106 2006-06-16  Dan Williams  <dcbw@redhat.com>
11107
11108         * libnm-util/Makefile.am
11109         * libnm-util/dbus-dict-helpers.[ch]
11110                 - Add some helpers to take the pain out of using dict types in
11111                         dbus.
11112
11113         * test/libnm-util/Makefile.am
11114         * test/libnm-util/test-dbus-dict-helpers.c
11115                 - Test cases for the dict helper functions
11116
11117 2006-06-15  Robert Love  <rml@novell.com>
11118
11119         * gnome/applet/nm-gconf-wso-wpa-eap.c: Don't set the key unless there
11120           is a non-empty key to set.  Elsewhere, pass an empty string via DBUS
11121           if there is no key to pass.
11122         * libnm-util/dbus-helpers.c: Given the above, we can trust always
11123           receiving a non-NULL key.
11124
11125 2006-06-14  Robert Love  <rml@novell.com>
11126
11127         * src/nm-ap-security-wpa-eap.c: In real_copy_constructor(), actually
11128           copy the strings.
11129
11130
11131 2006-06-14  Dan Williams  <dcbw@redhat.com>
11132
11133         Patch from Lorenzo Colitti <lorenzo@colitti.com>  gnome.org #344825
11134         * src/nm-device-802-11-wireless.c
11135                 - (nm_device_802_11_wireless_set_essid): only wait for orinoco cards
11136                         or ones where the driver is unknown
11137                 - (supplicant_exec): don't wait for supplicant startup here
11138                 - (supplicant_interface_init): finer grained polling for supplicant
11139                         startup
11140
11141 2006-06-13  Robert Love  <rml@novell.com>
11142
11143         * gnome/applet/applet-dbus-info.c: Don't set the fallback bit to FALSE
11144           if it is currently set to TRUE.  Otherwise, we will reset the value
11145           when we connect normally.
11146         * src/nm-device-802-11-wireless.c: For the roaming code, make sure that
11147           the old BSSID is valid, too.  The recently added ESSID check may not be
11148           sufficient (we can remove it?).  What we really want to catch is the
11149           case of going from all-zeros to the BSSID of some other network, which
11150           happens on failure.
11151
11152 2006-06-09  Dan Williams  <dcbw@redhat.com>
11153
11154         * src/NetworkManagerSystem.[ch]
11155                 - (nm_system_device_set_up_down_with_iface): remove 'dev' argument,
11156                         it was unused and pointless
11157                 - (nm_system_vpn_device_set_from_iface, nm_system_device_set_up_down):
11158                         fix for set_up_down_with_iface change
11159
11160         * src/vpn-manager/nm-vpn-connection.c
11161                 - (nm_vpn_connection_deactivate): fix for set_up_down_with_iface change
11162
11163         * src/backends/NetworkManagerPaldo.c
11164           src/backends/NetworkManagerRedHat.c
11165           src/backends/NetworkManagerSuSE.c
11166           src/backends/NetworkManagerArch.c
11167           src/backends/NetworkManagerDebian.c
11168           src/backends/NetworkManagerGentoo.c
11169                 - (nm_system_enable_loopback): use set_up_down_with_iface where
11170                         appropriate
11171                 - (nm_system_flush_loopback_routes): use flush_routes_with_iface
11172                         where appropriate
11173
11174 2006-06-09  Dan Williams  <dcbw@redhat.com>
11175
11176         Patch from Peter Jones:
11177         * src/nm-device-802-11-wireless.c
11178                 - (nm_device_802_11_wireless_update_bssid): make sure that the
11179                         SSID hasn't changed from what we expect before automatically
11180                         updating the saved BSSID from a new AP
11181
11182 2006-06-08  Robert Love  <rml@novell.com>
11183
11184         Add 'fallback' support.  NetworkManager will attempt to brute-force
11185         connect to networks marked as fallback if there are no better wireless
11186         connections available.  This is useful as a method of last resort, to
11187         work around driver problems, and for use with hidden networks.
11188         * gnome/applet/applet-dbus-devices.c,
11189           gnome/applet/applet-dbus-devices.h: Add fallback parameter.
11190         * gnome/applet/applet-dbus-info.c: Retrieve fallback bit from Gconf and
11191           pass it on via DBUS.
11192         * gnome/applet/applet.c: No fallback by default.
11193         * gnome/applet/applet.glade, gnome/applet/other-network-dialog.c:
11194           Update other-network-dialog to add UI checkbox toggling fallback.
11195         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Remove "trusted"
11196           propery from AP object.  Add "fallback" property to AP object.
11197         * src/nm-dbus-nm.c: Grab the fallback parameter via DBUS.
11198         * src/nm-dbus-nmi.c: Grab the fallback parameter via DBUS.
11199         * src/nm-device-802-11-wireless.c: Break out blacklist logic into
11200           separate function.  Add get_best_fallback_ap() for returning an AP
11201           on which to attempt fallback.
11202         * src/backends/NetworkManagerSuSE.c: Set stored network as fallback.
11203         * test/nm-set-fallback: New file.  Sets a given network as fallback.
11204
11205 2006-06-07  Robert Love  <rml@novell.com>
11206
11207         * gnome/applet/gconf-helpers.c: Bug fix: nm_gconf_helper_get_bool()
11208           checked that the return type was GCONF_VALUE_STRING, not the correct
11209           GCONF_VALUE_BOOL, and thus it never worked.
11210         * src/NetworkManagerAPList.c: Before concluding that two networks are
11211           identical based on their BSSID, make sure that the BSSID in question
11212           is actually valid.  Specifically, an empty or all zero BSSID does not
11213           cut it.
11214         * gnome/applet/applet-dbus-info.c, gnome/applet/other-network-dialog.c,
11215           src/nm-dbus-nmi.c, src/nm-device-802-11-wireless.c: White space and
11216           similar invariant clean up.
11217
11218 2006-06-02  Robert Love  <rml@novell.com>
11219
11220         * gnome/applet/applet.c: Update copyright years.  Add Novell.
11221
11222 2006-05-28  Dan Williams  <dcbw@redhat.com>
11223
11224         * gnome/applet/applet.glade
11225           gnome/vpn-properties/nm-vpn-properties.glade
11226                 - Set window icons on dialogs  (Gnome.org #333420)
11227
11228 2006-05-28  Christian Persch  <chpe@cvs.gnome.org>
11229
11230         * gnome/vpn-properties/nm-vpn-properties.glade:
11231         * vpn-daemons/openvpn/properties/nm-openvpn-dialog.glade:
11232         * vpn-daemons/pptp/properties/nm-pptp-dialog.glade:
11233         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade:
11234                 - Make the VPN properties pages prettier and more HIG
11235                   compliant. Gnome Bug #336913.
11236
11237 2006-05-28  Dan Williams  <dcbw@redhat.com>
11238
11239         Patch from Christian Persch <chpe@gnome.org>
11240         * gnome/vpn-properties/nm-vpn-properties.c
11241         * gnome/vpn-properties/nm-vpn-properties.glade
11242                 - HIG-ification love  (Gnome.org #336846)
11243
11244 2006-05-28  Dan Williams  <dcbw@redhat.com>
11245
11246         Patch from Christian Persch <chpe@gnome.org>
11247         * configure.in
11248           gnome/vpn-properties/nm-vpn-properties.c
11249                 - (main): Fix option parsing.  Gnome.org #336847
11250
11251 2006-05-28  Dan Williams  <dcbw@redhat.com>
11252
11253         * gnome/vpn-properties/nm-vpn-properties.c
11254                 - (find_vpn_ui_by_service_name): protect against NULL service names
11255                 - (update_edit_del_sensitivity): protect against NULL service names
11256                         Gnome.org #341306
11257
11258 2006-05-28  Dan Williams  <dcbw@redhat.com>
11259
11260         Patch from Chris Fuller <crf@grandecom.net>:
11261         * src/nm-device-802-11-wireless.c
11262                 - (nm_device_802_11_wireless_dispose): add a is_initialized member and
11263                         don't dispose of wireless-specific stuff unless it is actually
11264                         initialized.  Gnome.org #341263
11265
11266 2006-05-28  Dan Williams  <dcbw@redhat.com>
11267
11268         * src/NetworkManagerPolicy.c
11269                 - (nm_policy_device_change_check): don't switch devices if the "best"
11270                         AP is essentially the same as the current activation request, but
11271                         the current activation request isn't done activating yet.  Fixes
11272                         multiple requests for keyring password on startup for Gnome applet.
11273                         Gnome.org #341297
11274
11275 2006-05-26  Nicolas Trangez  <eikke@eikke.com>
11276
11277         * src/NetworkManager.c: use GOptions instead of getopt
11278         * configure.in: bump glib required version to >= 2.6 for GOption
11279           support
11280
11281 2006-05-25  Robert Love  <rml@novell.com>
11282
11283         * src/nm-device.h: Introduce nm_ioctl_info(), which defines to
11284           nm_info() if IOCTL_DEBUG is set and a no-op if not.  We can use this
11285           instead of dumping ifdef's throughout the code.
11286         * src/NetworkManagerSystem.c, src/nm-device-802-11-wireless.c,
11287           src/nm-device-802-3-ethernet.c, src/nm-device.c: Remove ifdef's and
11288           use nm_ioctl_info() in lieu.
11289
11290 2006-05-25  Robert Love  <rml@novell.com>
11291
11292         Patch Valentine Sinitsyn <e_val@inbox.ru> to fix GNOME bug #342400:
11293         * libnm-util/Makefile.am: Only build gnome-keyring-md5.{c,h} if we are
11294           not using gcrypt.  Otherwise, we get a linker error.
11295
11296 2006-05-25  Robert Love  <rml@novell.com>
11297
11298         Patch Valentine Sinitsyn <e_val@inbox.ru> to fix GNOME bug #342398:
11299         * configure.in, gnome/Makefile.am, Makefile.am: Add "--without-gnome"
11300           configure flag to disable building of the GNOME-based applet.
11301
11302 2006-05-25  Robert Love  <rml@novell.com>
11303
11304         * gnome/applet/nm-device.c, gnome/applet/nm-device.h: Rename function
11305           parameter from link, because it shadows a global variable with some
11306           older versions of glibc.  Yes, glibc is now fixed and, yes, glibc
11307           should never have exported to the entire system a common four letter
11308           word.  But we here at NetworkManager are team players.  Fixes
11309           GNOME bug #336532.
11310
11311 2006-05-25  Arangel Angov <ufo@linux.net.mk>
11312
11313         * configure.in: Added mk.po, Macedonian translation.
11314
11315 2006-05-24  Robert Love  <rml@novell.com>
11316
11317         * examples/python/systray/eggtrayicon.c, gnome/applet/eggtrayicon.c,
11318           gnome/applet/passphrase-dialog.c, gnome/applet/vpn-password-dialog.c,
11319           src/NetworkManager.c: Include <glib/gi18n.h> and not <libintl.h>.
11320
11321 2006-05-24  Robert Love  <rml@novell.com>
11322
11323         * gnome/applet/Makefile.am, gnome/vpn-properties/Makefile.am,
11324           libnm-util/Makefile.am, src/Makefile.am,
11325           vpn-daemons/openvpn/auth-dialog/Makefile.am,
11326           vpn-daemons/openvpn/properties/Makefile.am,
11327           vpn-daemons/pptp/auth-dialog/Makefile.am,
11328           vpn-daemons/pptp/properties/Makefile.am,
11329           vpn-daemons/vpnc/auth-dialog/Makefile.am,
11330           vpn-daemons/vpnc/properties/Makefile.am: Do not override what the
11331           user passed for --datadir, if anything, when setting the GNOME locale
11332           directory.  It should be a function of the specified datadir and not
11333           the prefix.
11334
11335 2006-05-24  Robert Love  <rml@novell.com>
11336
11337         * gnome/applet/main.c, gnome/vpn-properties/nm-vpn-properties.c,
11338           src/NetworkManager.c: Take care to call bindtextdomain with the
11339           location of msgid files.
11340         * src/Makefile.am: Set GNOMELOCALEDIR to the location of GNOME mo
11341           files.
11342
11343 2006-05-22  Robert Love  <rml@novell.com>
11344
11345         * src/nm-device-802-11-wireless.c: Don't chain up to the parent's
11346           stage4_timeout on failure unless the wireless network is Ad-Hoc.
11347           99% of the time there is a real problem with wireless, and a
11348           seemingly successful connection via Zeroconf just confuses the user.
11349           And that 1% of the time the network is probably Ad-Hoc, anyhow.
11350
11351 2006-05-22  Robert Love  <rml@novell.com>
11352
11353         * src/backends/NetworkManagerSuSE.c: Reload, do not restart, ypbind and
11354           autofs on interface up if NIS is configured.  On interface down, do
11355           nothing.
11356
11357 2006-05-22  Robert Love  <rml@novell.com>
11358
11359         * gnome/applet/applet.c: Zero out the icon pointers before we set them,
11360           to avoid calling g_object_unref() on stale pointers on error in
11361           nma_icons_free().  This happens because we short-circuit loaded the
11362           icons on the first failure but then free all icons.  Normally we have
11363           no issue because the icons were zero'ed out malloc, but we have stale
11364           pointer data after nma_icon_theme_changed().
11365         * gnome/applet/main.c: Return error code if nma_new() failed.
11366
11367 2060-05-21  Dan Williams  <dcbw@redhat.com>
11368
11369         * initscript/NetworkManager.in
11370                 - Ensure both dhcdbd and named are started before NM
11371
11372 2006-05-21  Dan Williams  <dcbw@redhat.com>
11373
11374         * configure.in
11375                 - Bump version to 0.7 to signify we are in 0.7 development
11376
11377 2006-05-21  Dan Williams  <dcbw@redhat.com>
11378
11379         Patch from Adam Schreiber <sadam@clemson.edu>
11380         * gnome/vpn-properties/nm-vpn-properties.c
11381                 - (main): correct Gnome program name  (gnome.org #342498)
11382
11383 2006-05-21  Dan Williams  <dcbw@redhat.com>
11384
11385         Fix gnome.org #330832 based on patch from Crispin Flowerday <crispin@gnome.org>
11386
11387         * src/NetworkManagerDbus.[ch]
11388                 - nm_dbus_get_device_from_object_path -> nm_dbus_get_device_from_escaped_object_path:
11389                         clarify that function's argument should be an escaped dbus object
11390                         path, and look for path segment end before returning a match
11391         * src/nm-dbus-nm.c:
11392                 - Fix up users of nm_dbus_get_device_from_escaped_object_path()
11393
11394 2006-05-17  Robert Love  <rml@novell.com>
11395
11396         Functionality to differentiate Ad-Hoc networks from infrastructure
11397         networks in the applet, by displaying a special icon:
11398         * gnome/applet/applet-dbus-devices.c: Set the mode for new networks.
11399         * gnome/applet/applet.c: Pass 'applet' to network_menu_item_update().
11400         * gnome/applet/menu-items.c: Set a special icon in the scan list for
11401           ad-hoc networks.  TODO: Add a third icon representing "encrypted and
11402           Ad-Hoc".  Right now, we display the same icon for all Ad-Hoc wireless
11403           networks, encrypted or not.
11404         * gnome/applet/wireless-network.c, gnome/applet/wireless-network.h: New
11405           accessor functions to get and set the mode of a given network,
11406           wireless_network_get_mode() and wireless_network_set_mode().
11407
11408 2006-05-17  Robert Love  <rml@novell.com>
11409
11410         Functionality to automatically add BSSIDs to the allowed-MAC list as
11411         one roams from access point to access point on a given network:
11412         * src/NetworkManagerUtils.c: Add nm_ethernet_addresses_are_equal(),
11413           helper function to compare two ether_addr structures and return TRUE
11414           if they contain the same MAC address.
11415         * src/NetworkManagerUtils.h: Add nm_ethernet_addresses_are_equal()
11416           prototype.
11417         * src/nm-device-802-11-wireless.c: New function to update the BSSID
11418           stored with the current AP.  If the BSSID has indeed changed, we
11419           send it out to the applet, allowing the allowed-MAC list to grow
11420           automatically in response to roaming.
11421
11422 2006-05-16  Robert Love  <rml@novell.com>
11423
11424         * src/backends/NetworkManagerSuSE.c: Don't touch ypbind or autofs
11425           unless dhcp:DHCLIENT_MODIFY_NIS_CONF is set to "yes".
11426
11427 2006-05-13  Dan Williams  <dcbw@redhat.com>
11428
11429         * src/nm-device-802-3-ethernet.c
11430                 - (real_get_generic_capabilities): Don't ignore devices that can't do
11431                         carrier detect (Debian bug #366373)
11432
11433 2006-05-11  Dan Williams  <dcbw@redhat.com>
11434
11435         Patch from Michael Biebl <biebl@teco.edu>
11436         * src/backends/NetworkManagerDebian.c
11437                 - Debian backend fixups
11438
11439 2006-05-10  Robert Love  <rml@novell.com>
11440
11441         * src/backends/NetworkManagerSuSE.c: Fix double free (Novell #173442).
11442
11443 2006-05-09  Robert Love  <rml@novell.com>
11444
11445         * gnome/applet/nm-gconf-wso-wpa-eap.c: Fix FIXME: Save the WPA EAP
11446           private certificate passphrase, if any, in the GNOME Keyring.
11447         * libnm-utils/dbus-helpers.c: Update.
11448
11449 2006-05-05  Dan Williams  <dcbw@redhat.com>
11450
11451         * src/nm-device-802-11-wireless.c
11452                 - (nm_device_802_11_wireless_set_wep_enc_key): convert to
11453                         nm_device_802_11_wireless_disable_encryption() since that's all
11454                         we use it for anymore; we don't ever set WEP keys ourselves.
11455                 - (real_deactivate_quickly): reset SSID and encryption keys
11456                 - (real_deactivate): move SSID and encryption key reset to
11457                         real_deactivate_quickly(), which gets run before us anyway
11458
11459 2006-05-05  Robert Love  <rml@novell.com>
11460
11461         * src/NetworkManager.c: Set the umask to 0022 when daemonizing, in case
11462           root has a wacky default of its own (or, more common, a user has a
11463           bad umask and uses su/sudo to restart NetworkManager).  Anything
11464           other than 0022 does not do what we want with, for example,
11465           resolv.conf.  This problem is amplified by our judicious use of
11466           fopen(), which uses mode 0666 -- implying that the only way to get
11467           the permissions we want is with a umask of 0022.
11468
11469 2006-05-05  Dan Williams  <dcbw@redhat.com>
11470
11471         * gnome/libnm_glib/libnm_glib.c
11472                 - Don't suck CPU when dbus isn't around by scheduling idle handlers
11473                         to reconnect; instead wait a bit more with each reconnect attempt
11474                         up to a max of one minute.
11475
11476 2006-05-04  Ryan Lortie  <desrt@desrt.ca>
11477
11478         * gnome/applet/passphrase-dialog.c (update_button_cb): Get the SSID of
11479           the WirelessNetwork structure using the proper function instead of
11480           just casting it directly to (const char *) (gnome.org #336991)
11481
11482 2006-05-03  Robert Love  <rml@novell.com>
11483
11484         * src/backends/NetworkManagerSuSE.c: Respect the variable
11485           dhcp:DHCLIENT_MODIFY_RESOLV_CONF, not
11486           config:MODIFY_RESOLV_CONF_DYNAMICALLY, when deciding whether or not
11487           to dynamically update /etc/resolv.conf.
11488
11489 2006-05-02  Peter Jones  <pjones@redhat.com>
11490
11491         * vpn-daemons/vpnc/src/nm-vpnc-service.c: Allow rekeying.
11492
11493 2006-05-02  Robert Love  <rml@novell.com>
11494
11495         Patch by Timo Hoenig;
11496         * tests/nm-online.c: Print pretty status indicator as timeout winds
11497           down.  Also fix possible race between DBUS startup and failure
11498           return.
11499
11500 2006-05-01  Robert Love  <rml@novell.com>
11501
11502         * gnome/applet/applet-compat.c: Warn if the returned escaped ESSID is
11503           empty, too.
11504
11505 2006-04-27  Jeremy Katz  <katzj@redhat.com>
11506
11507         * src/nm-device.c (discover_device_type): Actually use the hal
11508         device type instead of ioctl poking
11509
11510 2006-04-26  Robert Love  <rml@novell.com>
11511
11512         * tests/nm-online.c: New file.  Simple utility that returns exit status
11513           noting whether the connection is offline or online.  If offline on
11514           start, it waits 30 seconds (or a command-line given value) for an
11515           online signal.  If it times out, it again returns offline.  This is
11516           useful for scripts that want to wait for network connections.
11517
11518 2006-04-25  Robert Love  <rml@novell.com>
11519
11520         * src/nm-ap-security-wep.c: Bug fix: We stopped setting the
11521           key mode (the authentication algorithm), e.g. open or shared, when we
11522           moved to using wpa_supplicant.  wpa_supplicant defaults to open, so
11523           only shared was broken.  If the user specified a shared key, set it
11524           explicitly, otherwise let wpa_supplicant go with the default.
11525
11526 2006-04-24  Dan Williams  <dcbw@redhat.com>
11527
11528         * src/nm-device-802-11-wireless.c
11529                 - (nm_device_802_11_wireless_set_essid): fix setting of "any" essid
11530
11531 2006-04-24  Dan Williams  <dcbw@redhat.com>
11532
11533         Commit the async scanning patch
11534
11535         * src/nm-device-802-11-wireless.c
11536                 - get rid of scan_mutex
11537                 - (wireless_event_helper): act on wireless scan events
11538                 - (real_start): schedule a pending scan
11539                 - (link_to_specific_ap): fake the link to the AP during a scan
11540                 - (nm_device_802_11_wireless_update_signal_strength): ignore signal
11541                         strength during scans
11542                 - (nm_device_get_frequency, nm_device_set_frequency, nm_device_get_bitrate,
11543                         nm_device_set_bitrate): unused with new scanning code, disable
11544                 - (nm_device_wireless_schedule_scan): removed
11545                 - (nm_device_wireless_process_scan_results): renamed to convert_scan_results()
11546                 - (request_and_convert_scan_results): new function; retrieve scan
11547                         results from the driver and schedule the processing function
11548                 - (scan_results_timeout): timeout triggered when card doesn't send
11549                         a scan results wireless event during a certain interval
11550                 - (schedule_scan_results_timeout): new function; schedule the scan
11551                         results timeout
11552                 - (cancel_scan_results_timeout): new function; cancel the scan
11553                         results timeout
11554                 - (nm_device_802_11_wireless_scan): if wpa_supplicant is running, ask it
11555                         to do the scanning.  Otherwise, just request a scan but don't
11556                         grab results here; instead schedule a timeout for scan results and
11557                         let netlink notify us of scan completion events
11558                 - (nm_device_wireless_schedule_scan): new function; schedule a wireless scan
11559                 - (cancel_pending_scan): new function; cancel a pending wireless scan
11560                 - (supplicant_status_cb): ignore disconnect events while scanning
11561                 - (supplicant_exec): wait a bit longer for the supplicant to start up
11562                 - (nm_device_802_11_wireless_dispose): cancel pending scans and results
11563                         timeouts
11564                 - (get_scan_results): removed; folded into request_and_convert_scan_results()
11565
11566 2006-04-24  Dan Williams  <dcbw@redhat.com>
11567
11568         * gnome/applet/applet-dbus.c
11569                 - Disable the pending call debug stuff, seems under control now
11570
11571 2006-04-20  Robert Love  <rml@novell.com>
11572
11573         Fix bug where hidden ESSID's would not show up in the applet, even
11574         if NMI provided a BSSID -> ESSID mapping from Gconf.  This occurred
11575         because nm_policy_device_list_update_from_allowed_list() would merge
11576         the data, putting a name to the hidden networks, but never notify NMI
11577         of the changes.  Simple fix is to invoke the function
11578         nm_dbus_signal_wireless_network_change() if we make a mapping.
11579         * src/NetworkManagerAPList.c: Call the function
11580           nm_dbus_signal_wireless_network_change() if we made a successful
11581           BSSID to ESSID mapping, notifying the applet of the "new" network.
11582         * src/NetworkManagerAPList.h: Update the prototypes for both
11583           nm_ap_list_copy_essids_by_address() and
11584           nm_ap_list_copy_one_essid_by_address().
11585
11586 2006-04-20  Robert Love  <rml@novell.com>
11587
11588         * gnome/applet/applet-dbus-info.c: Don't bail out if the timestamp is
11589           not set.  Just return zero.
11590
11591 2006-04-20  Robert Love  <rml@novell.com>
11592
11593         * gnome/vpn-properties/nm-vpn-properties.c: Satisfy TODO: Ensure that
11594           only one copy of nm-vpn-properties is running at a time via the 'ol
11595           X selection trick.  This prevents the user from opening two "VPN
11596           Connections" windows from within the applet, which leads to mass
11597           hysteria.
11598         * clipboard.c: New file, implementing simple X selection logic.
11599         * clipboard.h: New file.
11600         * gnome/vpn-properties/Makefile.am: Add clipboard.{c,h}
11601
11602 2006-04-18  Nicolas Trangez  <eikke@eikke.com>
11603
11604         * backends/NetworkManagerGentoo.c: Small cleanups and enhancements
11605         * configure.in
11606           initscript/Gentoo/Makefile.am
11607           initscript/Gentoo/NetworkManagerDispatcher.in
11608                 - New script
11609         * initscript/Gentoo/NetworkManager.in: small dependency fixup from
11610           Gentopia
11611
11612 2006-04-16  Dan Williams  <dcbw@redhat.com>
11613
11614         Patch from Paul Blazejowski <paulb@blazebox.homeip.net>
11615         * configure.in
11616           initscript/Slackware/Makefile.am
11617           initscript/Slackware/rc.networkmanager-dispatcher.in
11618           initscript/Slackware/rc.networkmanager.in
11619                 - Update slackware initscripts
11620
11621 2006-04-10  Robert Love  <rml@novell.com>
11622
11623         * gnome/vpn-properties/nm-vpn-properties.c: Intercept and short-circuit
11624           the "delete_event" signal on the druid's parent window and handle it
11625           our way, lest using the WM to close the druid results in a series of
11626           bloody and ultimately lethal errors.
11627
11628 2006-04-10  Robert Love  <rml@novell.com>
11629
11630         * gnome/vpn-properties/nm-vpn-properties.c: Validate VPN settings on
11631           'Back' too or else the 'Forward' option is initially disabled despite
11632           valid input.
11633
11634 2006-04-06  Robert Love  <rml@novell.com>
11635
11636         Fix bad but simple bug where an active modem connection did not update
11637         NM's connection state, breaking any app that did online/offline:
11638         * src/NetworkManagerMain.h: Add 'modem_active' member to NMData,
11639           represented whether a dial up connection is active, or not.
11640         * src/nm-dbus-nm.c: Set and unset 'modem_active' in response
11641           to modem activation and deactivation.
11642         * src/NetworkManagerDbus.c: When asked our state, do not return
11643           disconnected if the modem is active.
11644
11645 2006-04-04  Robert Love  <rml@novell.com>
11646
11647         * gnome/applet/applet.c: Remove the 'Remove' option that I added to the
11648           applet.  It just confuses the crap out of people and does not make a
11649           lot of sense, as the daemon still runs.
11650
11651 2006-04-02  Tor Krill  <tor@krill.nu>
11652
11653         * initscript/Arch/networkmanager.in: Added checks for HAL and dhcdbd
11654           in start of service.
11655         * src/backends/NetworkManagerArch.c: (nm_system_get_mtu): Added to
11656           get Archlinux backend up to date.
11657
11658 2006-03-29  Robert Love  <rml@novell.com>
11659
11660         Patch by Vinay R <rvinay@novell.com> and Robert Love <rml@novell.com>,
11661         to add support for per-route MSS and improve support for per-interface
11662         MTU:
11663         * src/NetworkManagerSystem.c: Modify nm_system_device_set_ip4_route to
11664           optionally take an MSS parameter and set it for the given route.
11665           Remove nm_system_device_set_ip4_route_with_iface.  Pass in the
11666           NMIP4Config's stored MSS, if any.
11667         * src/nm-ip4-config.c: Add 'mtu' and 'mss' to NMIP4Config, representing
11668           the interface's MTU and the route's MSS, respectively.  Add functions
11669           nm_ip4_config_get_mtu, nm_ip4_config_set_mtu, nm_ip4_config_get_mss,
11670           and nm_ip4_config_set_mss for retrieving and setting the MTU and the
11671           MSS.
11672         * src/nm-ip4-config.h: Add prototypes for nm_ip4_config_get_mtu,
11673           nm_ip4_config_set_mtu, nm_ip4_config_get_mss, and
11674           nm_ip4_config_set_mss.
11675         * src/vpn-manager/nm-vpn-service.c: Modify to receive the MSS from the
11676           VPN daemon.
11677         * src/backends/NetworkManager{Arch,Debian,Gentoo,RedHat,Slackware,SUSE}.c:
11678           Change the retval of nm_system_get_mtu to guint32.
11679         * src/dhcp-manager/nm-dhcp-manager.c: Set the MTU on the new DHCP-given
11680           NMIP4Config to the MTU provided by the system, if any.  TODO: If DHCP
11681           servers can specify MTU's, we should set it here if the MTU was not
11682           provided.
11683
11684 2006-03-27  Jürg Billeter  <j@bitron.ch>
11685
11686         * configure.in:
11687         * initscript/Makefile.am:
11688         * initscript/paldo/Makefile.am:
11689         * initscript/paldo/NetworkManager.in:
11690         * initscript/paldo/NetworkManagerDispatcher.in:
11691         * src/backends/Makefile.am:
11692         * src/backends/NetworkManagerPaldo.c:
11693                 - Add paldo support
11694
11695 2006-03-27  Dan Williams  <dcbw@redhat.com>
11696
11697         Patch from Christian Persch <chpe@gnome.org>
11698         * gnome/applet/applet.glade
11699                 - HIG fixes; mostly for spacing and borders (gnome.org #336220)
11700
11701 2006-03-27  Dan Williams  <dcbw@redhat.com>
11702
11703         Patch from Diffe <diffie@blazebox.homeip.net>
11704         * src/backends/NetworkManagerSlackware.c
11705                 - Don't restart howl, since it's been replaced by Avahi
11706                         in most distributions
11707
11708 2006-03-27  Dan Williams  <dcbw@redhat.com>
11709
11710         Patch from Tor Krill <bugzilla@krill.nu>
11711         * configure.in
11712           initscript/Makefile.am
11713           src/backends/Makefile.am
11714           src/backends/NetworkManagerArch.c
11715           initscript/Arch/Makefile.am
11716           initscript/Arch/networkmanager-dispatcher.in
11717           initscript/Arch/networkmanager.in
11718                 - Add Arch Linux support, fixes gnome.org #335147
11719
11720 2006-03-27  Dan Williams  <dcbw@redhat.com>
11721
11722         Patch from Diffe <diffie@blazebox.homeip.net>
11723      * initscript/Slackware/rc.networkmanager
11724         - update, fixed gnome.org #333368
11725
11726 2006-03-27  Robert Love  <rml@novell.com>
11727
11728         * gnome/applet/other-network-dialog.c: Do not allow the user to try to
11729           create WPA-EAP Ad-Hoc networks because such an action makes no sense.
11730
11731 2006-03-27  Robert Love  <rml@novell.com>
11732
11733         Patch by Jürg Billeter <j@bitron.ch>:
11734         * src/nm-logging.c: Add printf modifier to fix warning on 64-bit
11735           systems.
11736         * src/nm-netlink-monitor.c: Include <net/if.h> instead of <linux/if.h>
11737           as we prefer glibc over kernel headers, if possible.
11738
11739 2006-03-27  Robert Love  <rml@novell.com>
11740
11741         Patch by Jon Escombe <list@dresco.co.uk>:
11742         * gnome/applet/nm-gconf-wso.c: Add missing NM_AUTH_TYPE_WPA_EAP case.
11743         * gnome/applet/nm-gconf-wso-wpa-eap.c: If retrieving the gconf values
11744           fail, don't bail out.  We don't expect all of the various WPA-EAP
11745           values to be present.
11746         * src/nm-ap-security.c: We need to match all capabilities for each
11747           encryption type, not any one of them.
11748
11749 2006-03-27  Robert Love  <rml@novell.com>
11750
11751         * src/backends/NetworkManagerSuSE.c: Revert 2006-03-17 commit and again
11752           restart, not reload, ypbind.  Unfortunately there is no superior
11753           solution.
11754
11755 2006-03-24  Christopher Aillon  <caillon@redhat.com>
11756
11757         * gnome/applet/applet-notifications.c:
11758         When displaying a notification, make sure to get rid of the
11759         previous notification so as to not have competing bubbles,
11760         and stop leaking the old one.
11761
11762         * gnome/applet/applet.c:
11763         * gnome/applet/applet.h:
11764         Add a new 'notification' member to the applet, and zero it out
11765         and free it appropriately.
11766
11767 2006-03-23  Robert Love  <rml@novell.com>
11768
11769         Patch by j <j@bootlab.org>:
11770         * gnome/applet/applet.glade: Don't set the invisible_char property,
11771           which simply overrides the GTK default.  By and by, this behavior
11772           ought to be fixed in Glade.
11773
11774 2006-03-22  Robert Love  <rml@novell.com>
11775
11776         * src/dhcp-manager/nm-dhcp-manager.c: Bump timeout to 45 seconds.
11777
11778 2006-03-22  Robert Love  <rml@novell.com>
11779
11780         Bug fix by Timo Hoenig <thoenig@suse.de>:
11781         * gnome/applet/applet-dbus.c: Let the applet reconnect to DBUS on
11782           disconnect.  Otherwise, we have the daemon surviving DBUS restarts
11783           and the applet going AWOL.
11784
11785 2006-03-22  Robert Love  <rml@novell.com>
11786
11787         * src/dhcp-manager/nm-dhcp-manager.c: Create NM_DHCP_TIMEOUT
11788           preprocessor define and use it instead of open-coded the DHCP
11789           timeout, which is currently 25 seconds, everywhere.
11790
11791 2006-03-22  Robert Love  <rml@novell.com>
11792
11793         Implement "Dynamic WEP", which is basically WPA authentication and WEP
11794         key exchange via WPA, ostensibly providing good security without
11795         requiring hardware that supports full WPA.  Also, add UI elements to
11796         allow the user to select the pairwise & group cipher for WPA Enterprise
11797         networks, too:
11798         * gnome/applet/applet.glade: Update glade file.
11799         * gnome/applet/nm-gconf-wso-wpa-eap.c: Serialize and deserialize the
11800           key type, too, to and from gconf.
11801         * gnome/applet/wireless-security-option.c: Add "wpa_eap" parameter to
11802           wso_wpa_create_key_type_model(), noting whether we are handling PSK
11803           or EAP configuration, and in the latter case add in "Dynamic WEP" if
11804           the capabilities match.
11805         * gnome/applet/wso-private.h: Update wso_wpa_create_key_type_model()'s
11806           prototype.
11807         * gnome/applet/wso-wpa-eap.c: Manage UI elements for the key type and
11808           serialize from UI to DBUS.
11809         * gnome/applet/wso-wpa-psk.c: Cannot fail and always returns at least
11810           one element.
11811         * libnm-util/dbus-helpers.c: Update nmu_security_serialize_wpa_eap(),
11812           nmu_security_serialize_wpa_eap_with_cipher(), and
11813           nmu_security_deserialize_wpa_eap() to take a "key_type" parameter and
11814           serialize/deserialize the key type via DBUS as the new third DBUS
11815           parameter.
11816         * libnm-util/dbus-helpers.h: Update prototypes.
11817         * src/nm-ap-security-wpa-eap.c: Deserialize the key type from DBUS,
11818           too.  If the key type is WEP104, do Dynamic WEP, which means
11819           "IEEE8021X" for "key_mgmt".  Also add support for user-specified
11820           pairwise and group ciphers (fixes a FIXME).
11821
11822 2006-03-21  Robert Love  <rml@novell.com>
11823
11824         * src/NetworkManagerSystem.c, src/NetworkManagerSystem.h: Add
11825           nm_system_get_mtu(), which returns a user-provided or system-mandated
11826           MTU value for a given device, if any, or zero if no such value
11827           exists.  Add nm_system_set_mtu() to set the MTU for a given device
11828           if we have a provided value.
11829         * src/nm-device.c: Set the MTU of devices.
11830         * src/backends/NetworkManagerSuSE.c: Read MTU, if any, from sysconfig.
11831         * src/backends/NetworkManagerDebian.c,
11832           src/backends/NetworkManagerGentoo.c,
11833           src/backends/NetworkManagerRedHat.c,
11834           src/backends/NetworkManagerSlackware.c: Implement stub functions.
11835
11836 2006-03-21  Robert Love  <rml@novell.com>
11837
11838         * src/backends/NetworkManagerSuSE.c: Strip hypens from hex key in
11839           configuration file.
11840
11841 2006-03-17  Robert Love  <rml@novell.com>
11842
11843         * src/backends/NetworkManagerSuSE.c: Do "rcypbind reload" to send the
11844           signal SIGHUP to ypbind, not "rcypbind restart" to physically restart
11845           it, in case it is not running in the first place.  We just want its
11846           configuration reloaded.  Also, do not "rcypbind stop" on device down.
11847
11848 2006-03-15  Robert Love  <rml@novell.com>
11849
11850         * gnome/applet/applet.glade, gnome/applet/wso-wep-ascii.c,
11851           gnome/applet/wso-wep-hex.c, gnome/applet/wso-wep-passphrase.c: The
11852           label "WEP 40/128-bit" is inconsistent because the physical key size
11853           is 40 or 104-bits, to which a 24-bit initialisation vector is
11854           appended, forming a 64 or 128-bit traffic key.  Thus, the label ought
11855           to read "40/104" or "64/128".  I do not care much which, but most
11856           users think of "silver" and "gold" encryption as 64 and 128-bits, so
11857           let's stick with that.  Thus, s/"40/128"/"64/128"/g.  Also, since our
11858           WEP passphrase support only handles 128-bit keys, and any future
11859           64-bit passphrase support will require a new option (no way to auto-
11860           detect the target key size), explicitly label our passphrase support
11861           "WEP 128-bit Passphrase".
11862
11863 2006-03-15  Robert Love  <rml@novell.com>
11864
11865         * src/dhcp-manager/nm-dhcp-manager.c: Do not start dhcdbd, but rely on
11866           the system init scripts (or some other mechanism) starting it (or a
11867           compatible DBUS service) before NetworkManager runs.  This means that
11868           distributions might need to update their init scripts.  This fixes
11869           possible races and is quite a bit cleaner.
11870         * initscript/SUSE/networkmanager.in: Update to start dhcdbd before
11871           starting the NetworkManager daemon.
11872
11873
11874 2006-03-14  Robert Love  <rml@novell.com>
11875
11876         * src/backends/NetworkManagerSuSE.c: Check that we have a valid AP
11877           before adding anything.
11878
11879 2006-03-13  Robert Love  <rml@novell.com>
11880
11881         * gnome/vpn-properties/nm-vpn-properties.c: Hide the next page's
11882           widgets, too, if they exist, in case the user hit the back button.
11883           Fixes a bug where the details page contains the widgets of multiple
11884           VPN modules (Novell bug #157048).
11885
11886 2006-03-13  Robert Love  <rml@novell.com>
11887
11888         Patch by Timo Hoenig <thoenig@suse.de>:
11889         * dispatcher-daemon/NetworkManagerDispatcher.c: Let the dispatcher
11890           daemon survive DBUS restarts, too.
11891
11892 2006-03-10  Robert Love  <rml@novell.com>
11893
11894         * gnome/applet/applet.glade: Add toggles to show/obfuscate the
11895           passphrase or key.
11896         * gnome/applet/wso-wep-ascii.c, gnome/applet/wso-wep-hex.c,
11897           gnome/applet/wso-wep-passphrase.c, gnome/applet/wso-wpa-eap.c,
11898           gnome/applet/wso-wpa-psk.c: Show and obfuscate passphrases and keys
11899           in response to "toggled" signal on new toggle.
11900
11901 2006-03-10  Robert Love  <rml@novell.com>
11902
11903         * src/nm-ap-security-wpa-eap.c: Pass fake empty strings for
11904           serialization if strings are NULL, lest DBUS get angry.
11905
11906 2006-03-10  Robert Love  <rml@novell.com>
11907
11908         * src/nm-ap-security-wpa-eap.c: Don't log the password.
11909
11910 2006-03-09  Robert Love  <rml@novell.com>
11911
11912         * src/backends/NetworkManagerSuSE.c: Read in WEP and WPA static
11913           configurations.
11914
11915 2006-03-09  Dan Williams  <dcbw@redhat.com>
11916
11917         Track pending call requests in the applet, and report how many are
11918         outstanding, and how long each completed one takes.
11919         
11920         * gnome/applet/applet-dbus-devices.c
11921           gnome/applet/applet-dbus-vpn.c
11922                 - Track pending calls
11923
11924         * gnome/applet/applet-dbus.[ch]
11925                 - Remove some unused enums
11926                 - (nma_dbus_send_with_callback, nma_dbus_send_with_callback_replied):
11927                         new functions to track dbus pending calls and spit out some
11928                         statistics about them
11929
11930 2006-03-09  Robert Love  <rml@novell.com>
11931
11932         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Have the function
11933           nm_ap_set_timestamp() take the second and micro-second parameters as
11934           direct arguments, which avoids both a dynamic memory allocation and a
11935           structure-to-structure copy!  Add a new interface, the aptly named
11936           nm_ap_set_timestamp_via_timestamp(), to set the timestamp from an
11937           existing GTimeVal, as nm_ap_set_timestamp() once did, for use with
11938           the return from nm_ap_get_timestamp().  New users should use the new
11939           nm_ap_set_timestamp(), not nm_ap_set_timestamp_via_timestamp(), for
11940           the extreme benefit to performance.
11941         * src/NetworkManagerAPList.c, src/nm-dbus-nmi.c,
11942           src/backends/NetworkManagerSuSE.c: Use the new functions as needed.
11943
11944 2006-03-08  Robert Love  <rml@novell.com>
11945
11946         * gnome/applet/applet.glade: Hide the password entry text with
11947           asterisks.
11948
11949 2006-03-08  Robert Love  <rml@novell.com>
11950
11951         * src/NetworkManagerSystem.h, src/nm-device.c, NetworkManagerDebian.c,
11952           NetworkManagerRedHat.c, NetworkManagerGentoo.c,
11953           NetworkManagerSlackware.c: Pass nm_system_device_get_system_config()
11954           a second argument, NMData.
11955         * src/nm-ap-security.h, src/nm-ap-security.c: Export nm_ap_security_new.
11956         * src/backends/NetworkManagerSuSE.c: Add wireless networks from ifcfg-*
11957           config files as trusted.
11958
11959 2006-03-06  Robert Love  <rml@novell.com>
11960
11961         * gnome/applet/Makefile.am: Define AUTOSTARTDIR.
11962         * gnome/applet/applet.c: Add 'Remove' option to the right click menu,
11963           to exit the applet.  As a sweet side-effect, idea courtesy of Chris
11964           Rivera, detect if the applet was auto-started.  If so, ask the user
11965           if he or she would like to stop automatically running the applet on
11966           login.  If so, disable autostart.
11967
11968 2006-03-06  Robert Love  <rml@novell.com>
11969
11970         * NetworkManager.pc.in:  Provide an -I to the NetworkManager include
11971           directory in CFLAGS so developers can actually use NetworkManager.h.
11972
11973 2006-03-06  Robert Love  <rml@novell.com>
11974
11975         * src/dhcp-manager/nm-dhcp-manager.c: Use preprocessor defines and not
11976           open-coded integer constants.  Add state_to_string() to map a given
11977           state to a textual description, and provide that when notifying of
11978           state change.
11979         * src/dhcp-manager/nm-dhcp-manager.h: Provide defines for the dhcdbd
11980           states, copied and cleaned up from dhcdbd.d.  Ideally, we would use
11981           this header directly, but it is currently not installed on most
11982           systems.
11983
11984 2006-03-05  Dan Williams  <dcbw@redhat.com>
11985
11986         Process netlink messages in device subclasses rather than in
11987         NetworkManager.c.  Also add support for recognizing Wireless Events.
11988         
11989         * configure.in
11990                 - Find GLIB_GENMARSHAL
11991
11992         * src/Makefile.am
11993                 - Since we're marshalling custom types for wireless event signals,
11994                         we get to create our own marshallers using GLIB_GENMARSHAL
11995
11996         * src/NetworkManager.c
11997                 - (nm_monitor_wired_link_state): renamed to nm_monitor_setup
11998                 - (nm_monitor_setup): renamed from nm_monitor_wired_link_state, and
11999                         cut down somewhat.  We no longer process signals here.
12000                 - (nm_data_new): create the netlink monitor here, and remove a
12001                         useless call to nm_policy_schedule_device_change_check()
12002                 - (nm_data_free): get rid of the netlink monitor here
12003                 - (nm_device_link_activated, nm_device_link_deactivated): removed
12004                 - (main): don't create the netlink monitor here, let nm_data_new
12005                         do that.  Call nm_policy_schedule_device_change_check() right
12006                         before we jump to the mainloop to figure out which device
12007                         to use first
12008
12009         * src/NetworkManagerSystem.[ch]
12010                 - (nm_system_get_rtnl_index_from_iface, nm_system_get_iface_from_rtnl_index):
12011                         convert back and forth from interface names to interface
12012                         indexes
12013
12014         * src/nm-device-802-11-wireless.c
12015                 - (real_init): connect to wireless-event signals from the netlink
12016                         monitor object
12017                 - (nm_device_802_11_wireless_event): new function, schedule handler
12018                         for wireless event signals from the netlink monitor object.  We
12019                         want the handler to run in the device's context
12020                 - (wireless_event_helper): handle wireless-event signals from netlink
12021                 - (nm_device_802_11_wireless_dispose): disconnect wireless-event
12022                         signal handler
12023
12024         * src/nm-device-802-11-wireless.h
12025                 - remove unused prototype for nm_device_802_11_wireless_new
12026
12027         * src/nm-device-802-3-ethernet.c
12028                 - (real_init): new function; set up signal handlers for link events
12029                 - (nm_device_802_3_ethernet_link_activated): new function, schedule
12030                         handler for netlink link activated events on device's main loop
12031                 - (link_activated_helper): when we get a link activated event, set
12032                         the device's link to be active
12033                 - (nm_device_802_3_ethernet_link_deactivated): new function; schedule
12034                         handler for netlink link deactivated events on device's main loop
12035                 - (link_deactivated_helper): when we get a link deactivated event, set
12036                         the device's link to be inactive
12037                 - (nm_device_802_3_ethernet_dispose): disconnect signal handler on
12038                         dispose
12039
12040         * src/nm-device-802-3-ethernet.h
12041                 - remove unused prototype for nm_device_802_3_ethernet_new
12042
12043         * src/nm-device.[ch]
12044                 - (nm_get_device_by_iface_locked): variant of nm_get_device_by_iface
12045                         but locks the device list
12046                 - (nm_device_set_active_link): a little bit of cleanup and de-indenting
12047
12048         * src/nm-netlink-monitor.[ch]
12049                 - (nm_netlink_monitor_class_install_signals): New signal
12050                         "wireless-event"
12051                 - (nm_netlink_monitor_new): keep reference to NMData so we can get
12052                         at the device list
12053                 - (nm_netlink_monitor_event_handler): expand for wireless events too
12054
12055         * src/nm-marshal-main.c
12056                 - Include generated nm-marshal.c and nm-marshal.h
12057
12058         * src/nm-marshal.list
12059                 - List of custom marshal functions
12060
12061 2006-03-05  Dan Williams  <dcbw@redhat.com>
12062
12063         * gnome/applet/applet-notifications.h
12064                 - Protect prototype of nma_send_event_notification() because it
12065                         includes libnotify-specific types
12066                 - Include libnotify/libnotify.h too, since we technically need it
12067
12068         * gnome/applet/applet.c
12069                 - (nma_show_vpn_failure_dialog): fix usage of g_return_if_fail
12070                 - (nma_show_vpn_login_banner_dialog): add some error checking
12071
12072 2006-03-04  Dan Williams  <dcbw@redhat.com>
12073
12074         Clean up activation cancellation.  Should be a lot faster now.  Observed
12075         an issue with wireless devices between stage 2 and 3 of activation, where
12076         activation would be cancelled, but the device thread wouldn't notice until
12077         the supplicant association timed out.  Reorganize activation such that
12078         a cancellation handler gets immediately scheduled in the device's thread,
12079         and devices have a chance to perform any custom cleanup too.
12080
12081         * src/nm-device.[ch]
12082                 - (activation_cancel_handler): new device-type-specific function
12083                         for cleaning up device-type-specific stuff on cancellation
12084                 - (cancel_activation): removed
12085                 - (nm_device_activation_cancel): subsume functionality of
12086                         real_cancel_activation, but instead of doing anything, punt
12087                         operation to a handler that's run in device-thread context
12088                 - (nm_device_schedule_activation_handle_cancel): fix spelling of
12089                         a warning message
12090                 - (activation_handle_cancel_helper): cancellation handler run in
12091                         device-thread context, calls device-type-specific cancelation,
12092                         then tears down the activation request
12093                 - (real_activation_cancel_handler): generic cancellation handler,
12094                         deals with cancelling any in-process DHCP request
12095                 - (nm_device_activate_stage1_device_prepare,
12096                    nm_device_activate_stage2_device_config,
12097                    nm_device_activate_stage3_ip_config_start,
12098                    nm_device_activate_stage4_ip_config_get,
12099                    nm_device_activate_stage4_ip_config_timeout,
12100                    nm_device_activate_stage5_ip_commit): don't call
12101                         nm_device_schedule_activation_handle_cancel() any more, since
12102                         cancellation will have been already scheduled for us by
12103                         nm_device_activation_cancel().  Just exit the function and
12104                         assume that the cancel handler will be called next.
12105
12106         * src/nm-device-802-3-ethernet.c
12107                 - (real_act_stage2_config): remove; didn't do anything anyway
12108
12109         * src/nm-device-802-11-wireless.c
12110                 - (supplicant_status_cb): ensure we don't do anything if the activation
12111                         got cancelled
12112                 - (real_activation_cancel_handler): implement; cancel user key request
12113                         on activation cancellation
12114
12115 2006-03-04  Dan Williams  <dcbw@redhat.com>
12116
12117         * src/nm-device-802-11-wireless.c
12118                 - (supplicant_send_network_config): assume that drivers that don't
12119                         support WPA pretty much suck, and can't handle NM scanning
12120                         along with wpa_supplicant.
12121
12122 2006-03-03  Robert Love  <rml@novell.com>
12123
12124         * configure.in: Bump version to 0.6.0.
12125         * NEWS: Update.
12126
12127 2006-03-03  Robert Love  <rml@novell.com>
12128
12129         * configure.in: Require DBUS 0.60 or later.
12130
12131 2006-03-03  Dan Williams  <dcbw@redhat.com>
12132
12133         Fix a crash if an "Other wireless network" was chosen, failed, then
12134         chosen again from the applet's menu.  If the other network wasn't
12135         noticed in a scan, it wouldn't have any capabilities, but would still
12136         be listed because the user forced the network.  To fix this, we set
12137         sensible capabilities on the forced network, which will get overwritten
12138         with the correct ones if the network shows up later in a scan.
12139         
12140         * src/nm-ap-security.h
12141                 - Add a new "get_default_capabilities_func" member to the
12142                         NMAPSecurity class
12143
12144         * src/nm-ap-security.c
12145                 - (nm_ap_security_get_default_capabilities): new function
12146
12147         * src/nm-ap-security.c
12148           src/nm-ap-security-wep.c
12149           src/nm-ap-security-wpa-psk.c
12150           src/nm-ap-security-wpa-eap.c
12151                 - Implement get_default_capabilities_func() for all, which
12152                         uses the information contained in a specific NMAPSecurity
12153                         object to determine default AP capabilites necessary
12154                         to support that object
12155
12156         As a secondary measure, we now prune artificial access points that fail
12157         to be activated right away.  The thing failed, and we have no scan data for
12158         it, so it's pretty much useless since security information is only saved
12159         in the applets when a connection is successful.
12160
12161         * src/NetworkManagerAPList.c
12162                 - (nm_ap_list_merge_scanned_ap): mark any ap noticed in a scan
12163                         not artificial.  If we see it, it's no longer a figment of the
12164                         user's imagination :)
12165
12166         * src/NetworkManagerPolicy.c
12167                 - (nm_policy_activation_failed): send along the failed AP if we
12168                         have it
12169
12170         * src/nm-device-802-11-wireless.c
12171                 - (real_activation_failure_handler): remove artificial APs from
12172                         the device list, because activation failed
12173
12174 2006-03-02  Robert Love  <rml@novell.com>
12175
12176         Add support for retrieving both the per-device speed and the
12177         per-network maximum supported rate.  Then change the getProperties
12178         DBUS API for both networks and devices to report this informaiton.
12179         Finally, display the information via both nm-applet and nm-tool:
12180         * gnome/applet/applet-dbus-devices.c: Grab the speed from getProperties
12181           and set it.
12182         * gnome/applet/applet.c: Display the device's speed in the 'Connection
12183           Information' dialog.
12184         * gnome/applet/applet.glade: Update the UI to show per-device speed.
12185         * gnome/applet/nm-device.c, gnome/applet/nm-device.h: Add interfaces
12186           network_device_get_speed() and network_device_set_speed() for
12187           retrieving and setting, respectively, a network device's current
12188           speed.
12189         * src/nm-dbus-device.c: Send the device's speed on getProperties.
12190         * src/nm-device-802-11-wireless.c: Return the rate in Mb/s, not Kb/s,
12191           in the function nm_device_802_11_wireless_get_bitrate() -- it does
12192           not matter (yet) what the units are, because we only feed it its own
12193           output.  Implement SIOCGIRATE and set the per-network maximum
12194           supported rate during scanning.
12195         * src/nm-device-802-11-wireless.h: Export the function
12196           nm_device_802_11_wireless_get_bitrate().
12197         * src/nm-device-802-3-ethernet.c, src/nm-device-802-3-ethernet.h: Add
12198           function nm_device_802_3_ethernet_get_speed() for returning an
12199           802.3's current speed, in Mb/s.
12200         * test/nm-tool.c: Display the per-device current speed, if available,
12201           and the per-network maximum rate.
12202
12203 2006-03-02  Dan Williams  <dcbw@redhat.com>
12204
12205         * src/nm-device-802-11-wireless.c
12206                 - (nm_device_802_11_wireless_set_scan_interval): don't scan-spam the
12207                         card when it gets initialized.  Since devices don't get added to
12208                         the scan list until they are initialized, this function wasn't
12209                         setting the intitial scan interval correctly, and was leaving
12210                         it at 0.  This caused cards to get many scan requests in a short
12211                         amount of time when they were initialized
12212
12213 2006-03-02  Robert Love  <rml@novell.com>
12214
12215         * gnome/applet/applet.c: Do not set the pixbuf if we don't have an
12216           active device.  But do not do what we used to do and override the
12217           state, which caused the dreaded icon race of '05.
12218
12219 2006-03-02  Robert Love  <rml@novell.com>
12220
12221         Commit Dan's update of my previous commit:
12222         * src/nm-device-802-11-wireless.c: Always set the mode, because the
12223           set_mode() function itself does the check.  But do only set the
12224           frequency if in Ad-Hoc mode.
12225
12226 2006-03-02  Robert Love  <rml@novell.com>
12227
12228         Patch by Brian Magnuson <magnuson@rcn.com>:
12229         * src/nm-device-802-11-wireless.c: During scanning, only set the
12230           wireless mode to infrastructure if it is not currently in
12231           infrastructure mode.  For some driver, setting the mode is a costly
12232           operation, apparently.
12233
12234 2006-03-01  Rodrigo Moya <rodrigo@novell.com>
12235
12236         * Makefile.am: use the correct dir for autostart mechanism.
12237
12238 2006-02-28  Dan Williams  <dcbw@redhat.com>
12239
12240         Patch from Brian Magnuson <magnuson@rcn.com>
12241         * gnome/applet/applet.c
12242                 - (nma_show_vpn_failure_dialog): fix errors left over from
12243                         libnotify support changes
12244
12245 2006-02-28  Dan Williams  <dcbw@redhat.com>
12246
12247         * src/vpn-manager/nm-vpn-act-request.[ch]
12248                 - (nm_vpn_act_request_is_activated): don't use a switch/case for
12249                         just one value
12250                 - (nm_vpn_act_request_is_failed): new function; return whether or
12251                         not the vpn activation request has failed
12252
12253         * src/vpn-manager/nm-vpn-manager.c 
12254                 - (nm_vpn_manager_deactivate_vpn_connection): tell the vpn service
12255                         daemon to kill the connection when the activation request fails.
12256                         Fixes issue where NM would get confused if the VPN activation
12257                         request timed out, and would not allow further VPN connections
12258                         on that service.
12259
12260 2006-02-28  Dan Williams  <dcbw@redhat.com>
12261
12262         * gnome/applet/applet.c
12263                 - (nma_menu_add_vpn_menu): until the NM VPN manager can deal with
12264                         overlapping connection requests, disable all VPN menu items
12265                         but the active VPN connection
12266
12267 2006-02-28  Dan Williams  <dcbw@redhat.com>
12268
12269         * src/vpn-manager/nm-vpn-connection.c
12270                 - (nm_vpn_connection_set_parent_device): fix C&P error which
12271                         called g_object_unref() on the connection's parent device
12272                         when it should have been ref-ed instead.  Fixes crash with
12273                         repeated vpn connect requests
12274
12275 2006-02-28  Christopher Aillon  <caillon@redhat.com>
12276
12277         * gnome/applet/applet.glade:
12278         Mark a few strings non-translatable, since they shouldn't be.
12279
12280 2006-02-28  Dan Williams  <dcbw@redhat.com>
12281
12282         * src/vpn-manager/nm-vpn-service.c
12283                 - (nm_vpn_service_start_connection): if the vpn service daemon is
12284                         already running, don't blindly ask it to connect, but wait until
12285                         it's in the STOPPED state first.  Fixes an assertion when user
12286                         starts a second vpn connection without stopping the first.
12287                 - (nm_vpn_service_stage2_daemon_wait): ensure the vpn service's
12288                         dbus service exists before continuing with the connection
12289                         process, and reduce latency while waiting for it to become
12290                         available
12291                 - (nm_vpn_service_schedule_stage2_daemon_wait): reduce latency
12292                         waiting for the vpn service daemon to become available
12293                 - General log message cleanups; show progress via "Stage x of 4"
12294                         rather than not telling anyone how many stages there are
12295
12296 2006-02-28  Robert Love  <rml@novell.com>
12297
12298         * src/NetworkManagerSystem.h: Add nm_system_should_modify_resolv_conf.
12299         * src/backends/NetworkManagerSuSE.c: Implement the interface
12300           nm_system_should_modify_resolv_conf() for SUSE.
12301         * src/backends/NetworkManagerDebian.c,
12302           src/backends/NetworkManagerGentoo.c,
12303           src/backends/NetworkManagerRedHat.c,
12304           src/backends/NetworkManagerSlackware.c: Add stub.
12305         * src/named-manager/Makefile.am: Grab includes from src.
12306         * src/named-manager/nm-named-manager.c: Allow backends to disable the
12307           automatic updating of resolv.conf.  This is useful for testing,
12308           broken static configurations, and administrator lock-down.
12309
12310 2006-02-28  Dan Williams  <dcbw@redhat.com>
12311
12312         * src/nm-device-802-11-wireless.c
12313                 - Move all the wpa_supplicant-related management stuff into its
12314                         own struct, just for oranization's sake
12315                 - (supplicant_exec): when exec-ing wpa_supplicant, connect its stdout
12316                         to a GIOChannel/GSource
12317                 - (supplicant_log_stdout): new function; grab output from the
12318                         wpa_supplicant stdout pipe and write it to our logs.
12319
12320 2006-02-27  Christopher Aillon  <caillon@redhat.com>
12321
12322         * src/nm-device-802-11-wireless.c:
12323         Err, fix thinko in my previous commit.
12324
12325 2006-02-28  Robert Love  <rml@novell.com>
12326
12327         * gnome/applet/wso-wpa-eap.c: Fix misc. FIXME statements.
12328
12329 2006-02-28  Robert Love  <rml@novell.com>
12330
12331         * libnm-util/dbus-helpers.c, src/nm-ap-security-wpa-eap.c,
12332           src/nm-ap-security-wpa-psk.c, gnome/applet/nm-gconf-wso-wpa-eap.c,
12333           gnome/applet/nm-gconf-wso-wpa-eap.c: Fix FIXMEs: Callers of the DBUS
12334           deserializers are responsible for freeing the returned DBUS strings.
12335
12336 2006-02-27  Christopher Aillon  <caillon@redhat.com>
12337
12338         * src/nm-device-802-11-wireless.c:
12339         The scan list is being pruned prematurely.  We should prune after
12340         the device has gone MIA for three scans, not one.  Split out the
12341         interval to realtime seconds function to better serve this.
12342
12343 2006-02-27  Robert Love  <rml@novell.com>
12344
12345         * dispatcher-daemon/NetworkManagerDispatcher.c, src/NetworkManager.c:
12346           Open the pid file O_TRUNC, so if it already exists we truncate it to
12347           zero length.  Also, be more verbose about warnings generated during
12348           writing out the pid file.  Finally, always write out the pid file if
12349           in daemon mode.  Use "--pid-file" to override the default.
12350
12351 2006-02-27  Robert Love  <rml@novell.com>
12352
12353         Patch by R. Vinay <rvinay@novell.com>:
12354         * gnome/vpn-properties/nm-vpn-properties.c: Remove the gconf key
12355           'last_attempt_success' when removing a VPN connection, too.  (Fixes
12356           Novell bug #153628).
12357           
12358 2006-02-27  Robert Love  <rml@novell.com>
12359
12360         * gnome/applet/applet.glade: Set "activates_default" on passphrase
12361           entry so user can hit <ENTER> after entering passphrase (Novell bug
12362           #153738).
12363
12364 2006-02-27  Dan Williams  <dcbw@redhat.com>
12365
12366         * gnome/applet/*
12367                 - Mass search/replace of:
12368                         nmwa -> nma
12369                         NMWirelessApplet -> NMApplet
12370                         NM_*_WIRELESS_APPLET -> NM_*_APPLET
12371                    (it ain't just for wireless anymore, ma!)
12372                 - Fix duplicate function name printing when using nm_warning
12373                 - wireless-applet.glade -> applet.glade
12374
12375 2006-02-27  Dan Williams  <dcbw@redhat.com>
12376
12377         * dispatcher-daemon/NetworkManagerDispatcher.c
12378                 - Accept --pid-file with a path to a pidfile, write it out on
12379                         startup, and delete it on shutdown
12380
12381         * src/NetworkManager.c
12382                 - Accept --pid-file with a path to a pidfile, write it out on
12383                         startup, and delete it on shutdown
12384                 - Move nm_print_usage() lower
12385
12386         * initscripts/RedHat/NetworkManager.in
12387                 - Use new --pid-file option
12388                 - Fix service stopping to wait a bit for NM to quit
12389
12390         * initscripts/RedHat/NetworkManagerDispatcher.in
12391                 - Use new --pid-file option
12392
12393 2006-02-26  Dan Williams  <dcbw@redhat.com>
12394
12395         * src/Makefile.am
12396                 - make and install nm-crash-logger
12397
12398         * src/nm-logging.[ch]
12399                 - New files; consolidate logging and crash handling
12400
12401         * src/nm-crash-logger.c
12402           src/gdb-cmd
12403                 - Standalong crashlogger for NM, grab a backtrace
12404                         using GDB
12405
12406         * src/NetworkManager.[ch]
12407                 - Remove signal handling and put it into nm-logging.c
12408
12409 2006-02-26  Dan Williams  <dcbw@redhat.com>
12410
12411         * configure.in
12412           gnome/applet/Makefile.am
12413                 - Conditionalize all the notify stuff
12414
12415         Merge most of Chris Aillon's notification patch:
12416         
12417         * gnome/applet/applet-notifications.[ch]
12418                 - New files; show a notification
12419         
12420         * gnome/applet/applet-dbus-devices.[ch]
12421                 - (nmwa_dbus_device_activated, nmwa_dbus_device_activated_cb,
12422                    nmwa_dbus_device_deactivated, nmwa_dbus_device_deactivated_cb):
12423                         new functions, do the right thing when a device change occurs
12424
12425         * gnome/applet/applet-dbus.c
12426                 - (nmwa_dbus_filter): Split out DeviceNowActive and DeviceNoLongerActive
12427                         signals, so we can handle them specially
12428
12429         * gnome/applet/applet.[ch]
12430                 - nmwa_schedule_vpn_login_banner -> nmwa_show_vpn_login_banner
12431                 - nmwa_schedule_vpn_failure_alert -> nmwa_show_vpn_failure_alert
12432                 - (nmwa_notify_state): remove
12433                 - (nmwa_update_state); remove call to nmwa_notify_state, since the
12434                         notification work is now done when the appropriate dbus signals
12435                         are received.
12436                 - (nmwa_show_vpn_login_banner, nmwa_show_vpn_failure_alert): don't
12437                         defer execution of the notification/dialog stuff.  That was an
12438                         artifact of the previous multi-threaded nature of the applet
12439                         and is now pointless.
12440                 - (nmwa_notify_vpn_failure, nmwa_notify_vpn_login_banner): remove,
12441                         no longer needed.  Function folded into applet-notifications.c
12442
12443         * src/NetworkManagerPolicy.c
12444                 - (nm_policy_activation_finish): send the AP along with the device
12445                         status change signal, if the connection is wireless.  Should
12446                         fix the race where applet would show a connection to "unknown"
12447
12448 2006-02-25  Robert Love  <rml@novell.com>
12449
12450         Add WPA Enterprise support:
12451         * gnome/applet/Makefile.am: Build the files nm-gconf-wso-wpa-eap.c and
12452           nm-gconf-wso-wpa-eap.h.
12453         * gnome/applet/nm-gconf-wso-wpa-eap.c,
12454           gnome/applet/nm-gconf-wso-wpa-eap.h:  Add WPA Enterprise Gconf
12455           serialization and deserialization.
12456         * gnome/applet/nm-gconf-wso-wpa-psk.c, gnome/applet/nm-gconf-wso.c,
12457           gnome/applet/wireless-security-option.c, gnome/applet/wso-wpa-psk.c,
12458           gnome/applet/wso-wpa-psk.h: Clean up, support new defines.
12459         * gnome/applet/wireless-applet.glade: Add UI for configurating security
12460           settings related to WPA Enterprise.
12461         * gnome/applet/wireless-security-manager.c: Invoke wso_wpa_eap_new() to
12462           instantiate WPA Enterprise wireless-security-option.
12463         * gnome/applet/wso-wpa-eap.c, gnome/applet/wso-wpa-eap.h: New files.
12464           Implement WPA Enterprise wireless-security-option object.
12465         * include/NetworkManager.h: Add new NM_AUTH_TYPE_* and NM_EAP_METHOD_*
12466           defines.  Cleanup.
12467         * libnm-util/cipher-wpa-psk-hex.c,
12468           libnm-util/cipher-wpa-psk-passphrase.c: Cleanup.
12469         * libnm-util/dbus-helpers.c, libnm-util/dbus-helpers.h: Add
12470           nmu_security_serialize_wpa_eap() to serialize input to DBUS method,
12471           nmu_security_serialize_wpa_eap_with_cipher() to serialize input
12472           including the cipher to DBUS method, and
12473           nmu_security_deserialize_wpa_eap() to deserialize from DBUS return
12474           to output.
12475         * src/Makefile.am: Build the files nm-ap-security-wpa-eap.c and
12476           nm-ap-security-wpa-eap.h
12477         * src/NetworkManagerAP.c: Add NM_AUTH_TYPE_WPA_EAP to
12478           NM_802_11_CAP_KEY_MGMT_802_1X cipher to capability mapping.
12479         * src/nm-ap-security-wpa-eap.c, src/nm-ap-security-wpa-eap.h: New
12480           files.  Implement NMAPSecurityWPA_EAP object.
12481         * src/nm-ap-security-wpa-psk.c: Cleanup.
12482         * src/nm-ap-security.c: Support NM_AUTH_TYPE_EAP cipher and instantiate
12483           an NMAPSecurityWPA_EAP object via the method
12484           nm_ap_security_wpa_eap_new_deserialize().
12485         * src/nm-dbus-nm.c: Cleanup.
12486         * test/nm-tool.c: Display "Enterprise" for wireless networks providing
12487           WPA Enterprise support.
12488
12489 2006-02-24  Robert Love  <rml@novell.com>
12490
12491         Patch from Timo Hoenig <thoenig@suse.de>:
12492         * src/NetworkManagerDbus.c: Survive DBUS restarts like a champ.
12493
12494 2006-02-24  Robert Love  <rml@novell.com>
12495
12496         Patch from Dan Winship <danw@novell.com>:
12497         * gnome/applet/eggtrayicon.c: Update EggTrayIcon code.  Set the gdk
12498           area to transparent.
12499
12500 2006-02-21  Dan Williams  <dcbw@redhat.com>
12501
12502         * gnome/applet/applet.[ch]
12503           gnome/applet/applet-dbus.c
12504                 - Implement notification support for VPN messages too
12505
12506 2006-02-21  Dan Williams  <dcbw@redhat.com>
12507
12508         * gnome/applet/applet-dbus-info.c
12509                 - Clean up warning messages to not double-print the function
12510
12511 2006-02-21  Dan Williams  <dcbw@redhat.com>
12512
12513         * gnome/applet/applet-compat.c
12514                 - (convert_one_entry): accept entries without a key_type and
12515                         convert them to unencrypted networks
12516
12517 2006-02-21  Dan Williams  <dcbw@redhat.com>
12518
12519         * gnome/libnm_glib/libnm_glib.c
12520                 - Use __func__ everywhere we can
12521                 - Code cleanups
12522                 - Use dbus pending calls rather than blocking
12523                 - Reduce busywaits for our thread to start and stop
12524                         (gnome.org #330562)
12525                 - (libnm_glib_dbus_init): Use dbus_bus_get_private() so we don't
12526                         stomp on others using the default shared dbus connection.
12527                         Fixes #rh177546# and gnome.org #326572
12528
12529 2006-02-21  Dan Williams  <dcbw@redhat.com>
12530
12531         Patch from Rodney Dawes <dobey@novell.com>
12532         * configure.in
12533           gnome/applet/Makefile.am
12534           gnome/applet/applet.c
12535                 - Add libnotify support if '--enable-notify=yes' is passed
12536                   at configure time
12537
12538 2006-02-16  Kang Jeong-Hee  <keizie@gmail.com>
12539
12540         * configure.in (ALL_LINGUAS): ko added. (Korean)
12541
12542 2006-02-15  Robert Love  <rml@novell.com>
12543
12544         * src/nm-device-802-11-wireless.c: Use LOCALSTATEDIR preprocessor
12545           define, not an open-coded "/var", for WPA_SUPPLICANT_GLOBAL_SOCKET
12546           and WPA_SUPPLICANT_CONTROL_SOCKET.
12547         
12548 2006-02-15  Robert Love  <rml@novell.com>
12549
12550         * src/nm-device-802-11-wireless.c, src/nm-device.c: When printing debug
12551           information about what connection stage we are at, provide the total
12552           number of stages, e.g. "Stage 2 of 5", so users know how far along
12553           they are if they experience problems.
12554
12555 2006-02-15  Robert Love  <rml@novell.com>
12556
12557         * gnome/vpn-properties/Makefile.am: Define SYSCONFDIR preprocessor
12558           define to $sysconfdir.
12559         * gnome/vpn-properties/nm-vpn-properties.c: Make sure we hide the VPN
12560           editing dialog, vpn_edit_widget, which fixes a bug where editing one
12561           type of VPN and then editing another results in a mangled dialog
12562           box containing the widgets from both VPNs (fixes Novell #150854).
12563           Also, some misc. cleanup and use SYSCONFDIR not open coded directory.
12564
12565 2006-02-14  Robert Love  <rml@novell.com>
12566
12567         * src/NetworkManager.c: Call closelog() on daemon shutdown to close
12568           syslog's file descriptor.
12569
12570 2006-02-14  Robert Love  <rml@novell.com>
12571
12572         Fix bug around since the change to "deal with APs changing settings on
12573         us," checked in on the fifth of February in the year of the dog, 
12574         wherein connecting to non-broadcast encrypted networks always fails
12575         because nm_ap_get_encrypted() always returns FALSE, even when the user
12576         provided a key, because the newly-created fake AP does not have any
12577         capabilities set, which is a sypmtom of security settings not matching
12578         capabilities (Novell bug #150784):
12579         * src/NetworkManagerAP.c, src/NetworkManagerAP.h: Add new interface,
12580           nm_ap_add_capabilities_from_security(), which sets the given AP's
12581           capabilities off the given security settings.  Also improve our
12582           handling of capabilities w.r.t. NM_802_11_CAP_PROTO_NONE and
12583           NM_AUTH_CIPHER_AUTO.
12584         * src/nm-device-802-11-wireless.c: Call the function
12585           nm_ap_add_capabilities_from_security() to ensure that capabilities
12586           match newly updated security settings.
12587
12588 2006-02-14  Robert Love  <rml@novell.com>
12589
12590         * src/nm-device-802-11-wireless.c: Clean up nm_warning calls: Print the
12591           error as a string, not an integer, if possible; do not print the
12592           function name twice; always give the interface, if possible; misc.
12593           cleanup.
12594
12595 2006-02-12  Dan Williams  <dcbw@redhat.com>
12596
12597         Patch from Tom Parker <palfrey@tevp.net>
12598         * src/NetworkManagerSystem.h
12599                 - Remove prototype for nm_system_device_setup_static_ip4_config(),
12600                         no longer used
12601
12602         * src/backends/NetworkManagerDebian.c
12603                 - Remove some dead code (nm_system_device_setup_static_ip4_config) and
12604                         unused variables
12605
12606 2006-02-12  Dan Williams  <dcbw@redhat.com>
12607
12608         * vpn-daemons/openvpn/intltool-extract.in
12609           vpn-daemons/openvpn/intltool-merge.in
12610           vpn-daemons/openvpn/intltool-update.in
12611           vpn-daemons/pptp/intltool-extract.in
12612           vpn-daemons/pptp/intltool-merge.in
12613           vpn-daemons/pptp/intltool-update.in
12614                 - Remove from CVS, they should get created by intltoolize,
12615                         shouldn't they?
12616
12617 2006-02-12  Dan Williams  <dcbw@redhat.com>
12618
12619         * vpn-daemons/pptp/src/pppd/patchlevel.h
12620         * vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
12621                 - Rename VERSION -> PPPD_VERSION to avoid conflict with the
12622                         Makefile-defined VERSION
12623
12624 2006-02-09  Dan Williams  <dcbw@redhat.com>
12625
12626         Patch from: Vinay A R <rvinay@novell.com>
12627         * src/vpn-manager/nm-vpn-act-request.[ch]
12628                 - Added 'routes' and 'routes_count' to struct NMVPNActRequest since
12629                         IPSec VPNs require them for std gateway.
12630                 - (nm_vpn_act_request_new): takes arguments for 'user_routes'
12631                         and 'user_routes_count'
12632                 - (nm_vpn_act_request_get_user_routes): new function; gets user
12633                         defined routes  from NMVPNActRequest object, returns the string
12634                         array of routes.
12635
12636         * src/vpn-manager/nm-vpn-manager.[ch]
12637                 - (nm_vpn_manager_activate_vpn_connection): take additional arguments
12638                         for 'user_routes' and 'user_routes_count'
12639         
12640         * src/vpn-manager/nm-dbus-vpn.c
12641                 - (nm_dbus_vpn_activate_connection): gets 'user_routes' from
12642                         nm_dbus_vpn_get_routes() to pass to nm_vpn_manager_activate_vpn_connection()
12643         
12644         * src/vpn-manager/nm-vpn-service.c
12645                 - (nm_vpn_service_stage3_connect): pass user routes over dbus to
12646                         the vpn daemon
12647
12648         Modifications by Dan:
12649         * src/vpn-manager/nm-vpn-service.c
12650                 - (nm_vpn_service_stage3_connect): ensure that we don't pass NULL string
12651                         arrays into dbus
12652
12653         * vpn-daemons/vpnc/src/nm-vpnc-service.c
12654         * vpn-daemons/pptp/src/nm-pptp-service.c
12655         * vpn-daemons/openvpn/src/nm-openvpn-service.c
12656                 - Grab user routes from dbus message
12657                 - Free all string arrays we got from dbus
12658
12659 2006-02-07  Robert Love  <rml@novell.com>
12660
12661         Patch by Stefan Seyfried <seife@suse.de>:
12662         * libnm-util/cipher.c: Fix off-by-one error in cipher_bin2hexstr.
12663
12664 2006-02-06  Robert Love  <rml@novell.com>
12665
12666         * src/nm-device-802-11-wireless.c: Fix leak in supplicant_status_cb().
12667
12668 2006-02-06  Robert Love  <rml@novell.com>
12669
12670         * src/NetworkManagerUtils.c: kill_newline(): 'l' is unsigned so the
12671           test ">=" is never false.  If no newline is found, we loop forever.
12672           We can just check for ">" because the following if() will see the
12673           zero-th argument if the while() gets that far.
12674
12675 2006-02-05  Dan Williams  <dcbw@redhat.com>
12676
12677         Refine handling of non-broadcast networks.
12678
12679         * src/NetworkManagerAPList.c
12680                 - (nm_ap_list_merge_scanned_ap): unconditionally copy the 'broadcast'
12681                         property from scanned AP to the AP from the device list
12682
12683         * src/nm-device-802-11-wireless.c
12684                 - (supplicant_send_network_config): use ap_scan=1 for all networks
12685                         except non-SSID-broadcasting and Ad-Hoc networks.  Use
12686                         ap_scan=2 for those.  Also, don't set scan_ssid for Ad-Hoc
12687                         networks since those don't have APs.
12688                 - (add_new_ap_to_device_list): if there's no valid SSID, mark the
12689                         AP as non-SSID-broadcasting
12690                 - (process_scan_results): don't handle non-SSID-broadcasting here
12691
12692 2006-02-05  Dan Williams  <dcbw@redhat.com>
12693
12694         * src/nm-device-802-11-wireless.c
12695                 - (get_supplicant_timeout): new function; return
12696                         NM_SUPPLICANT_TIMEOUT * 2 for cards that support more than
12697                         14 channels.  These are likely a/b/g cards, like Atheros, and
12698                         slow as hell to scan.
12699                 - (supplicant_timeout_cb, supplicant_monitor_start): use
12700                         get_supplicant_timeout()
12701
12702 2006-02-05  Dan Williams  <dcbw@redhat.com>
12703
12704         * src/dhcp-manager/nm-dhcp-manager.c
12705                 - Loose a commit race with Robert; make sure size check
12706                         uses size of DHCP_SERVICE_LEN, not hardcoded 15
12707
12708 2006-02-05  Robert Love  <rml@novell.com>
12709
12710         Patch by Christoph Brill <chrisbrill@gmx.net>:
12711         * src/dhcp-manager/nm-dhcp-manager.c: Replace two open coded defines
12712           with DHCP_SERVICE_NAME.
12713
12714 2006-02-05  Dan Williams  <dcbw@redhat.com>
12715
12716         Remove anything having to do with device_setup_func from the
12717         AP security objects, since it's no longer used.
12718
12719         * src/nm-ap-security.h
12720                 - Kill device_setup_func and nm_ap_security_device_setup()
12721
12722         * src/nm-ap-security-wep.c
12723           src/nm-ap-security-wpa-psk.c
12724                 - (real_device_setup): remove
12725
12726         * src/nm-ap-security.c
12727                 - (real_device_setup): remove
12728                 - (nm_ap_security_device_setup): remove
12729
12730         * src/nm-device-802-11-wireless.[ch]
12731                 - (nm_device_802_11_wireless_set_wep_enc_key): make static
12732                 - (set_wireless_config, wireless_configure_adhoc): remove; unused
12733                         and done by wpa_supplicant now anyway
12734
12735 2006-02-05  Dan Williams  <dcbw@redhat.com>
12736
12737         * src/nm-device-802-11-wireless.c
12738                 - (ap_need_key, real_act_stage2_config): deal with APs changing
12739                         settings on us.  Previously NM would loop asking for the
12740                         key but getting the same one back.  Now, if the NMI-supplied
12741                         cipher doesn't overlap with the scanned AP capabilities,
12742                         we request a completely new key from the user.
12743
12744 2006-02-05  Dan Williams  <dcbw@redhat.com>
12745
12746         * src/NetworkManagerUtils.c
12747                 - (nm_utils_supplicant_request_with_check, nm_utils_supplicant_request):
12748                         Handle newline killing better
12749
12750 2006-02-05  Dan Williams  <dcbw@redhat.com>
12751
12752         * gnome/applet/nm-gconf-wso.c
12753                 - (real_serialize_dbus): return TRUE, not 0.  Fixes serialization
12754                         of unencrypted access point security info.
12755
12756 2006-02-03  Robert Love  <rml@novell.com>
12757
12758         * src/NetworkManagerUtils.c: Even for debugging, we should not log the
12759           user's encryption key, so we print the err_msg_cmd not the command,
12760           if available.  So long as SUPPLICANT_DEBUG is default, this makes
12761           sense.
12762
12763 2006-02-03  Christopher Aillon  <caillon@redhat.com>
12764
12765         * initscript/RedHat/NetworkManagerDispatcher.in:
12766         * initscript/RedHat/NetworkManager.in: modify the pidfile location
12767         Patch from Dan Walsh <dwalsh@redhat.com>
12768
12769 2006-02-03  Robert Love  <rml@novell.com>
12770
12771         * dispatcher-daemon/NetworkManagerDispatcher.c,
12772           dispatcher-daemon/Makefile.am: Don't hardcode the location of /etc
12773           but use the sysconfdir.
12774
12775 2006-02-03  Robert Love  <rml@novell.com>
12776
12777         * src/nm-device-802-11-wireless.c, src/nm-device-802-11-wireless.h:
12778           Make nm_device_802_11_wireless_get_essid() return 'const char *' not
12779           'char *'.
12780         * src/nm-ip4-config.c, src/nm-ip4-config.h: Make the functions
12781           nm_ip4_config_get_hostname() and
12782           nm_ip4_config_get_nis_domain() return 'const char *' not 'char *'.
12783         * src/backends/NetworkManagerSuSE.c: Fix up for above.  Also, do not
12784           leak g_strdup() result.
12785
12786 2006-02-03  Robert Love  <rml@novell.com>
12787
12788         * src/NetworkManagerAP.c: In nm_ap_new(), default new networks to
12789           broadcast == TRUE.  Also, copy broadcast and artificial properties
12790           from source network to destination in nm_ap_copy().
12791         * src/nm-device-802-11-wireless.c: Don't set broadcast flag to TRUE,
12792           since we now default new networks to non-hidden.
12793
12794 2006-02-03  Dan Williams  <dcbw@redhat.com>
12795
12796         * gnome/applet/main.c
12797                 - (main): change the NEVER->ALWAYS so we start at the
12798                         beginning of the session, if being session-managed
12799
12800 2006-02-03  Dan Williams  <dcbw@redhat.com>
12801
12802         * gnome/applet/main.c
12803                 - (main): in a variation on Robert's patch, change
12804                         RESTART_IMMEDIATELY -> RESTART_NEVER.  Should do what
12805                         he wants.
12806
12807 2006-02-02  Robert Love  <rml@novell.com>
12808
12809         * src/Makefile.am: If we aren't going to create the run directory at,
12810           uh, run-time, create it during install.  Then users just doing
12811           'make install' are cool, too.  While we are here, create the
12812           dispatcher.d directory, too.
12813         * src/nm-device-802-11-wireless.c: Let the Makefile define and pass in
12814           the exact run directory.
12815         * Makefile.am: Install nm-applet.desktop.
12816
12817 2006-02-02  Robert Love  <rml@novell.com>
12818
12819         * src/NetworkManagerAP.c: Add 'broadcast' property to the NMAccessPoint
12820           structure, which denotes whether or not the AP is hidden.  This is a
12821           superset of 'artificial' -- we need 'broadcast' because a hidden AP
12822           can show up in the scan list.  Add nm_ap_get_broadcast() and
12823           nm_ap_set_broadcast() accessor interfaces.
12824         * src/NetworkManagerAP.h: Add prototypes for nm_ap_get_broadcast() and
12825           nm_ap_set_broadcast().
12826         * src/nm-dbus-net.c: Add new argument, boolean broadcast, to the
12827           "getProperties" method, which denotes whether or not the given
12828           network is hidden.
12829         * src/nm-device-802-11-wireless.c: Set broadcast to FALSE when creating
12830           an artificial network.  Set broadcast to TRUE when scanning returns
12831           an ESSID and FALSE when not.
12832         * gnome/applet/applet-dbus-devices.c: Retrieve 'broadcast' argument
12833           from "getProperties" method on a network.  Possible TODO is to
12834           somehow display this.
12835         * test/nm-tool.c: Display "Hidden" if the AP does not broadcast.
12836
12837 2006-02-02  Dan Williams  <dcbw@redhat.com>
12838
12839         * src/nm-device-802-11-wireless.c
12840                 - (supplicant_interface_init): don't try to create
12841                         /var/run/NetworkManager, since that should be done by
12842                         the distro package.  Causes problems for stuff like SELinux
12843
12844 2006-02-02  Robert Love  <rml@novell.com>
12845
12846         Patch by Sureshkumar T <tsureshkumar@novell.com>:
12847         * src/vpn-manager/nm-vpn-connection.c, src/NetworkManagerSystem.c:
12848           Check for and handle empty string for iface.
12849
12850 2006-02-01  Robert Love  <rml@novell.com>
12851
12852         * configure.in, man/nm-tool.1.in, man/Makefile.am: Add nm-tool(1)
12853           manpage.
12854
12855 2006-01-31  Dan Williams  <dcbw@redhat.com>
12856
12857         * nm-applet.desktop
12858                 - Add --sm-disable to Exec arguments, presuming that when
12859                         using autostart, we don't want session management
12860
12861 2006-01-31  Robert Love  <rml@novell.com>
12862
12863         * src/NetworkManagerAP.c: Add two new manufacturer default network
12864           names: linksys-a and linksys-g.  These are found (at least) on the
12865           Linksys WAP55AG, which does both 802.11a and 802.11b, each with their
12866           own ESSID.
12867
12868 2006-01-31  Robert Love  <rml@novell.com>
12869
12870         * src/NetworkManagerAP.c: Optimize the function
12871           nm_ap_has_manufacturer_default_essid().  I did not like its resulting
12872           machine code.  This is the first in a series of code tweaks aiming to
12873           generate better machine code and make NetworkManager all the better.
12874           Just kidding.  Who has time to go through the assembly generated for
12875           every function?  I certainly don't.  I have a wife, a kid, a job,
12876           a mortgage, a mistress.  But this function was so bad, I was called
12877           to arms.  Like the book.
12878
12879 2006-01-31  Robert Love  <rml@novell.com>
12880
12881         * src/nm-device-802-11-wireless.c: Set "scan_ssid 1" if the requested
12882           AP is not broadcasting, to scan with probe request frames.  Required
12883           for non-broadcast networks.
12884
12885 2006-01-31  Robert Love  <rml@novell.com>
12886
12887         * src/nm-device-802-11-wireless.c: Make the wpa_supplicant a
12888           preprocessor define (still 20s).  Fix message text in nm_info()
12889           s/too too/took too/.
12890
12891 2006-01-30  Dan Williams  <dcbw@redhat.com>
12892
12893         * src/nm-device-802-11-wireless.c
12894                 - (supplicant_monitor_start): increase connect/auth timeout to
12895                         20 seconds from 10 seconds
12896
12897 2006-01-30  Dan Williams  <dcbw@redhat.com>
12898
12899         * src/Makefile.am
12900                 - Define LOCALSTATEDIR
12901
12902         * src/nm-device-802-11-wireless.c
12903                 - (supplicant_exec): tell wpa_ctrl_open() to stick the local control
12904                         socket where we want it to
12905
12906         * src/wpa_ctrl.[ch]
12907                 - (wpa_ctrl_open): accept location to put local control socket
12908
12909 2006-01-30  Robert Love  <rml@novell.com>
12910
12911         * src/dhcp-manager/nm-dhcp-manager.c: Pass TRUE for ignore_error in
12912           get_ip4_string() for "domain_name".
12913
12914 2006-01-30  Robert Love  <rml@novell.com>
12915
12916         * gnome/applet/nm-gconf-wso-wpa-psk.c, gnome/applet/nm-gconf-wso.c,
12917           gnome/applet/wireless-security-option.c, include/NetworkManager.h,
12918           libnm-util/cipher-wpa-psk-hex.c, src/nm-ap-security-wpa-psk.c,
12919           libnm-util/cipher-wpa-psk-passphrase.c, src/nm-ap-security.c: Add
12920           support for "Automatic" pairwise and group cipher configuration by
12921           letting wpa_supplicant handle the details.  Add UI elements, new
12922           cipher type NM_AUTH_CIPHER_AUTO, and backend support.  Works like a
12923           charm.  Note this does more than add a nice feature, it fixes a bug.
12924           Apparently, some people have AP's where the pairwise cipher does not
12925           match the group cipher.  Insane, but true.
12926
12927 2006-01-30  Dan Williams  <dcbw@redhat.com>
12928
12929         * gnome/applet/applet-dbus-devices.c
12930                 - (nmwa_dbus_device_get_driver_cb, nmwa_dbus_device_get_driver): new
12931                         functions, grab device driver name from NetworkManager
12932                 - (nmwa_dbus_device_properties_cb): call functions to get driver
12933
12934         * gnome/applet/applet.c
12935                 - (nmwa_update_info): show driver name in Connection Information
12936                         dialog
12937
12938         * gnome/applet/nm-device.[ch]
12939                 - (network_device_get_driver, network_device_set_driver): add
12940                         accessors for driver name
12941
12942         * gnome/applet/wireless-applet.glade
12943                 - Add line for driver name to Connection Information dialog
12944
12945         * src/nm-dbus-device.c
12946                 - (nm_dbus_device_get_driver): new function to return driver name
12947                 - (nm_dbus_device_methods): hook up driver name function to dbus
12948
12949         * test/nm-tool.c
12950                 - (get_driver_name): new function
12951                 - (detail_device): grab and show driver name
12952
12953 2006-01-30  Robert Love  <rml@novell.com>
12954
12955         * gnome/applet/applet.c: Apparently gtk_message_dialog_new_with_markup
12956           does not parse the markup if it is not part of the format.
12957
12958 2006-01-30  Robert Love  <rml@novell.com>
12959
12960         * gnome/applet/passphrase-dialog.c: If wsm_set_capabilities() returns
12961           FALSE, we have no security options for this dialog, so we throw up
12962           an error dialog instead of a broken passphrase dialog.  Fixes
12963           Novell #138404.
12964         * gnome/applet/wireless-security-manager.c,
12965           gnome/applet/wireless-security-manager.h: If wsm_set_capabilities()
12966           does not add any security options, not even NONE, print a warning
12967           and return FALSE.  This let's functions constructing a dialog bail
12968           out if the device's capabilities and the network's requirements have
12969           zero overlap.
12970
12971 2006-01-27  Robert Love  <rml@novell.com>
12972
12973         * configure.in: Require wpa_supplicant.  Detect location of binary and
12974           use it.  Override with "--with-wpa_supplicant=foo".
12975         * src/Makefile.am, src/nm-device-802-11-wireless.c: Do not hardcode the
12976           path to wpa_supplicant but use the auto-detected or user-provided
12977           value from configure.
12978
12979 2006-01-27  Robert Love  <rml@novell.com>
12980
12981         * src/backends/NetworkManagerSuSE.c: If DHCLIENT_SET_HOSTNAME is set
12982           but the DHCP server did not return a hostname, try to look up our
12983           name via DNS and set the system hostname to that.
12984
12985 2006-01-27  Dan Williams  <dcbw@redhat.com>
12986
12987         * src/backends/NetworkManagerRedHat.c
12988                 - Add NM_CONTROLLED system network script support for RH/Fedora
12989
12990 2006-01-27  Dan Williams  <dcbw@redhat.com>
12991
12992         * src/backends/NetworkManagerGentoo.c
12993                 - (nm_system_device_get_disabled): add missing function.
12994                         Gnome BZ #328780
12995
12996 2006-01-27  Clytie Siddall <clytie@riverland.net.au>
12997
12998         * configure.in: Added vi in ALL_LINGUAS line.
12999         
13000 2006-01-26  Robert Love  <rml@novell.com>
13001
13002         * src/Makefile.am, src/kernel-types.h: Now that two different source
13003           files are feeling the crack-addled leakage of kernel types such as
13004           u32 and s8 -- superior to __u64 and __u8, to be sure, but not valid
13005           types in user-space -- define a header and include it as needed.
13006         * src/nm-device-802-3-ethernet.c: Include kernel-types.h
13007         * src/nm-device-802-3-ethernet.h: Remove defines.
13008         * src/wpa.c: Remove defines and include kernel-types.h.
13009
13010 2006-01-26  Robert Love  <rml@novell.com>
13011
13012         * TODO: Update.  WPA support is in the bag and HAL restarts (should)
13013           work.
13014
13015 2006-01-26  Robert Love  <rml@novell.com>
13016
13017         * configure.in: Change '-Wno-unused' to '-Wno-unused-parameter'
13018         * gnome/applet/applet-compat.c, gnome/applet/applet-dbus-devices.c,
13019           gnome/applet/applet-dbus-info.c, gnome/applet/applet-dbus.c,
13020           gnome/applet/applet.c, gnome/applet/applet.h, src/nm-dbus-device.c,
13021           gnome/applet/nm-gconf-wso-wep.c, gnome/applet/nm-gconf-wso-wpa-psk.c,
13022           gnome/applet/nm-gconf-wso.c, gnome/applet/nm-gconf-wso.h,
13023           gnome/applet/other-network-dialog.c, src/nm-device.c, test/nm-tool.c,
13024           gnome/applet/passphrase-dialog.c, src/nm-device-802-11-wireless.c,
13025           gnome/applet/wireless-security-manager.c, src/nm-ip4-config.c,
13026           gnome/applet/wireless-security-option.c, src/nm-ap-security.c,
13027           gnome/applet/wso-wep-ascii.c, gnome/applet/wso-wep-hex.c,
13028           gnome/applet/wso-wep-passphrase.c, gnome/applet/wso-wpa-psk.c,
13029           libnm-util/dbus-helpers.c, src/NetworkManagerAP.c, src/nm-dbus-nmi.c,
13030           src/NetworkManagerSystem.c, src/nm-ap-security-wep.c,
13031           src/nm-device-802-11-wireless.h, test/libnm-util/test-ciphers.c,
13032           src/named-manager/nm-named-manager.c, test/test-common/test-common.c:
13033           Kill unused variables, labels, and static functions.  Don't pass
13034           string literals as the format string for printf-like functions.
13035
13036 2006-01-25  Dan Williams  <dcbw@redhat.com>
13037
13038         * gnome/applet/wireless-applet.glade
13039                 - Remove WPA2 Checkbox
13040
13041         * gnome/applet/wireless-security-manager.c
13042                 - (wsm_set_capabilities): split up sections for wpa and wpa2.
13043                         This means the Wireless Security menu now has two WPA options,
13044                         one for "WPA Personal" and one for "WPA2 Personal"
13045
13046         * gnome/applet/wso-wpa-psk.[ch]
13047                 - (wso_wpa_psk_new): remove stuff for WPA2 checkbox, and use
13048                         'wpa2' argument to determine WPA version to use
13049                 - (append_dbus_params_func): pass stored WPA version to cipher
13050                         rather than using the (removed) checkbox
13051
13052 2006-01-24  Robert Love  <rml@novell.com>
13053
13054         * src/dhcp-manager/nm-dhcp-manager.c: Null-out the original byte array
13055           before we g_strdup(), not the ultimate string.
13056
13057 2006-01-23  Dan Williams  <dcbw@redhat.com>
13058
13059         * src/NetworkManagerAP.[ch]
13060                 - (nm_ap_new_from_ap): copy original essid too
13061                 - (nm_ap_unref): free original essid
13062                 - (nm_ap_get_orig_essid): new function
13063                 - (nm_ap_set_essid): Convert essid to UTF-8 for display and dbus,
13064                         but keep original essid around too
13065
13066         * src/nm-device-802-11-wireless.c
13067                 - (supplicant_send_network_config): send wpa_supplicant the
13068                         _original_ essid, and not as a string, but in hex.  Should
13069                         allow us to connect to more APs that use wierd character
13070                         encodings for their essids
13071
13072         * utils/nm-utils.[ch]
13073                 - (nm_utils_essid_to_utf8): make a best-effort to convert the essid
13074                         to UTF-8.  If it's not already valid UTF-8, we check LANG and
13075                         use the current locale as a hint for what encoding the essid
13076                         might be in.  Obviously not 100% accurate, but the idea here is
13077                         that if a user's locale is ex. ja_JP, they are more likely than
13078                         not to be in Japan, where access points will likely be in some
13079                         Japanese encoding.
13080
13081 2006-01-23  Dan Williams  <dcbw@redhat.com>
13082
13083         * libnm-util/cipher-private.h
13084           libnm-util/cipher.c
13085           libnm-util/cipher.h
13086                 - (cipher_bin2hexstr, cipher_hexstr2bin): make public
13087
13088 2006-01-23  Robert Love  <rml@novell.com>
13089
13090         Patch by Timo Hoenig <thoenig@suse.de>:
13091         * dhcp-manager/nm-dhcp-manager.c, nm-device.c, nm-ip4-config.c,
13092           nm-ip4-config.h, NetworkManagerSystem.h: Save the hostname reported
13093           by DHCP and pass it to the backends, allowing distribution-specific
13094           behavior with respect to the DHCP-supplied hostname (if nothing else,
13095           some distributions might not want to set the hostname).
13096         * backends/NetworkManagerSuSE.c: Set the hostname if the variable
13097           DHCLIENT_SET_HOSTNAME is set to "yes" in /etc/sysconfig/network/dhcp.
13098           Also update our NIS behavior.
13099         * backends/NetworkManagerDebian.c, backends/NetworkManagerGentoo.c,
13100           backends/NetworkManagerRedHat.c, backends/NetworkManagerSlackware.c:
13101           Add stub functions.
13102
13103 2006-01-23  Robert Love  <rml@novell.com>
13104
13105         * Makefile.am, nm-applet.desktop: Add autostart .desktop file, now that
13106           gnome-session does autostart.  TODO: We need to install this to
13107           $prefix/share/autostart/.
13108
13109 2006-01-22  Dan Williams  <dcbw@redhat.com>
13110
13111         * src/NetworkManagerAP.[ch]
13112           src/nm-dbus-nmi.c
13113           src/nm-device-802-11-wireless.c         
13114                 - Make nm_ap_get_essid return "const char *"
13115
13116 2006-01-22  Dan Williams  <dcbw@redhat.com>
13117
13118         * src/NetworkManagerAP.[ch]
13119                 - (nm_ap_get_matched, nm_ap_set_matched): remove
13120
13121         * src/NetworkManagerAPList.[ch]
13122                 - (nm_ap_list_diff): removed
13123                 - (nm_ap_list_merge_scanned_ap): move AP dbus signal logic here,
13124                         deal with access points changing essids on us
13125
13126         * src/nm-device-802-11-wireless.c
13127                 - (add_new_ap_to_device_list): move AP dbus signal logic to
13128                         src/NetworkManagerAPList.c
13129                 - (real_can_interrupt_activation): new function; allow interruption
13130                         of device activation if we are waiting for a network key
13131
13132         * src/NetworkManagerPolicy.c
13133                 - (nm_policy_device_change_check): allow interruption of currently
13134                         activating devices if the device allows it.  Previous behavior
13135                         would refuse to activate a just-plugged wired device if a
13136                         wireless device was waiting for a key.
13137
13138         * src/nm-device.[ch]
13139                 - (nm_device_can_interrupt_activation): new function; ask devices
13140                         whether their activation can be interrupted
13141
13142 2006-01-20  Robert Love  <rml@novell.com>
13143
13144         * Makefile.am, configure.in: Add new man subdirectory.
13145         * man, man/NetworkManager.1.in, man/NetworkManagerDispatcher.1.in,
13146           man/Makefile.am: Add man pages for NetworkManager and its
13147           crime-solving bumbling buddy, NetworkManagerDispatcher.
13148         * man/.cvsignore: Add.
13149         * initscript/Debian/NetworkManager,
13150           initscript/Gentoo/NetworkManager.in,
13151           initscript/RedHat/NetworkManager.in,
13152           initscript/RedHat/NetworkManagerDispatcher.in,
13153           initscript/SUSE/networkmanager-dispatcher.in,
13154           initscript/SUSE/networkmanager.in: Update for /usr/sbin not /usr/bin.
13155
13156 2006-01-20  Robert Love  <rml@novell.com>
13157
13158         * src/NetworkManagerDbus.c: Fail if NM's DBUS service is already taken,
13159           instead of queuing.  This prevents the running of multiple NM
13160           daemons concurrently, which does not work whatsoever and results in
13161           neither daemon working correctly.  Also, we don't handle queuing and
13162           name-owner-changes, anyhow.
13163
13164 2006-01-20  Robert Love  <rml@novell.com>
13165
13166         * src/Makefile.am: Install the NetworkManager daemon to sbin, not bin.
13167         * dispatcher/Makefile.am: Install the NetworkManagerDispatcher daemon
13168           to sbin, not bin.
13169
13170 2006-01-19  Robert Love  <rml@novell.com>
13171
13172         * configure.in: Require hal 0.5.0 or later.
13173
13174 2006-01-18  Robert Love  <rml@novell.com>
13175
13176         * src/NetworkManager.c, src/NetworkManagerSystem.h, src/nm-device.c:
13177           Allow backends to flag a device (in whatever distro-dependent way
13178           they so desire) as disabled.  NM will ignore any such device.
13179         * src/backends/NetworkManagerDebian.c,
13180           src/backends/NetworkManagerRedHat.c,
13181           src/backends/NetworkManagerSlackware.c: Add stub function
13182           nm_system_device_get_disabled() that always returns FALSE (enabled).
13183         * src/backends/NetworkManagerSuSE.c: Add system_disabled field to the
13184           SUSE-specific configuration structure.  Fill it in from the
13185           NM_CONTROLLED variable in the system networking scripts.  If this var
13186           exists and is "no", we ignore the device.
13187
13188 2006-01-17  Robert Love  <rml@novell.com>
13189
13190         * configure.in: Remove 'no' language.  Replaced by 'nb', which is
13191           identical for NM.  For a full discussion, see the thread at
13192           http://mail.gnome.org/archives/gnome-i18n/2004-August/msg00006.html.
13193
13194 2006-01-17  Dan Williams  <dcbw@redhat.com>
13195
13196         * src/nm-device.c
13197                 - (nm_device_class_init): connect a default act_stage4_ip_config_timeout
13198                         function.  Fixes crash when wired DHCP fails.
13199
13200 2006-01-16  Robert Love  <rml@novell.com>
13201
13202         * src/Makefile.am: Don't install NMLoadModules
13203         * src/NMLoadModules, test/NMLoadModules: Move the NMLoadModules script
13204           from src/ to test/ as no one uses it anymore.  Note that I would be
13205           fine with removing it altogether.
13206
13207 2006-01-16  Robert Love  <rml@novell.com>
13208
13209         * gnome/applet/eggtrayicon.c, src/nm-device.c, src/nm-ap-security.c,
13210           gnome/applet/nm-gconf-wso-wep.c, gnome/applet/nm-gconf-wso-wpa-psk.c,
13211           gnome/applet/nm-gconf-wso.c, src/nm-device-802-3-ethernet.c,
13212           gnome/vpn-properties/nm-vpn-properties.c, src/nm-ap-security-wep.c,
13213           src/nm-ap-security-wpa-psk.c, src/nm-device-802-11-wireless.c,
13214           src/nm-netlink-monitor.c: Don't miss any initializers on structure
13215           declarations, ever.
13216         * gnome/applet/applet.c: Remove useless check (NMState is unsigned and
13217           NM_STATE_DISCONNECTED is zero).
13218
13219 2006-01-16  Robert Love  <rml@novell.com>
13220
13221         * src/nm-device-802-11-wireless.c: argv[3], not argv[4].  Fix
13222           uninitialized parameter and buffer overflow.  Novell #143496.
13223
13224 2006-01-16  Dan Williams  <dcbw@redhat.com>
13225
13226         Apply the PtP Address bits of a patch from Tim Niemueller
13227
13228         * src/nm-ip4-config.[ch]
13229                 - Add ip4_ptp_address member to object
13230                 - (nm_ip4_config_copy): copy ptp address too
13231                 - (nm_ip4_config_get_ptp_address, nm_ip4_config_set_ptp_address):
13232                         new functions
13233                 - (nm_ip4_config_to_rtnl_addr): use ptp address when asked to,
13234                         rather than local tunnel ip address
13235
13236         * src/vpn-manager/nm-vpn-service.c
13237                 - (print_vpn_config): update for PtP address
13238                 - (nm_vpn_service_stage4_ip_config_get): switch parsing to
13239                         DBusMessageIters in preparation for getting routes from the VPN
13240                         service daemons too
13241
13242         * vpn-daemons/openvpn/src/nm-openvpn-service-openvpn-helper.c
13243                 - (send_config_info): update for PtP address, clean up code
13244                 - (main): update for PtP address, clean up code, fix typo
13245
13246         * vpn-daemons/openvpn/src/nm-openvpn-service.c
13247                 - (nm_openvpn_dbus_process_helper_ip4_config): update for PtP address
13248
13249         * vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
13250                 - (pptp_ip_up): update for PtP address
13251
13252         * vpn-daemons/pptp/src/nm-pptp-service.c
13253                 - (nm_pptp_dbus_process_helper_ip4_config): update for PtP address
13254
13255         * vpn-daemons/vpnc/src/nm-vpnc-service.c
13256                 - (print_vpn_config): update for PtP address
13257                 - (nm_vpnc_dbus_process_helper_ip4_config): update for PtP address
13258
13259 2006-01-16  Dan Williams  <dcbw@redhat.com>
13260
13261         * gnome/applet/applet.c
13262                 - (nmwa_add_networks_helper): don't indicate an active network
13263                         if NM is disconnected or asleep
13264
13265 2006-01-16  Dan Williams  <dcbw@redhat.com>
13266
13267         * src/NetworkManagerPolicy.c
13268                 - (nm_policy_device_change_check): switch devices if we lose the link
13269                         on an ethernet device. 
13270
13271 2006-01-16  Dan Williams  <dcbw@redhat.com>
13272
13273         * gnome/applet/wso-wpa-psk-hex.[ch]
13274                 - Renamed -> wso-wpa-psk.[ch]
13275
13276         * gnome/applet/wso-wpa-psk.[ch]
13277                 - New files
13278
13279         * gnome/applet/wso-wpa-psk-passphrase.[ch]
13280                 - Removed, rolled into wso-wpa-psk.[ch]
13281
13282         * gnome/applet/Makefile.am
13283                 - Updated for above changes
13284
13285         * gnome/applet/wireless-applet.glade
13286                 - Consolidate WPA-PSK options into one notebook
13287                         widget, and make dialogs invisible by default
13288                         to fix screen oddities
13289
13290         * gnome/applet/wireless-security-manager.c
13291                 - (wsm_set_capabilities): create the new wpa-psk widget rather
13292                         than both the old hex & passphrase ones
13293
13294 2006-01-16  Dan Williams  <dcbw@redhat.com>
13295
13296         * gnome/applet/other-network-dialog.c
13297                 - (nmwa_ond_init): Change text to refer to "name" rather than "ESSID"
13298
13299 2006-01-16  Dan Williams  <dcbw@redhat.com>
13300
13301         * gnome/applet/applet.c
13302                 - (nmwa_show_vpn_login_banner_dialog, nmwa_show_vpn_failure_dialog,
13303                    nmwa_driver_notify, show_warning_dialog): fix up focus-stealing
13304                         prevention to realize window before trying to get server
13305                         time
13306
13307         * gnome/applet/other-network-dialog.c
13308                 - (nmwa_other_network_dialog_run): fix up focus-stealing
13309                         prevention to realize window before trying to get server
13310                         time
13311
13312         * gnome/applet/passphrase-dialog.c
13313                 - (nmi_passphrase_dialog_new): fix up focus-stealing
13314                         prevention to realize window before trying to get server
13315                         time
13316
13317 2006-01-16  Robert Love  <rml@novell.com>
13318
13319         Patch from Timo Hoenig  <thoenig@suse.de:
13320         * libnm-util/cipher-wep-ascii.h, libnm-util/cipher-wep-hex.h,
13321           libnm-util/cipher-wep-passphrase.h, libnm-util/cipher-wpa-psk-hex.h,
13322           libnm-util/cipher-wpa-psk-passphrase.h, libnm-util/cipher.h,
13323           libnm-util/dbus-helpers.h: add checks whether headers are used
13324           within a C++ build.
13325
13326 2006-01-16  Dan Williams  <dcbw@redhat.com>
13327
13328         * gnome/applet/wireless-security-option.c
13329                 - (wso_wpa_create_key_type_model): clarify AES-CCMP algorithm name
13330
13331 2006-01-16  Dan Williams  <dcbw@redhat.com>
13332
13333         * libnm-util/cipher-wpa-psk-passphrase.c
13334                 - (cipher_wpa_psk_passphrase_new): correct passphrase length, should
13335                         be 8 - 63 characters inclusive
13336
13337 2006-01-16  Dan Williams  <dcbw@redhat.com>
13338
13339         * src/nm-dbus-nm.c
13340                 - (nm_dbus_nm_sleep): bring device down after quick deactivation
13341
13342 2006-01-13  Robert Love  <rml@novell.com>
13343
13344         Patch by T Sureshkumar <tsureshkuman@novell.com>:
13345         * src/NetworkManagerSystem.c: Don't assert iface != NULL, allowing VPN
13346           modules that do not use an interface.
13347
13348 2006-01-13  Dan Williams  <dcbw@redhat.com>
13349
13350         * src/nm-device.c
13351           src/nm-device.h
13352                 - Allow subclasses to implement deactivate_quickly()
13353                 - (nm_device_deactivate_quickly): call subclass
13354                         deactivate_quickly() methods
13355                 - (nm_device_set_active_link): small cleanups, and don't
13356                         deactivate the device right away because we risk a deadlock
13357                         when called from device thread, waiting for the device
13358                         thread to cancel activation
13359
13360         * src/nm-device-802-11-wireless.c
13361                 - (real_deactivate_quickly): new function
13362                 - (nm_device_802_11_wireless_class_init): hook in real_deactivate_quickly
13363                 - (real_deactivate): move supplicant cleanup to real_deactivate_quickly
13364                         so that we kill the supplicant when we sleep too
13365                 - (supplicant_interface_init): work around naive naming attempts of
13366                         wpa_ctrl when naming sockets
13367
13368 2006-01-13  Dan Williams  <dcbw@redhat.com>
13369
13370         * src/nm-device-802-11-wireless.c
13371                 - (supplicant_cleanup): delete old device control sockets too
13372                 - (supplicant_get_device_socket_path): new function to consolidate
13373                         locations that need a path to a device's control socket
13374
13375 2006-01-12  Robert Love  <rml@novell.com>
13376
13377         * src/backends/NetworkManagerSuSE.c: Put the ppp device in the
13378           description so that the description is unique for each
13379           pair (device,provider).  Fixes Novell #142773.
13380
13381 2006-01-12  Dan Williams  <dcbw@redhat.com>
13382
13383         * src/nm-device-802-11-wireless.c
13384                 - (supplicant_exec): ensure GError is correctly initialized
13385                         Reported by Diego González (gnome.org #326708)
13386
13387 2006-01-11  Robert Love  <rml@novell.com>
13388
13389         * src/nm-device-802-3-ethernet.c: In case local copies of glibc do not
13390           define if_mii(), open code the same results, and do so without any
13391           type punning.
13392
13393 2006-01-11  Robert Love  <rml@novell.com>
13394
13395         * gnome/applet/wireless-security-manager.c: Fix crash by not asserting
13396           that wso_foo_new() returned non-NULL.  Instead, only append the new
13397           wso to wsm->options if the wso is non-NULL.  The crux is that we
13398           assume that the relevant key types are implied by WEP and WPA as
13399           appropriate.  To be sure, they should be, but we should not expect
13400           drivers to not be oozing piles of wolf fecal matter.
13401
13402 2006-01-11  Robert Love  <rml@novell.com>
13403
13404         * configure.in: Add the gcc flags '-Wshadow' and '-Wfloat-equal'.
13405         * gnome/applet/applet.c, gnome/vpn-properties/nm-vpn-properties.c,
13406           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
13407           src/NetworkManagerPolicy.c, src/NetworkManagerSystem.c,
13408           src/nm-dbus-device.c, src/nm-device-802-3-ethernet.c,
13409           src/nm-ip4-config.c, src/vpn-manager/nm-vpn-manager.c,
13410           test/nmtestdevices.c: Fix shadowed variable usage as appropriate.
13411         * src/nm-device-802-11-wireless.c: Fix floating point comparison by
13412           comparing values within DBL_EPSILON.  Also fix shadowed variable
13413           usage.
13414
13415 2006-01-11  Dan Williams  <dcbw@redhat.com>
13416
13417         Add options for WPA2 and WPA1+CCMP (AES).
13418
13419         * gnome/applet/wireless-applet.glade
13420                 - Add UI bits for WPA+CCMP
13421
13422         * gnome/applet/other-network-dialog.c
13423                 - (nmwa_ond_init): pass capabilities into the WirelessSecurityManager,
13424                         and don't allow creation of WPA2 Ad-Hoc networks since
13425                         wpa_supplicant doesn't support them
13426
13427         * gnome/applet/wireless-security-manager.c
13428                 - (wsm_set_capabilities): Add WPA2 options, and pass capability
13429                         on to the specific wireless security option being created
13430
13431         * gnome/applet/wireless-security-option.[ch]
13432                 - (wso_wpa_create_key_type_model): new utility function to create
13433                         the model required for WPA Key Type combo box
13434
13435         * gnome/applet/wso-private.h
13436           gnome/applet/wireless-security-option.h
13437                 - Move private function prototypes into wso-private.h
13438
13439         * gnome/applet/wso-wpa-psk-hex.[ch]
13440           gnome/applet/wso-wpa-psk-passphrase.[ch]
13441                 - (append_dbus_params_func): get WPA version from checkbox and pass
13442                         it to the dbus serialization helper
13443                 - (key_type_combo_changed_cb): Set the cipher's WE Cipher when the
13444                         key type combo changes
13445                 - (wso_wpa_psk_hex_new): set up the key type combo with the correct
13446                         model and options
13447
13448         * libnm-util/cipher-wpa-psk-hex.c
13449           libnm-util/cipher-wpa-psk-passphrase.c
13450                 - (cipher_wpa_psk_hex_set_we_cipher, cipher_wpa_psk_passphrase_set_we_cipher):
13451                         new function; allow the cipher to be changed after object creation
13452
13453         * src/nm-ap-security-wpa-psk.c
13454                 - (set_description): Do WPA2 descriptions too
13455
13456         * src/nm-ap-security.c
13457                 - (nm_ap_security_new_from_ap): allow CCMP with WPA1 too
13458
13459 2006-01-11  Robert Love  <rml@novell.com>
13460
13461         * src/nm-device-802-3-ethernet.c: Use the if_mii() inline function that
13462           is defined in <linux/mii.h> to return the mii_ioctl_data structure
13463           from the ifreq structure in lieu of an open coded solution.  Removes
13464           a life-threatening type-punning.
13465         * configure.in: Remove '-Wno-strict-aliasing' as we no longer pun any
13466           types, ever, whatsoever, baby.
13467
13468 2006-01-11  Robert Love  <rml@novell.com>
13469
13470         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet-dbus.c,
13471           gnome/applet/applet.c, gnome/applet/applet.h: Consolidating
13472           assignments to applet->nm_state into a new nmwa_set_state() function
13473           for both cleanliness and to help debugging.
13474
13475 2006-01-10  Robert Love  <rml@novell.com>
13476
13477         * src/autoip.c: Fix FIXME.  In performing the link-local zeroconf IP
13478           assignment dance, we want to sleep between PROBE_MIN and PROBE_MAX
13479           seconds, exclusive.  That is, we want to sleep x seconds such that
13480           1 < x < 2.
13481
13482 2006-01-10  Robert Love  <rml@novell.com>
13483
13484         * gnome/applet/applet-dbus-info.c: Remove FIXME, we do not have to free
13485           the attr fields according to the example in the email available at
13486           mail.gnome.org/archives/desktop-devel-list/2004-May/msg00230.html.
13487           Conversely, we do have to free 'name', so we do so, fixing a leak.
13488
13489 2006-01-10  Robert Love  <rml@novell.com>
13490
13491         * src/nm-device-802-11-wireless.c, src/nm-device-802-3-ethernet.c: Make
13492           sure that we close the socket!
13493
13494 2006-01-10  Robert Love  <rml@novell.com>
13495
13496         * src/nm-device-802-11-wireless.c, src/nm-device-802-11-wireless.h,
13497           src/nm-device-802-3-ethernet.c, src/nm-device-802-3-ethernet.h,
13498           src/nm-device.c: Fix a FIXME!  Reimplement the function
13499           nm_device_update_hw_address() in device subclass variants,
13500           nm_device_802_3_ethernet_set_address() and
13501           nm_device_802_11_wireless_set_address(), hook them up, and use them.
13502           This fixes the existing bug where MAC addresses are all zeros.
13503
13504 2006-01-10  Robert Love  <rml@novell.com>
13505
13506         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet-dbus.h,
13507           gnome/applet/applet.c, gnome/applet/applet.h: Add 'Enable Networking'
13508           option to give users ability to globally disconnect and put NM to
13509           sleep.  This is useful as a 'lockdown mode' for flying, security, and
13510           clean disconnect.
13511
13512 2006-01-09  Robert Love  <rml@novell.com>
13513
13514         * src/nm-device-802-3-ethernet.h:  The kernel headers <linux/mii.h> and
13515           <linux/ethtool.h> leak the kernel-only types u16, u32, et al.
13516           User-space does not supply these types, so we have to define them
13517           ourselves.  The relevant kernel maintainer refused to accept a patch
13518           switching these headers to the proper C99 types.
13519
13520 2006-01-09  Dan Williams  <dcbw@redhat.com>
13521
13522         Apply Robert's 'tray icon redo' patch with fixes
13523         * gnome/applet/applet.c
13524           gnome/applet/applet.h
13525                 - Instead of using a menu bar + menu item, simulate menu
13526                         behavior using a popup menu.  Highlight the area around
13527                         the icon more like a menu too, by playing with the
13528                         applet's size requisition
13529
13530 2006-01-09  Timo Hoenig   <thoenig@suse.de>
13531         * libnm-util/dbus-helpers.c
13532           libnm-util/dbus-helpers.h
13533                 - (nmu_create_dbus_error_message): rename parameter 'namespace'
13534                         to 'exception_namespace' (:namespace is a keyword in
13535                         C++)
13536
13537 2006-01-09  Dan Williams  <dcbw@redhat.com>
13538
13539         * src/NetworkManagerPolicy.c
13540                 - (nm_policy_device_change_check): don't autoswitch away from
13541                         Ad-Hoc networks, since there's really no concept of
13542                         "link"
13543
13544         * src/nm-dbus-nm.c
13545                 - (nm_dbus_nm_create_wireless_network): mark created networks
13546                         as Ad-Hoc networks
13547
13548         * src/nm-device-802-11-wireless.c
13549                 - (real_activation_success_handler): add user-created Ad-Hoc
13550                         networks to the device's scan list
13551
13552 2006-01-08  Dan Williams  <dcbw@redhat.com>
13553
13554         We now require a patch for wpa_supplicant to support Ad-Hoc
13555         networks:
13556           http://people.redhat.com/dcbw/wpa_supplicant-ctrl-iface-ap-scan.patch
13557
13558         * src/nm-device-802-11-wireless.c
13559                 - (supplicant_send_network_config): turn off wpa_supplicant's
13560                         scanning.  Fixes Ad-Hoc networks.
13561
13562 2006-01-08  Dan Williams  <dcbw@redhat.com>
13563
13564         * src/nm-ap-security.c
13565           src/nm-ap-security.h
13566                 - Add a user_created argument to the write_supplicant_config
13567                         functions
13568
13569         * src/nm-ap-security-wep.c
13570           src/nm-ap-security-wpa-psk.c
13571           src/nm-device-802-11-wireless.c
13572                 - Make Ad-Hoc mode somewhat work, at least write the
13573                         correct options to wpa_supplicant
13574
13575 2006-01-08  Dan Williams  <dcbw@redhat.com>
13576
13577         * src/nm-device-802-11-wireless.c
13578                 - Remove unused code from the old device activation path
13579
13580 2006-01-08  Dan Williams  <dcbw@redhat.com>
13581
13582         * libnm-util/dbus-helpers.c
13583                 - (nmu_security_serialize_wpa_psk): pass a blank key through
13584                         dbus when key == NULL
13585
13586 2006-01-08  Dan Williams  <dcbw@redhat.com>
13587
13588         * gnome/applet/nm-gconf-wso-wpa-psk.c
13589                 - (nm_gconf_wso_wpa_psk_new_deserialize_dbus): feed
13590                         correct arguments to nmu_security_deserialize_wpa_psk()
13591
13592         * src/nm-ap-security-wpa-psk.c
13593                 - (nm_ap_security_wpa_psk_new_deserialize): feed correct
13594                         arguments to nmu_security_deserialize_wpa_psk()
13595
13596 2006-01-08  Dan Williams  <dcbw@redhat.com>
13597
13598         * gnome/applet/wso-wpa-psk-hex.c
13599           gnome/applet/wso-wpa-psk-passphrase.c
13600                 - Hook up the append_dbus_params_func() function
13601
13602 2006-01-08  Dan Williams  <dcbw@redhat.com>
13603
13604         * src/nm-device-802-11-wireless.c
13605                 - (get_wireless_capabilities): correctly detect driver WPA
13606                         capabilities
13607
13608 2006-01-08  Dan Williams  <dcbw@redhat.com>
13609
13610         * gnome/applet/Makefile.am
13611           gnome/applet/wso-wpa-psk-hex.c
13612           gnome/applet/wso-wpa-psk-hex.h
13613                 - New files, implement WPA-PSK Hex key input
13614
13615         * gnome/applet/wireless-applet.glade
13616                 - Change existing wpa-psk stuff to wpa-psk-hex
13617                 - Add new widgets for wpa-psk-passphrase
13618
13619         * gnome/applet/wireless-security-manager.c
13620                 - (wsm_set_capabilities): enable WPA options
13621
13622         * gnome/applet/wso-wpa-psk-passphrase.c
13623                 - (wso_wpa_psk_passphrase_new): use correct glade widgets
13624                         for WPA-PSK passphrase
13625
13626 2006-01-08  Dan Williams  <dcbw@redhat.com>
13627
13628         * include/NetworkManager.h
13629                 - Add NMI_DBUS_USER_KEY_CANCELED_ERROR as a constant for
13630                         applet/info-daemons
13631
13632         * gnome/applet/passphrase-dialog.c
13633                 - Use the constant.  Fixes a bug where the arguments to
13634                         dbus_message_new_error() were incorrect
13635
13636         * src/nm-dbus-nmi.c
13637                 - Use the constant
13638
13639 2006-01-07  Dan Williams  <dcbw@redhat.com>
13640
13641         * src/nm-device-802-11-wireless.c
13642                 - Add a link timeout so we allow the supplicant time to
13643                         reassociate if it can, before we deactivate the card
13644                 - Fix up link status and link updating so things work better
13645
13646 2006-01-07  Dan Williams  <dcbw@redhat.com>
13647
13648         * src/nm-device-802-11-wireless.c
13649                 - Switch over to using wpa_supplicant
13650                 - Add a timeout of 10s for association of the supplicant
13651                 - Start the monitor callback of the supplicant
13652
13653 2006-01-07  Dan Williams  <dcbw@redhat.com>
13654
13655         * src/NetworkManagerUtils.c
13656                 - (nm_utils_supplicant_request,
13657                   nm_utils_supplicant_request_with_check):
13658                         pass correct buffer length to wpa_ctrl_request()
13659
13660 2006-01-07  Dan Williams  <dcbw@redhat.com>
13661
13662         * src/nm-device-private.h
13663           src/nm-device.c
13664                 - (nm_device_activate_schedule_stage3_ip_config_start): make
13665                         this function available to subclasses
13666
13667 2006-01-06  Robert Love  <rml@novell.com>
13668
13669         * src/NetworkManagerPolicy.c: Always prefer wired to wireless, as the
13670           user plugging in a network cable signals their preference for to
13671           switch, unless the user explicitly selected a wireless network and
13672           therefore signaled their preference for said wireless network over
13673           wired.  In other words, do exactly what makes sense.
13674
13675 2006-01-06  Robert Love  <rml@novell.com>
13676
13677         * src/NetworkManagerDevice.c, src/NetworkManagerDevice.h,
13678           src/NetworkManagerDevicePrivate.h, src/NetworkManagerWireless.c,
13679           src/NetworkManagerWireless.h: Remove, no longer used and they keep
13680           showing up in my greps.
13681
13682 2006-01-06  Robert Love  <rml@novell.com>
13683
13684         * gnome/applet/applet-dbus-devices.c,
13685           gnome/applet/other-network-dialog.c, gnome/applet/wso-none.c,
13686           libnm-util/dbus-helpers.c, libnm-util/dbus-helpers.h,
13687           src/nm-dbus-nm.c: Fix several issues.  'Connect to Other' and 'Create
13688           New Network' both failed in the non-encrypted case because we were
13689           not appending the security options to the DBUS message.  And
13690           'Connect to Other' was also failing in the encrypted case because
13691           we were not incrementing to the next DBUS parameter.  All fixed.
13692           Thanks to dcdw for some debugging help.
13693
13694 2006-01-06  Robert Love  <rml@novell.com>
13695
13696         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
13697           gnome/applet/applet-dbus-devices.h, src/nm-dbus-nm.c: Remove global
13698           hangup code and add per-device hangup.  Tie last commit into the
13699           GNOME applet.  TODO:  Save, understand, and respond to the state of
13700           each dialup device.
13701
13702 2006-01-06  Robert Love  <rml@novell.com>
13703
13704         Patch by Timo Hoenig <thoenig@suse.de>:
13705         * src/NetworkManagerSystem.h, src/nm-dbus-nm.c: Add interfaces to
13706           hangup specific dialup devices.
13707         * src/backends/NetworkManagerDebian.c,
13708           src/backends/NetworkManagerGentoo.c,
13709           src/backends/NetworkManagerRedHat.c,
13710           src/backends/NetworkManagerSlackware.c: Add stub backend.
13711         * src/backends/NetworkManagerRedHat.c,
13712           src/backends/NetworkManagerSuSE.c: Add specific backend interface to
13713           hangup specific dialup devices.
13714
13715 2006-01-04  Robert Love  <rml@novell.com>
13716
13717         * gnome/applet/applet-dbus-devices.c,
13718           gnome/applet/applet-dbus-devices.h, gnome/applet/applet.c,
13719           src/nm-dbus-nm.c: Expose a menu item for hanging up active dialup
13720           connections.
13721
13722 2006-01-04  Dan Williams  <dcbw@redhat.com>
13723
13724         First dump of wpa_supplicant-related code.  It's not hooked up to
13725         anything yet though.  Thanks to Kay Sievers for
13726         wpa_supplicant_wrapper.c, which formed the basis for this work,
13727         and to Jouni Malinen for writing wpa_ctrl.c and wpa_ctrl.h.
13728
13729         * src/Makefile.am
13730           src/wpa_ctrl.[ch]
13731                 - Add wpa_ctrl stuff from wpa_supplicant so we can talk to it
13732
13733         * src/NetworkManagerUtils.[ch]
13734                 - (nm_utils_supplicant_request, nm_utils_supplicant_request_with_check):
13735                         Add convenience functions for talking to wpa_supplicant
13736
13737         * src/nm-ap-security.[ch]
13738           src/nm-ap-security-wep.c
13739           src/nm-ap-security-wpa-psk.[ch]
13740                 - Update and implement real_write_supplicant_config functions
13741                         in all security types
13742                 - (nm_ap_security_wpa_psk_new_from_ap): implement in
13743                         nm-ap-security-wpa-psk.c
13744
13745         * src/nm-device-802-11-wireless.c
13746                 - (supplicant_cleanup, supplicant_watch_cb, supplicant_monitor_status_cb,
13747                    wpa_supplicant_start, wpa_supplicant_interface_init,
13748                    wpa_supplicant_send_network_config): add functions to talk to
13749                         wpa_supplicant and write network config to it
13750
13751 2006-01-04  Robert Love  <rml@novell.com>
13752
13753         * src/NetworkManagerDialup.h: add 'type' field and NM_DIALUP_TYPE
13754           values so that distribution-backends can differentiate between the
13755           various types (modem, ISDN, et cetera) of dialup device that they
13756           support.
13757         * src/backends/NetworkManagerSuSE.c: perform isdnctrl on interface, as
13758           needed.
13759
13760 2006-01-03  Dan Williams  <dcbw@redhat.com>
13761
13762         * src/NetworkManagerPolicy.c
13763           src/nm-device.[ch]
13764           src/nm-device-802-11-wireless.c
13765                 - Move wireless-specific activation failure and success code
13766                         into wireless device class
13767
13768 2006-01-03  Robert Love  <rml@novell.com>
13769
13770         Patch by Preggna S:
13771         * src/NetworkManagerSystem.c, src/vpn-manager/nm-vpn-connection.c:
13772           IPsec does not require that a VPN client be bound to an interface,
13773           due to the use of the in-kernel IPSec bits.  So make the tunnel
13774           device optional.
13775
13776 2006-01-03  Dan Williams  <dcbw@redhat.com>
13777
13778         * src/NetworkManagerAP.c
13779                 - (nm_ap_add_capabilities_from_ie): presume no WEP unless
13780                         the WPA IE specifies that WEP is supported
13781
13782         * src/nm-device-802-11-wireless.c
13783                 - (process_scan_results): don't mark an AP as supporting WEP
13784                         if there's already other encryption capability info
13785
13786 2006-01-03  Dan Williams  <dcbw@redhat.com>
13787
13788         * src/dhcp-manager/nm-dhcp-manager.c
13789                 - Recognize activation cancellation when waiting for DHCP
13790                         configuration from dhcdbd
13791                 - Ignore non-dhcdbd messages
13792
13793         * src/nm-device.c
13794                 - (real_act_stage3_ip_config_start): return to correct behavior
13795                         of letting the dhcp-manager notify us of failure or
13796                         success rather than incorrectly doing that ourselves
13797                 - (nm_device_activate_stage4_ip_config_get): deal with
13798                         activation cancellation a bit earlier
13799
13800 2006-01-03  Dan Williams  <dcbw@redhat.com>
13801
13802         * src/nm-device-802-11-wireless.c
13803           src/nm-device.[ch]
13804                 - Add hooks to subclasses for stage3_ip_config_start and
13805                         stage4_ip_config_timeout
13806
13807         * src/nm-device-802-3-ethernet.c
13808                 - (real_get_generic_capabilities): make devices NM-supported
13809                         by default
13810
13811 2006-01-03  Robert Love  <rml@novell.com>
13812
13813         * src/backends/NetworkManagerSuSE.c: update to newer API (no more
13814           nm_device_get_hw_address); use inet_aton in lieu of inet_addr as the
13815           latter cannot differentiate between error and the address -1; misc.
13816           clean up.
13817
13818 2006-01-03  Dan Williams  <dcbw@redhat.com>
13819
13820         * src/NetworkManager.c
13821                 - Move link-checking/probing into the device subclasses
13822                         themselves
13823
13824         * src/nm-device.[ch]
13825           src/nm-device-802-11-wireless.c
13826           src/nm-device-802-3-ethernet.c
13827                 - Do periodic link checking in device subclasses rather
13828                         than being triggered from NetworkManager.c
13829                 - discover_wireless_capabilities -> get_wireless_capabilities
13830                 - discover_generic_capabilities -> get_generic_capabilities
13831                 - Device subclass activation routines now return a value of type
13832                         NMActStageReturn to indicate what step to perform next
13833                 - Devices now override stage4_get_ip4_config if they choose
13834
13835 2006-01-01  Dan Williams  <dcbw@redhat.com>
13836
13837         * src/nm-device-802-11-wireless.c
13838                 - (real_init): don't chain up to parent init because we don't
13839                         need to do that anymore
13840
13841         * src/nm-device.c
13842                 - (discover_device_type): fix arguments to ioctl() to correctly
13843                         pass interface name
13844                 - (nm_device_new): consolidate generic device initialization into
13845                         nm_device_new()
13846                 - (real_init): remove, consolidated to nm_device_new()
13847                 - (nm_device_deactivate, real_deactivate): consolidate
13848
13849 2006-01-01  Dan Williams  <dcbw@redhat.com>
13850
13851         * src/nm-activation-request.c
13852                 - Change dhcp_state member of the NMActRequest structure
13853                         from guint8 to guint32
13854
13855         * src/dhcp-manager/nm-dhcp-manager.[ch]
13856                 - (nm_dhcp_manager_get_state_for_device): return guint32 rather
13857                         than guint8 to match the dbus argument.  Turns out we were
13858                         overwriting memory since we were passing in only a guint8
13859
13860 2005-12-31  Dan Williams  <dcbw@redhat.com>
13861
13862         * refactor NMDevice into a GObject-based framework with separate
13863                 objects for wired and wireless.  The following files are no
13864                 longer used but should stick around for a bit so we don't
13865                 loose code through the cracks:
13866                         NetworkManagerDevice.c
13867                         NetworkManagerDevice.h
13868                         NetworkManagerWireless.c
13869                         NetworkManagerWireless.h
13870
13871         The intent here is to allow each device type to manage its own
13872         connection & activation life-cycle, ie to allow wireless devices
13873         to interface with wpa_supplicant, etc.  There's a fair bit of
13874         encapsulation breakage right now that should gradually get pulled
13875         back into each device, along with things like periodic property
13876         updates and link probing.
13877
13878 2005-12-29  Dan Williams  <dcbw@redhat.com>
13879
13880         * include/NetworkManager.h
13881                 - Add NM_802_11_CAP_PROTO_NONE since we need to recognize
13882                         between networks that don't have any encryption at all
13883
13884 2005-12-29  Dan Williams  <dcbw@redhat.com>
13885
13886         * test/test-common.c
13887           test/test-common.h
13888           test/Makefile.am
13889                 - Move to a test-common subdirectory
13890
13891         * test/libnm-util/test-ciphers.c
13892                 - Move test data to test-inputs.h
13893                 - Test WPA ciphers too
13894
13895         * test/libnm-util/test-dbus-helpers.c
13896                 - Test serialization/deserialization of ciphers
13897
13898 2005-12-29  Dan Williams  <dcbw@redhat.com>
13899
13900         * gnome/applet/applet-dbus-devices.c
13901                 - Replace 'enc' parameter with 'capabilities' for wireless networks
13902                         in dbus calls to NM
13903                 - Set capabilities on WirelessNetwork objects
13904                 - Receive and save type-specific device capabilities too
13905
13906         * gnome/applet/applet-dbus-info.c
13907           gnome/applet/applet-dbus.c
13908                 - Passphrase dialog no longer a singleton; new instance gets created
13909                         on each request.  Updates to deal with that.
13910
13911         * gnome/applet/applet.c
13912                 - (nmwa_has_encrypted_networks_helper): use AP capabilities rather
13913                         than single 'encrypted' flag
13914                 - (nmwa_menu_add_vpn_menu): if NM isn't connected, disable any VPN
13915                         menu items
13916                 - Passphrase dialog updates per above
13917
13918         * gnome/applet/menu-items.c
13919                 - (network_menu_item_update): use AP capabilities to determine
13920                         encryption
13921
13922         * gnome/applet/nm-device.[ch]
13923                 - Add accessors for type-specific device capabilities
13924
13925         * gnome/applet/other-network-dialog.c
13926                 - Rework to respect device capabilities.  i.e., if the device doesn't
13927                         support WPA, remove that option from the security dropdown
13928
13929         * gnome/applet/passphrase-dialog.c
13930                 - Massive rework so that a new instance is created each time
13931                         it's used, to support wireless network capabilities
13932
13933         * gnome/applet/wireless-network.[ch]
13934                 - Add accessors and members for wireless network capabilities
13935
13936         * gnome/applet/wireless-security-manager.[ch]
13937                 - (wsm_set_capabilities): called after creation to set which
13938                         security options get shown to the user
13939
13940 2005-12-29  Dan Williams  <dcbw@redhat.com>
13941
13942         * libnm-util/cipher-wpa-psk-passphrase.c
13943                 - (cipher_wpa_psk_passphrase_hash_func): return key as hex string
13944                         like other ciphers
13945
13946 2005-12-23  Dan Williams  <dcbw@redhat.com>
13947
13948         * gnome/applet/applet-dbus-info.c
13949                 - (nmi_dbus_get_key_for_network): if there's no entry in
13950                         GConf for a network, assume we want a new key
13951                 - (nmi_save_network_info): serialize wireless security info
13952                         into GConf so its saved
13953
13954         * src/nm-dbus-nm.c
13955                 - Fix warning as we may not be passed security info when
13956                         connecting to a wireless network
13957
13958 2005-12-23  Dan Williams  <dcbw@redhat.com>
13959
13960         * gnome/applet/applet-compat.c
13961                 - Fix bugs in GConf entry conversion
13962
13963         * gnome/applet/applet-dbus-info.c
13964                 - (nmi_dbus_get_network_properties): handle case of the BSSID
13965                         list being zero-length
13966
13967         * libnm-util/cipher-*
13968           libnm-util/dbus-helpers.c
13969                 - All ciphers must now return hashed keys as UTF-8 valid
13970                         hexadecimal strings, ie "8f3dae4023".  They are pushed
13971                         through dbus as strings too.
13972                 - Consolidate various functions that do bin->hex and hex->bin
13973                         conversion into cipher.c
13974
13975         * src/nm-ap-security-wep.c
13976           src/nm-ap-security-wpa-psk.c
13977                 - Handle NULL keys since we may not know keys right away
13978
13979         * src/nm-dbus-nmi.c
13980                 - (nm_dbus_get_network_data_cb): actually advance to the start
13981                         of the wireless security info before we try to deserialize it
13982
13983         * libnm-util/test-ciphers.c
13984                 - Update cipher tests for the change to UTF-8 hexadecimal strings
13985
13986 2005-12-22  Dan Williams  <dcbw@redhat.com>
13987
13988         * gnome/applet/applet-compat.[ch]
13989                 - Convert old-format GConf and keyring entries
13990                         when the applet starts up.
13991
13992         * gnome/applet/applet.c
13993                 - (nmwa_get_instance): Call the conversion function
13994                         on startup before dbus is initialized
13995
13996 2005-12-22  Dan Williams  <dcbw@redhat.com>
13997
13998         * gnome/applet/applet-dbus-info.c
13999                 - Remove nmi_dbus_create_error_message() in favor of
14000                         nmu_create_dbus_error_message()
14001                 - (nmi_dbus_get_network_properties): Error message cleanups
14002                 - (nmi_dbus_get_network_properties): BSSIDs are now in the 'bssids'
14003                         gconf key rather than 'addresses', since they really are BSSIDs
14004                 - (nmi_dbus_get_network_properties): Dispose of the security
14005                         object when we're done with it
14006
14007 2005-12-21  Dan Williams  <dcbw@redhat.com>
14008
14009         * Consolidate the info-daemon's "updateNetworkInfo" and
14010                 "addNetworkAddress" calls into just "updateNetworkInfo"
14011
14012 2005-12-21  Dan Williams  <dcbw@redhat.com>
14013
14014         * Make connection after key retrieval work again
14015
14016 2005-12-21  Dan Williams  <dcbw@redhat.com>
14017
14018         * gnome/applet/nm-gconf-wso*
14019                 - Make the serialize functions return gboolean
14020                         rather than int
14021
14022         * gnome/applet/nm-gconf-wso.c
14023                 - (nm_gconf_wso_dispose, nm_gconf_wso_finalize): fix up
14024                         parent class handling so we don't segfault
14025
14026         * src/NetworkManagerAP.[ch]
14027                 - (nm_ap_get_capabilities): new function, return capabilities
14028                         now that something can use them
14029                 - (nm_ap_set_encrypted): assume that an access point supports
14030                         both WEP104 and WEP40 if its set encrypted.  FIXME: can
14031                         we even tell whether it just supports WEP40?
14032
14033         * src/NetworkManagerDevice.c
14034                 - (ap_need_key): resurrect and update for the New World Order
14035                 - (nm_device_wireless_get_activation_ap): if we're not given
14036                         security info to use, create some based on access point
14037                         capabilities
14038
14039         * src/nm-ap-security-wep.c
14040                 - (nm_ap_security_wep_new_from_ap): create a new object
14041                         based on a certain access point's capabilities
14042
14043         * src/nm-ap-security.c
14044                 - (nm_ap_security_new_from_ap): delegate creation of a new
14045                         object based on access point capabilities to a subclass
14046                 - (nm_ap_security_copy_properties): don't segfault if we
14047                         don't have a key yet
14048
14049         * src/nm-dbus-nm.c
14050                 - (nm_dbus_nm_set_active_device): provide more informative
14051                         output when errors occur.  Also construct security info
14052                         for a given access point if we weren't given any
14053
14054 2005-12-21  Žygimantas Beručka  <zygis@gnome.org>
14055
14056         * configure.in: Added Lithuanian to ALL_LINGUAS.
14057
14058 2005-12-21  Dan Williams  <dcbw@redhat.com>
14059
14060         * test/libnm-util
14061                 - Add some testcases for WEP ciphers
14062
14063 2005-12-17  Dan Williams  <dcbw@redhat.com>
14064
14065         * Fix bugs
14066
14067 2005-12-17  Dan Williams  <dcbw@redhat.com>
14068
14069         * include/NetworkManager.h
14070                 - Finally kill NMEncKeyType
14071
14072         * gnome/applet/applet-dbus-info.c
14073                 - (nmi_save_network_info): convert to NMGConfWSO
14074
14075         * gnome/applet/nm-gconf-wso-*.c
14076                 - Implement gconf serialization functions
14077
14078         * src/NetworkManagerPolicy.c
14079                 - (nm_policy_activation_finish): fix up meaning of
14080                         automatic/user_requested
14081
14082 2005-12-17  Dan Williams  <dcbw@redhat.com>
14083
14084         * gnome/applet/*
14085                 - More applet cleanups
14086                 - Use the dbus-method-dispatcher
14087
14088         * libnm-util/dbus-method-dispatcher.[ch]
14089                 - Generalize the implementation from NM in
14090                         NetworkManagerUtils.c
14091
14092 2005-12-16  Dan Williams  <dcbw@redhat.com>
14093
14094         * gnome/applet/*
14095                 - Fix up the passphrase dialog to use all the
14096                         WirelessSecurityOption stuff (untested)
14097
14098 2005-12-16  Dan Williams  <dcbw@redhat.com>
14099
14100         * Move nm_gconf_get_*_helper() functions to separate files,
14101                 gconf-helpers.c & gconf-helpers.h
14102
14103         * New NMGConfWSO objects for managing the gconf side of things.
14104                 Eventually these should be merged with the
14105                 WirelessSecurityOption objects and a common base (that can
14106                 serialize/deserialize from dbus & gconf) should be
14107                 refactored out, but for now they are separate.
14108
14109 2005-12-16  Robert Love  <rml@novell.com>
14110
14111         * src/backends/NetworkManagerSuSE.c: Do not invoke ypbind or autofs
14112           binaries unless they exist (nm_spawn_process() emits a warning if
14113           asked to spawn a non-existant process).
14114
14115 2005-12-16  Dan Williams  <dcbw@redhat.com>
14116
14117         * gnome/applet/applet-dbus-info.c
14118                 - Clean up lots of gconf-related code
14119
14120 2005-12-16  Robert Love  <rml@novell.com>
14121
14122         * Makefile.am: Build fix: Reorder 'SUBDIRS' so our deps are right.
14123
14124 2005-12-16  Dan Williams  <dcbw@redhat.com>
14125
14126         * nm_device_set_enc_key -> nm_device_set_wep_enc_key
14127
14128         * Fix up NM -> NMI get-user-key dbus calls in NM (applet
14129                 bits still to be done)
14130
14131 2005-12-16  Dan Williams  <dcbw@redhat.com>
14132
14133         * Finally move info-daemon related stuff out of
14134                 NetworkManagerDbus.c to nm-dbus-nmi.c
14135
14136 2005-12-16  Dan Williams  <dcbw@redhat.com>
14137
14138         * Kill auth_method for access points, since that's now done
14139                 by NMAPSecurity objects
14140
14141         * Add a copy-constructor of sorts to NMAPSecurity
14142                 (how do you do this properly in glib???)
14143
14144 2005-12-15  Dan Williams  <dcbw@redhat.com>
14145
14146         * Exorcise encryption key hashing on APs
14147         * Use libnm-util's serialization/deserialization in both the
14148                 applet and NM
14149         * Random other stuff
14150
14151 2005-12-15  Robert Love  <rml@novell.com>
14152
14153         * gnome/applet/menu-items.c: A new icon, "network-wireless-encrypted"
14154           is being added to the icon naming spec, so let's use that (Tango CVS
14155           has the icon).  Because it is new, however, we fall back to the
14156           current "gnome-lockscreen" if the new icon is not around, thus
14157           behavior is the same.
14158         * gnome/applet/applet.c: Remove setup_stock().  We do not need the
14159           factory junk.
14160
14161 2005-12-15  Robert Love  <rml@novell.com>
14162
14163         * src/gnome/applet.c: Don't show the 'Help' menu item until we have,
14164           well, help to give.  Couple other misc. bits.
14165
14166 2005-12-15  Dan Williams  <dcbw@redhat.com>
14167
14168         * libnm-util/dbus-helpers.[ch]
14169                 - Make this the one-stop-shop for serializing/deserializing
14170                         AP & connection security settings over dbus.  Both NM
14171                         and applets should use this to ensure consistent dbus
14172                         API going forwared.
14173
14174 2005-12-15  Robert Love  <rml@novell.com>
14175
14176         Patch by Timo Hoenig  <thoenig@suse.de>:
14177         * src/NetworkManagerDbus.c
14178                 - (nm_dbus_signal_filter) return DBUS_HANDLER_RESULT_HANDLED
14179                         if HAL jumps off the system bus.  Otherwise libdbus
14180                         (dbus_connection_dispatch) will try to run the filter
14181                         function of our libhal context which is already freed.
14182
14183 2005-12-15  Alexander Shopov  <ash@contact.bg>
14184
14185         * configure.in: Added "bg" (Bulgarian) to ALL_LINGUAS
14186
14187 2005-12-14  Dan Williams  <dcbw@redhat.com>
14188
14189         * include/NetworkManager.h
14190           src/NetworkManagerWireless.c
14191                 - Rearrange 802.11 wireless-specific capabilities again
14192
14193         * src/Makefile.am
14194                 - Forgot to add wpa.c/wpa.h to the makefiles
14195
14196         * src/NetworkManagerAP.[ch]
14197                 - Implement access point capabilities and parse the
14198                         WPA/RSN IEs into the capability bitfield
14199                 - Switch the "encrypted" attribute to utilize the bitfield
14200                         and capabilities rather than being independent
14201
14202         * src/NetworkManagerDevice.c
14203                 - (nm_device_wireless_get_activation_ap): break it horribly
14204                         until we can push NMAPSecurity objects into access point
14205                         objects and through the activation chain
14206                 - Stuff WPA & RSN IEs into AP capabilities
14207
14208         * src/nm-dbus-nm.c
14209                 - Take a shot at actually making setActiveDevice work
14210
14211         * src/wpa.[ch]
14212                 - Make the API a bit saner
14213
14214 2005-12-14  Dan Williams  <dcbw@redhat.com>
14215
14216         * include/NetworkManager.h
14217                 - Add 802.11-specific capability for 802.1x key
14218                         management
14219
14220         * src/wpa.[ch]
14221                 - Pull in WPA IE and RSN IE parsing code from
14222                         wpa_supplicant so we can determine access point
14223                         capabilities
14224                 - Move WPA-related constants here from NetworkManagerAP.h
14225                         and NetworkManagerDevice.c
14226
14227         * src/NetworkManagerDevice.c
14228           src/NetworkManagerAP.[ch]
14229                 - Use WPA-related constants from wpa.h
14230
14231 2005-12-14  Dan Williams  <dcbw@redhat.com>
14232
14233         * include/NetworkManager.h
14234                 - Update and split 802.11 wireless-specific capabilities from
14235                         generic device capabilities
14236
14237         * src/NetworkManagerDevice.c
14238           src/NetworkManagerDevicePrivate.h
14239                 - (nm_device_wireless_discover_capabilities): Move 802.11
14240                         wireless-specific capability checks to
14241                         NetworkManagerWireless.c
14242                 - Rename NMDeviceWirelessOptions -> NMDevice80211WirelessOptions
14243                 - Rename NMDeviceWiredOptions -> NMDevice80211EthernetOptions
14244
14245         * src/NetworkManagerWireless.[ch]
14246                 - (nm_802_11_wireless_discover_capabilities): Check extended
14247                         802.11 wireless-specific capabilities of the driver
14248
14249 2005-12-14  Robert Love  <rml@novell.com>
14250
14251         Patch from Stefan Scheler <sscheler@suse.de>:
14252         * src/NetworkManagerDevice.c: call backend code to activate and
14253           deactivate NIS.
14254         * src/NetworkManagerSystem.h: add new NIS interfaces.
14255         * src/backends/NetworkManagerDebian.c,
14256           src/backends/NetworkManagerGentoo.c,
14257           src/backends/NetworkManagerRedHat.c,
14258           src/backends/NetworkManagerSlackware.c: add stub functions for NIS
14259           support.
14260         * src/backends/NetworkManagerSuSE.c: add NIS support, baby.
14261
14262 2005-12-14  Dan Williams  <dcbw@redhat.com>
14263
14264         * src/nm-ap-security*.[ch]
14265                 - Add AP security abstractions to NetworkManager
14266
14267         * src/nm-dbus-device.c
14268                 - Begin to parse new format dbus messages from the applet
14269                         and construct an AP security object from the message
14270
14271         * libnm-util/dbus-helpers.c
14272                 - Use message iters so we can append the key as a fixed
14273                         array of bytes, which actually works rather than
14274                         using dbus_message_append_args() as we were before
14275
14276 2005-12-14  Dan Williams  <dcbw@redhat.com>
14277
14278         * src/NetworkManagerDbus.c
14279           gnome/applet/applet-dbus.c
14280                 - Fix up dbus service replacement options.  The applet
14281                         should allow replacement, NM itself should not.
14282
14283 2005-12-13  Robert Love  <rml@novell.com>
14284
14285         * src/named-manager/nm-named-manager.c: Revert earlier commit.
14286           Instead, fail silently if config is NULL by not asserting and not
14287           returning FALSE.  Also, make sure we always fclose() the file.
14288
14289 2005-12-13  Robert Love  <rml@novell.com>
14290
14291         Patch by Stefan Scheler <sscheler@suse.de>:
14292         *  src/nm-ip4-config.h, src/nm-ip4-config.c,
14293            src/dhcp-manager/nm-dhcp-manager.c: Add support for setting up NIS
14294            via DHCP.  Still need the backends to commit the NIS domain name and
14295            and servers to yp.conf as needed.
14296
14297 2005-12-13  Robert Love  <rml@novell.com>
14298
14299         * src/vpn-manager/nm-dbus-vpn.c: Do not call the lengthy-named function
14300           nm_vpn_manager_remove_connection() unless vpn is non-NULL.
14301
14302 2005-12-13  Robert Love  <rml@novell.com>
14303
14304         * src/named-manager/nm-named-manager.c: Don't unref the config until
14305           after we call rewrite_resolv_conf(), because get_last_default_domain()
14306           needs to access the config.  Fixes "rewrite_resolv_conf: assertion
14307           `config != NULL' failed" assertion failures and "Could not commit DNS
14308           changes" warnings.
14309
14310 2005-12-12  Dan Williams  <dcbw@redhat.com>
14311
14312         * libnm-util/dbus-helpers.[ch]
14313           libnm-util/Makefile.am
14314                 - new helper calls to consolidate locations where
14315                         NM's setDevice method is called
14316
14317         * gnome/applet/applet-dbus-devices.c
14318           gnome/applet/wireless-security-option.c
14319           gnome/applet/wso-*
14320                 - Implement dbus message param append function for
14321                         all wireless security options
14322
14323 2005-12-12  Robert Love  <rml@novell.com>
14324
14325         * libnm-util/cipher-wep-passphrase.c,
14326           libnm-util/cipher-wpa-psk-passphrase.c, src/NetworkManagerAP.c,
14327           src/NetworkManagerAP.h, src/NetworkManagerDevice.c,
14328           src/NetworkManagerWireless.c, src/NetworkManagerWireless.h: Treat
14329           all WEP/WPA keys as "char *" and not explicitly signed or unsigned.
14330           When handling keys, we don't care what the sign is.  The compiler
14331           guarantees us that we get our 8-bits, which is all we care about.
14332         * configure.in: Remove "-Wno-pointer-sign" flag.  We are sign-aware!
14333
14334 2005-12-12  Dan Williams  <dcbw@redhat.com>
14335
14336         * gnome/applet/applet-dbus-devices.[ch]
14337           gnome/applet/applet.c
14338           gnome/applet/other-network-dialog.c
14339           gnome/applet/wireless-security-manager.[ch]
14340           gnome/applet/wireless-security-option.[ch]
14341           gnome/applet/wso-*
14342                 - Push the wireless security options further into the applet
14343
14344 2005-12-12  Robert Love  <rml@novell.com>
14345
14346         * src/dhcp-manager/nm-dhcp-manager.c: Do not fail if DHCP does not
14347           return any name servers.  That is perfectly valid.  (Novell #134369).
14348
14349 2005-12-11  Dan Williams  <dcbw@redhat.com>
14350
14351         * gnome/applet/wso-*
14352           gnome/applet/wireless-security-option.*
14353           gnome/applet/Makefile.am
14354                 - split each security option out so we can eventually
14355                         have each one build up their own dbus message
14356                         arguments to send to NM
14357
14358 2005-12-11  Dan Williams  <dcbw@redhat.com>
14359
14360         * Make validation of the key work correctly
14361
14362 2005-12-11  Dan Williams  <dcbw@redhat.com>
14363
14364         * Hook more bits of the Other Network Dialog up to the
14365                 wireless security manager stuff, and restructure
14366                 bits of the dialog so there's less code.
14367
14368 2005-12-10  Dan Williams  <dcbw@redhat.com>
14369
14370         * gnome/applet/Makefile.am
14371                 - Add libnm-util to includes
14372                 - Add libnm-util to link list
14373                 - Add wireless-security-common.* to compile list
14374
14375         * gnome/applet/other-network-dialog.c
14376                 - Convert to using the WirelessSecurityManager code and
14377                         widgets
14378
14379         * gnome/applet/passphrase-dialog.c
14380                 - Comment out references to stuff in the glade file that
14381                         cause runtime errors until it can be fixed up
14382                         to use the WirelessSecurityManager code
14383
14384         * gnome/applet/wireless-applet.glade
14385                 - Rename some widgets
14386                 - Add widgets for the WirelessSecurityManager code
14387                 - Remove passphrase-related stuff since that's now
14388                         handled by the WirelessSecurityManager code
14389
14390 2005-12-10  Dan Williams  <dcbw@redhat.com>
14391
14392         * gnome/applet/applet-dbus-devices.c
14393                 - Print out error message details for dbus pending call callbacks
14394                 - Move nmwa_dbus_update_devices() up
14395
14396         * gnome/applet/applet-dbus-vpn.c
14397                 - Print out error message details for dbus pending call callbacks
14398
14399 2005-12-10  Dan Williams  <dcbw@redhat.com>
14400
14401         * libnm-util/*
14402                 - More fixups
14403                 - Remove cipher-manager.* because we don't need it
14404                 - Forgot to add gnome-keyring-md5 files to compile list
14405
14406 2005-12-09  Dan Williams  <dcbw@redhat.com>
14407
14408         * libnm-util/*
14409           configure.in
14410           Makefile.am
14411                 - Add a utility library for clients of NetworkManager.  It's
14412                         only targetted at applets for the moment, and contains
14413                         a generalized 802.11 cipher framework for different
14414                         types of keys (WEP & WPA Hex, ASCII, Passphrase)
14415
14416 2005-12-09  Robert Love  <rml@novell.com>
14417
14418         * src/NetworkManagerDevice.c: handle error better in
14419           nm_device_set_mode().
14420
14421 2005-12-08  Robert Love  <rml@novell.com>
14422
14423         * include/NetworkManager.h: add WPA capabilities constants
14424         * src/NetworkManagerDevice.c: detect if wireless devices support WPA
14425           or WPA2 and add the capabilities bits as appropriate.
14426
14427 2005-12-08  Robert Love  <rml@novell.com>
14428
14429         * initscript/SUSE/networkmanager-dispatcher.in: new initscript for
14430           NetworkManagerDispatcher.
14431         * configure.in, initscript/SUSE/.cvsignore,
14432           initscript/SUSE/Makefile.am: support new networkmanager-dispatcher
14433           initscript.
14434
14435 2005-12-08  Robert Love  <rml@novell.com>
14436
14437         * initscript/SUSE/networkmanager.in: Do not start 'networking' service.
14438
14439 2005-12-08  Robert Love  <rml@novell.com>
14440
14441         * src/NetworkManagerDevice.c: We want to fall back on and default to
14442           IW_MODE_AUTO, not -1, which is more in line with our previous
14443           behavior.  Otherwise, we try to set the wireless mode to -1 in
14444           nm_device_set_mode().
14445
14446 2005-12-07  Robert Love  <rml@novell.com>
14447
14448         * gnome/applet/applet-dbus-info.c, include/NetworkManager.h,
14449           src/NetworkManagerAP.c, src/NetworkManagerAP.h,
14450           src/NetworkManagerAPList.c, src/NetworkManagerDbus.c,
14451           src/NetworkManagerDevice.c, src/NetworkManagerDevice.h,
14452           src/nm-dbus-nm.c: Convert NM_DEVICE_AUTH_METHOD_* to use the
14453           wireless-tools constants directly.  UNKNOWN is now -1 and NONE is
14454           zero.
14455
14456 2005-12-07  Robert Love  <rml@novell.com>
14457
14458         * src/backends/NetworkManagerSuSE.c: In static configurations, if the
14459           supplied IP is invalid, fall back to DHCP.
14460
14461 2005-12-07  Dan Williams  <dcbw@redhat.com>
14462
14463         * Convert NETWORK_MODE_* constants to IW_MODE_*
14464         * Make all the get_mode/set_mode functions take and return 'int'
14465         * Convert D-BUS calls that pass mode to DBUS_TYPE_INT32 rather than UINT32
14466
14467 2005-12-07  Robert Love  <rml@novell.com>
14468
14469         * src/NetworkManagerDevice.c: strncpy() buffer check.
14470         * src/NetworkManagerUtils.c: be anal about syslog() formatting.
14471
14472 2005-12-06  Dan Williams  <dcbw@redhat.com>
14473
14474         * gnome/applet/applet-dbus.c
14475                 - (set_vpn_last_attempt_status): remove, now in applet-dbus-vpn.c
14476
14477         * gnome/applet/applet-dbus-vpn.c
14478                 - (nmwa_dbus_vpn_set_last_attempt_status): new, from applet-dbus.c
14479                 - (nmwa_dbus_vpn_update_vpn_connection_stage): set last_attempt_success
14480                         to TRUE here if stage was ACTIVATED
14481
14482 2005-12-06  Dan Williams  <dcbw@redhat.com>
14483
14484         * Change nm_device_is_* functions to better names:
14485                 nm_device_is_wireless() -> nm_device_is_802_11_wireless()
14486                 nm_device_is_wired() -> nm_device_is_802_3_ethernet()
14487
14488 2005-12-06  Dan Williams  <dcbw@redhat.com>
14489
14490         * Change naming of NMDeviceType to something more sensible:
14491                 NM_DEVICE_TYPE_DONT_KNOW -> NM_DEVICE_TYPE_UNKNOWN
14492                 NM_DEVICE_TYPE_WIRED_ETHERNET -> NM_DEVICE_TYPE_802_3_ETHERNET
14493                 NM_DEVICE_TYPE_WIRELESS_ETHERNET -> NM_DEVICE_TYPE_802_11_WIRELESS
14494
14495 2005-12-06  Dan Williams  <dcbw@redhat.com>
14496
14497         * Move NetworkManager.h -> include/NetworkManager.h
14498         * Split out VPN stuff into include/NetworkManagerVPN.h
14499         * Fix up makefiles to include new location
14500         * Fix up sources to include NetworkManagerVPN.h
14501
14502 2005-12-06  Dan Williams  <dcbw@redhat.com>
14503
14504         Various changes in the applet to move VPN connection "state" -> "stage",
14505         which it actually is.  I'd like to change the signal as well when we
14506         break compat in the near future.
14507
14508 2005-12-06  Dan Williams  <dcbw@redhat.com>
14509
14510         Slackware patches from Paul Blazejowski <paulb@blazebox.homeip.net>
14511         * initscript/Slackware/rc.networkmanager
14512                 - Cosmetic fix
14513
14514         * src/backends/NetworkManagerSlackware.c
14515                 - Kill dhcpcd when starting so that dhclient can bind to DHCP on
14516                         interfaces
14517
14518 2005-12-05  Robert Love  <rml@novell.com>
14519
14520         * src/NetworkManager.c: don't call nm_data_free() when there is nothing
14521           to free, particularly here as it just barfs.
14522
14523 2005-12-05  Dan Williams  <dcbw@redhat.com>
14524
14525         * gnome/applet/applet-dbus.c
14526                 - Work with dbus 0.6 too
14527
14528 2005-12-03  Dan Williams  <dcbw@redhat.com>
14529
14530         * src/NetworkManagerUtils.[ch]
14531           src/nm-ip4-config.c
14532                 - move ip4_netmask_to_prefix() to NetworkManagerUtils.c
14533                 - consolidate code into nm_utils_ip4_addr_to_nl_addr()
14534
14535 2005-12-01  Robert Love  <rml@novell.com>
14536
14537         * gnome/applet/main.c, gnome/vpn-properties/nm-vpn-properties.c: We
14538           need a NULL for the '...' parameter, too, to fill the so-called
14539           sentinel.
14540
14541 2005-12-01  Robert Love  <rml@novell.com>
14542
14543         * src/NetworkManagerSystem.c: If iface_to_rtnl_link() returns NULL, the
14544           interface is already gone, so don't call rtnl_link_change() to down
14545           it (which will segfault, anyhow).
14546
14547 2005-11-22  Robert Love  <rml@novell.com>
14548
14549         * src/backends/NetworkManagerSuSE.c: Don't fall back to DHCP if the
14550           gateway is not set, just print a little note.  Configurations without
14551           gateways are valid.
14552
14553 2005-11-22  Robert Love  <rml@novell.com>
14554
14555         * README: update
14556
14557 2005-11-20  Ilkka Tuohela  <hile@iki.fi>
14558
14559         * configure.in: Added Finnish translation to ALL_LINGUAS
14560
14561 2005-11-14  Robert Love  <rml@novell.com>
14562
14563         * vpn-daemons/openvpn: initial checkin of OpenVPN VPN Module, by Tim
14564           Niemueller <tim@niemueller.de>.
14565
14566 2005-11-08  Dan Williams  <dcbw@redhat.com>
14567
14568         Patch from Bill Moss <bmoss@clemson.edu>
14569         * src/NetworkManagerDevice.c
14570                 - (nm_device_activate_stage5_ip_config_commit): fix ordering
14571                         of nm_policy_schedule_activation_finish() to prevent a
14572                         race condition that causes the link to be dropped
14573
14574 2005-11-08  Dan Williams  <dcbw@redhat.com>
14575
14576         Patch from Bill Moss <bmoss@clemson.edu>
14577         * src/NetworkManagerAPList.c
14578           src/NetworkManagerDevice.c
14579           src/NetworkManagerDbus.c
14580                 - Replace occurances of ether_ntoa_r() with iw_ether_ntop() so
14581                         we get more readable ether/mac addresses
14582
14583 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14584
14585         * gnome/applet/main.c: Don't set the restart command.  This fixes
14586         the issue where the restart command was getting copies of all its
14587         arguments for each time the applet was restarted.
14588
14589 2005-11-02  Robert Love  <rml@novell.com>
14590
14591         * gnome/applet/applet.c: Only send the DBUS setWirelessEnabled method
14592           if the widget state differs from our saved state.  This ensures we
14593           do not enter an endless loop of death and destruction.  Also, this
14594           guarantees us that we enforce the widget state.
14595
14596 2005-11-02  Robert Love  <rml@novell.com>
14597
14598         * gnome/applet/applet.c: add nmwa_enable_wireless_set_active().
14599         * gnome/applet/applet-dbus-devices.c: invoke the new function
14600           nmwa_enable_wireless_set_active() to ensure that the state of the
14601           'Enable Wireless' checkbox matches the daemon's state.  This is a
14602           concern because the daemon remembers the state.
14603
14604 2005-11-02  Robert Love  <rml@novell.com>
14605
14606         * gnome/applet/applet.c: Make menu item "Enable Wireless" not "Wireless
14607           Enabled", as checkboxes should be actions/commands not positive
14608           statements, otherwise they are confusing in the unselected case.  See
14609           examples in GNOME HIG, Chapter 6.
14610
14611 2005-11-02  Robert Love  <rml@novell.com>
14612
14613         * gnome/applet/applet.c: When wireless is disabled, act it.  Do not
14614           show a list of wireless networks or the wireless devices or the
14615           "Create Wireless ..." menus.  Aside from this cosmetics, this fixes
14616           a bad bug: If wireless is disabled and the user picks a wireless
14617           network, NM will switch to the network, only to immediately switch
14618           back, as wireless is disabled.  This also reassures people that NM
14619           is not scanning (it is not -- I verified).  Fixes Novell bug #130041.
14620
14621 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14622
14623         * gnome/applet/applet.c:
14624         * gnome/applet/applet.h:
14625         Partial backout of Dan's timeout animation patch.
14626         Timeout IDs cannot legally be 0, so revert the code in place to handle
14627         a timeout ID of 0 to denote the timeout isn't running.
14628
14629 2005-11-02  Christopher Aillon  <caillon@redhat.com>
14630
14631         * src/NetworkManagerPolicy.c:
14632         (nm_policy_device_change_check) Clarify wireless switch nm_info text
14633
14634 2005-10-28  Robert Love  <rml@novell.com>
14635
14636         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade: Change label to
14637           "Import Saved Configuration..." to make it clear that importing is
14638           not the next step, but an option.  As an aside, a nice TODO would be
14639           to move Importing out of the vpn-specific dialog and into the main
14640           property editor, as Importing goes with Adding, but that will require
14641           some rearchitecting of the VPN stuff I suspect.
14642
14643 2005-10-27  Dan Williams  <dcbw@redhat.com>
14644
14645         Start using libnl.  You need 1.0-pre3 or higher.  Eventually
14646         we should replace most of the distro-specific backend code
14647         with libnl stuff.
14648
14649         Get it here:  http://people.suug.ch/~tgr/libnl/
14650
14651         * configure.in
14652           src/Makefile.am
14653                 - Add checks for libnl pkgconfig file
14654                 - Use LIBNL_LIBS & LIBNL_CFLAGS
14655
14656         * src/NetworkManagerSystem.c
14657           src/nm-ip4-config.[ch]
14658                 - Use libnl rather than ioctl() for most things
14659                 - Remove unused functions
14660
14661 2005-10-27  Robert Love  <rml@novell.com>
14662
14663         * src/backends/NetworkManagerSuSE.c: fix warning message text
14664
14665 2005-10-27  Christopher Aillon  <caillon@redhat.com>
14666
14667         * gnome/applet/applet.c: Use the copyright symbol instead of (C)
14668
14669 2005-10-27  Christopher Aillon  <caillon@redhat.com>
14670
14671         * gnome/applet/applet.c: The applet's about dialog can advertise our 
14672         project page <http://www.gnome.org/projects/NetworkManager/>
14673
14674 2005-10-26  Christopher Aillon  <caillon@redhat.com>
14675
14676         * gnome/applet.c: Also use translator credits if we don't have
14677         the new GtkAboutDialog (older versions of GTK+)
14678
14679 2005-10-26  Robert Love  <rml@novell.com>
14680
14681         * dispatcher-daemon/NetworkManagerDispatcher.c: print actual error string on daemon()
14682           failure; correct usage text for "--no-daemon"
14683
14684 2005-10-25  Dan Williams  <dcbw@redhat.com>
14685
14686         * src/NetworkManagerDevice.c
14687                 - (get_scan_results): cleanups, deal cleanly with ENODATA signifying
14688                         no scan results
14689                 - (free_process_scan_cb_data): unref the device when freeing results
14690                 - (nm_device_wireless_process_scan_results): free scan results a bit later
14691                         so we don't unref the device underneath ourselves
14692
14693 2005-10-25  Dan Williams  <dcbw@redhat.com>
14694
14695         * Back out 2005-10-24 commit from Tor Krill.  Patch
14696                 causes nameservers never to be removed from named.
14697
14698 2005-10-24  Dan Williams  <dcbw@redhat.com>
14699
14700         Clean up wireless scanning and wireless link probing.
14701
14702         * src/NetworkManagerDevice.c
14703                 - (nm_device_probe_wireless_link_state): instead of calling nm_get_best_ap(),
14704                         just see if there's an activation request on the device, and check the
14705                         current link against the activation request access point's ESSID.
14706                 - (link_to_specific_ap): increase the # of failed links we tolerate from 3 to 6
14707                 - (nm_device_wireless_process_scan_results): actually free our scan data, and
14708                         don't call process_scan_results() on zero-length data
14709                 - (nm_device_set_wireless_scan_interval): increase the init scan interval to 
14710                         15 seconds (from 10)
14711
14712 2005-10-24  Dan Williams  <dcbw@redhat.com>
14713
14714         Cleanup some applet stuff:
14715
14716         - Animation timeouts.  If NM died while the applet was animating,
14717                 the applet would not hide itself.  This is now fixed.
14718
14719         - Remove some dead code
14720
14721         - Remove nmi_passphrase_dialog_schedule_cancel() and convert uses
14722                 to nmi_passphrase_dialog_cancel() since we no longer use threads.
14723
14724         - Track animation timeout using a gboolean rather than the timeout's
14725                 ID, since timeout IDs can legally be 0.
14726
14727 2005-10-24  Dan Williams  <dcbw@redhat.com>
14728
14729         * src/backends/interface_parser.c
14730                 - Add void to function declarations that need it
14731                         to match patch from Engin AYDOGAN
14732
14733         * src/backends/interface_parser.h
14734                 - Remove unused prototype for ifparser_interfaces()
14735
14736         Patch from Engin AYDOGAN <engin@bzzzt.biz>
14737         * src/backends/interface_parser.h:
14738                 - Compile fixes for gcc 4.0.2 (add void)
14739
14740 2005-10-24  Dan Williams  <dcbw@redhat.com>
14741
14742         Patch from Tor Krill <tor@krill.nu>
14743         * src/named-manager/nm-named-manager.c
14744                 - Write more than just the first nameserver to /etc/resolv.conf
14745                 - Write out valid /etc/resolv.conf on exit
14746
14747 2005-10-21  Christopher Aillon  <caillon@redhat.com>
14748
14749         * gnome/applet/applet-dbus-vpn.c:
14750         Get rid of spurious newlines in debug console output
14751
14752 2005-10-21  Christopher Aillon  <caillon@redhat.com>
14753
14754         * src/backends/NetworkManagerGentoo.c:
14755         Fix path to killall.  Patch from Dave Shanker <dshanker@gmail.com>
14756
14757 2005-10-20  Robert Love  <rml@novell.com>
14758
14759         * src/NetworkManagerDevice.c: Use fabs() and DBL_EPSILON to avoid a
14760           direct comparison of floating point values, which is never correct.
14761           Also some misc. cleanup.
14762
14763 2005-10-19  Robert Love  <rml@novell.com>
14764
14765         * vpn-daemons/vpnc/nm-vpnc.desktop.in: add fields
14766
14767 2005-10-19  Robert Love  <rml@novell.com>
14768
14769         * gnome/vpn-properties/nm-vpn-properties.c: Correctly set the
14770           sensitivity of the buttons.  Specificaly, do the right thing if
14771           there are no entries.
14772
14773 2005-10-19  Christopher Aillon  <caillon@redhat.com>
14774
14775         * configure.in: Update check for adequate wireless-tools
14776         with an AC_TRY_COMPILE for the new symbols we use.
14777
14778 2005-10-19  Dan Williams  <dcbw@redhat.com>
14779
14780         * src/NetworkManagerDevice.c
14781                 - (process_scan_results): don't drop the last (or only)
14782                         access point we see
14783
14784 2005-10-19  Christopher Aillon  <caillon@redhat.com>
14785
14786         * src/backends/NetworkManagerSlackware.c:
14787         Patch from Nico <lordllucifer@gmail.com>
14788                 - Update the Slackware backend.
14789
14790 2005-10-18  Christopher Aillon  <caillon@redhat.com>
14791
14792         * gnome/applet/other-network-dialog.c: Use g_get_host_name ()
14793         if we've got GLib 2.8.0
14794
14795 2005-10-18  Robert Love  <rml@novell.com>
14796
14797         * src/NetworkManagerDevice.c: invoke the long-in-the-tooth named
14798           function nm_schedule_state_change_signal_broadcast() when we
14799           deactivate a device, too.
14800
14801 2005-10-18  Robert Love  <rml@novell.com>
14802
14803         * gnome/applet/applet.c: nmwa_context_menu_update(): 'iface' could
14804           be used uninitialized.
14805
14806 2005-10-18  Christopher Aillon  <caillon@redhat.com>
14807
14808         * test/libnm_glib_test.c: Test unregistering, too.
14809
14810 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14811
14812         * configure.in: Bump to 0.5.0
14813
14814 2005-10-17  Dan Williams  <dcbw@redhat.com>
14815
14816         * NetworkManager.h
14817                 - Remove WPA-related constants so they aren't part of the
14818                         upcoming release.
14819
14820 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14821
14822         * gnome/applet/applet.c:
14823         * gnome/applet/applet.h:
14824         Desensitize the 'Connection Information' menu item when there is
14825         no active connection.
14826
14827 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14828
14829         * gnome/libnm_glib/libnm_glib.c:
14830         Make libnm_glib_unregister_callback () actually unregister the callback
14831
14832 2005-10-17  Robert Love  <rml@novell.com>
14833
14834         * src/NetworkManagerDevice.c: Actually wait 20s, as we intend, not
14835           two seconds -- tries is updated every 1/10 of a second, not every
14836           second..
14837
14838 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14839
14840         * gnome/applet/applet-dbus-info.c:
14841         Let D-BUS know that we haven't handled a message when we haven't.
14842
14843 2005-10-17  Robert Love  <rml@novell.com>
14844
14845         * src/nm-ip4-config.c: use GPOINTER_TO_UINT and not a straight cast
14846           in order to remain 64-bit clean.
14847
14848 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14849
14850         * gnome/applet/applet-dbus-info.c:
14851         Find network encryption keys asynchronously
14852
14853 2005-10-17  Robert Love  <rml@novell.com>
14854
14855         * src/backends/NetworkManagerDebian.c,
14856           src/backends/NetworkManagerRedHat,
14857           src/backends/NetworkManagerSuSE.c: allow '#' as a valid resolv.conf
14858           comment delimiter.
14859
14860 2005-10-17  Robert Love  <rml@novell.com>
14861
14862         * src/backends/NetworkManagerSuSE.c: use SYSCONFDIR not open-coded
14863           "/etc"
14864
14865 2005-10-17  Christopher Aillon  <caillon@redhat.com>
14866
14867         * src/NetworkManagerDevice.c: (process_scan_results)
14868         Fix logic that checks to see whether we have an ESSID.
14869
14870 2005-10-15  Dan Williams  <dcbw@redhat.com>
14871
14872         Move scanning code into NetworkManager rather than use iwlib's
14873         iw_scan() function, so that we can figure out AP capabilities.
14874
14875         * NetworkManager.h
14876                 - Add AP capability bits
14877
14878         * src/NetworkManagerAP.[ch]
14879                 - Add capability field to NMAccessPoint structure
14880                 - Add WPA & RSN Information Element fields and accessor
14881                         functions to NMAccessPoint
14882
14883         * src/NetworkManagerDevice.c
14884                 - Remove usage of iw_scan
14885                 - Add scanning code to NetworkManager rather than use
14886                         iw_scan() from iwlib
14887
14888         * src/NetworkManagerUtils.[ch]
14889                 - (nm_dispose_scan_results): remove, unused
14890
14891 2005-10-14  Christopher Aillon  <caillon@redhat.com>
14892
14893         * gnome/libnm_glib/libnm_glib.c:
14894         * gnome/libnm_glib/libnm_glib.h:
14895         Use guint instead of gint for callback IDs.
14896
14897 2005-10-12  Christopher Aillon  <caillon@redhat.com>
14898
14899         * gnome/applet/applet.c:
14900         Fix icon animation smoothness issues.  nmwa_redraw_timeout gets called
14901         every 1000ms.  It will unconditionally call nmwa_update_state which
14902         kills the existing animation timeout and registers a new one with a
14903         callback to draw a new frame every 100ms.  There are 11 connecting
14904         icon frames, so the last 2 frames kept getting dropped.  Only reset
14905         the animation timeout if we aren't animating.
14906
14907 2005-10-11  Dan Williams  <dcbw@redhat.com>
14908
14909         * gnome/applet/applet-dbus-devices.c
14910                 - (nmwa_dbus_update_device_info_from_hal), (hal_net_physdev_cb):
14911                         We want to grab the product & vendor from net.physical_dev
14912                         rather than info.parent.
14913
14914 2005-10-11  Dan Williams  <dcbw@redhat.com>
14915
14916         * src/NetworkManagerDevice.c
14917                 - Use the driver's WE version for scanning rather than
14918                         the WE version NM was compiled with.  Fixes random
14919                         crashes in iw_scan () in iwlib.
14920
14921 2005-10-10  Dan Williams  <dcbw@redhat.com>
14922
14923         * Remove nm_system_load_device_modules() from backend files
14924                 and from NetworkManager.c
14925
14926 2005-10-10  Dan Williams  <dcbw@redhat.com>
14927
14928         * src/NetworkManagerPolicy.c
14929                 - Fix some bugs introduced by the capabilities patch
14930
14931 2005-10-10  Dan Williams  <dcbw@redhat.com>
14932
14933         * gnome/applet/applet-dbus-info.c
14934                 - (nmi_dbus_get_network_key): hide the menu when putting up
14935                         the keyring dialog.  (not sure if the code is right...)
14936
14937 2005-10-09  Dan Williams  <dcbw@redhat.com>
14938
14939         Patch from Bill Moss <bmoss@clemson.edu>
14940         * src/NetworkManagerDevice.c
14941                 - (nm_device_set_user_key_for_network): don't try to set auth
14942                         mode on the AP from the allowed list if it's NULL
14943
14944 2005-10-09  Dan Williams  <dcbw@redhat.com>
14945
14946         * Replace the "driver support level" stuff with capabilities.  The
14947                 capability field is a bitfield that is more flexible than the
14948                 old driver support level thing.  It's mostly so we can easily
14949                 figure out what supports WPA and what doesn't, but should be
14950                 quite useful later.
14951
14952 2005-10-09  Dan Williams  <dcbw@redhat.com>
14953
14954         * test/nmtest.c
14955                 - Removed
14956
14957         * test/nm-tool.c
14958           test/Makefile.am
14959                 - Added new "nm-tool" tool that gives quite a bit more
14960                         information
14961
14962 2005-10-07  Robert Love  <rml@novell.com>
14963
14964         * gnome/applet/applet-dbus-info.c, gnome/applet/applet.c,
14965           gnome/applet/applet.h, gnome/vpn-properties/nm-vpn-properties.c,
14966           src/dhcp-manager/nm-dhcp-manager.c, test/libnm_glib_test.c,
14967           test/nmtest.c test/nmtestdevices.c: mark functions 'static' as
14968           appropriate
14969
14970 2005-10-07  Robert Love  <rml@novell.com>
14971
14972         * configure.in: Change our compile flags for the betterment of mankind.
14973           Add "-Wstrict-prototypes" because we comply anyhow and missing a
14974           prototype is very bad on 64-bit platforms as types default to int but
14975           sizeof(int) != sizeof(long) and add "-Wmissing-prototypes" &
14976           "-Wmissing-declarations" to warn if we define an exported function
14977           but fail to put it in a header.
14978
14979 2005-10-07  Robert Love  <rml@novell.com>
14980
14981         * src/NetworkManagerWireless.c: remove stale, unused function, who goes
14982           by the name nm_update_device_wireless_timeouts() and once tried,
14983           without success, to steal my pet turtle.
14984
14985 2005-10-07  Robert Love  <rml@novell.com>
14986
14987         * Cleanup prototypes: put some functions in header files and mark
14988           others as 'static' -- feel free to invert
14989         * src/vpn-manager/nm-dbus-vpn.c: remove prototype of
14990           nm_vpn_manager_vpn_connection_list_copy()
14991         * src/vpn-manager/nm-vpn-act-request.c: remove prototype of
14992           nm_vpn_service_get_dbus_connection()
14993         * src/vpn-manager/nm-vpn-manager.h: add prototypes for
14994           nm_vpn_manager_vpn_connection_list_copy()
14995         * src/vpn-manager/nm-vpn-service.c: make
14996           nm_vpn_service_act_request_failed() and
14997           nm_vpn_service_stage2_daemon_wait() static
14998         * src/vpn-manager/nm-vpn-service.h: add prototype for
14999           nm_vpn_service_get_dbus_connection()
15000
15001 2005-10-06  Christopher Aillon  <caillon@redhat.com>
15002
15003         * gnome/applet/applet.c:
15004         * gnome/applet/applet.h:
15005         * gnome/applet/icons/Makefile.am:
15006         Convey information about the current connection stage in the
15007         icons themselves instead of creating a separate progress bar.
15008
15009 2005-10-04  Robert Love  <rml@novell.com>
15010
15011         * src/nm-dbus-device.c: Use iw_ether_ntop(), not ether_ntoa_r(), to
15012           convert an ether_addr structure's MAC into a string, because the
15013           latter will drop leading zero's and uses lower-case, e.g. 7:3b:4
15014           versus 07:3B:04, while the former will not.
15015
15016 2005-10-04  Robert Love  <rml@novell.com>
15017
15018         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
15019           gnome/applet/nm-device.c, gnome/applet/nm-device.h,
15020           gnome/applet/wireless-applet.glade, src/nm-dbus-device.c: Display
15021           default route in the 'Connection Information' dialog, send primary
15022           and secondary name servers in in "getProperties" DBUS method, add
15023           network_device_{get,set}_{primary,secondary}_dns(),  The primary and
15024           secondary domain name servers are crucial pieces of information
15025           that a user might need in debugging a network problem.
15026
15027 2005-10-04  Robert Love  <rml@novell.com>
15028
15029         * gnome/applet/applet-dbus-devices.c, gnome/applet/applet.c,
15030           gnome/applet/nm-device.c, gnome/applet/nm-device.h,
15031           gnome/applet/wireless-applet.glade, src/nm-dbus-device.c: Display
15032           default route in the 'Connection Information' dialog, send default
15033           route in "getProperties" DBUS method, add network_device_set_route(),
15034           and network_device_get_route().  The Gateway is a crucial piece of
15035           connection-related information that a user might need in debugging a
15036           network problem.
15037
15038 2005-10-03  Robert Love  <rml@novell.com>
15039
15040         * src/backends/NetworkManagerSuSE.c: Fix Glib error, GError must be
15041           NULL.
15042
15043 2005-10-02  Dan Williams  <dcbw@redhat.com>
15044
15045         * Shorten time taken to sleep by fastpathing bits of device deactivation
15046                 necessary for sleep.
15047
15048         * Fix issue where deactivating a device might deactivate the active
15049                 VPN connection, even if the VPN was not using the device.
15050
15051 2005-10-02  Dan Williams  <dcbw@redhat.com>
15052
15053         * gnome/applet/applet.c
15054                 - Adjust signal strength -> icon mapping values slightly
15055                         (so that 51% signal doesn't show a 75% icon) by adding
15056                         5% to the values. ex: > 5% now shows 25% icon, > 30%
15057                         shows 50% icon, etc.
15058
15059 2005-09-29  Robert Love  <rml@novell.com>
15060
15061         * src/NetworkManager.c: removed unused variable.
15062
15063 2005-09-28  Dan Williams  <dcbw@redhat.com>
15064
15065         Support for named + DBus, using Red Hat DBus patches for named.  You
15066         can find those patches here, with "dbus" in the patch's filename:
15067
15068                 http://cvs.fedora.redhat.com/viewcvs/devel/bind/
15069
15070         Don't forget the named dbus service file either.
15071
15072         Instead of writing a config file and spawing a named process, NM will
15073         use an already-running dbus-enabled named if it finds one.  NM will
15074         update named's forwarder configuration on the fly using dbus.
15075
15076         If there is no dbus-enabled named running, NM will automatically fall
15077         back to writing the most-recent DNS server information to /etc/resolv.conf
15078         and calling nm_system_update_dns() to kick the system's resolver.
15079
15080         Accordingly, all named-related configure-time options have been removed.
15081
15082 2005-09-26  Robert Love  <rml@novell.com>
15083
15084         * src/backends/NetworkManagerSuSE.c, (nm_system_get_dialup_config): Add
15085           ISDN support!
15086         * src/backends/NetworkManagerSuSE.c, (verify_and_return_provider): Fix
15087           bug in error path if "ASKPASSWORD" is "no".
15088
15089 2005-09-26  Robert Love  <rml@novell.com>
15090
15091         * src/named-manager/nm-named-manager.c: only '#' is officially a valid
15092           comment in /etc/resolv.conf -- ';' is not.
15093
15094 2005-09-19  Dan Williams  <dcbw@redhat.com>
15095
15096         * src/backends/NetworkManagerRedHat.c:
15097         * src/backends/NetworkManagerDebian.c:
15098         * src/backends/NetworkManagerSlackware.c:
15099         * src/backends/NetworkManagerGentoo.c:
15100         * src/backends/NetworkManagerSUSE.c:
15101         Fix invocations of "/sbin/ip address" to use short form instead
15102
15103 2005-09-19  Christopher Aillon  <caillon@redhat.com>
15104
15105         * src/nm-dbus-device.c: Don't assert when getting
15106         addresses of a not yet connected interface.
15107
15108         * gnome/applet/applet.c: Free icons if loading fails.
15109         Use translator-credits so translators can make themselves known.
15110
15111 2005-09-15  Christopher Aillon  <caillon@redhat.com>
15112
15113         * src/NetworkManagerAP.c:
15114         * src/NetworkManagerAP.h:
15115         * src/NetworkManagerDevice.c:
15116         Set a blacklist for certain common manufacturer default ESSIDs:
15117         APs with these ESSIDs are extremely likely to be completely
15118         different networks: connecting to one should not make NM
15119         auto-connect to every other AP with the same default ESSID.
15120
15121 2005-09-12  Christopher Aillon  <caillon@redhat.com>
15122
15123         * gnome/applet/wireless-applet.glade:
15124         The passphrase entry should also activate the default
15125
15126         * src/gnome-keyring-md5.c: Updated code from gnome-keyring
15127
15128         * gnome/applet/applet-dbus-devices.c:
15129         * gnome/applet/applet.c:
15130         * gnome/applet/nm-device.c:
15131         * gnome/applet/nm-device.h:
15132         * src/NetworkManagerUtils.c:
15133         * src/NetworkManagerUtils.h:
15134         * src/nm-dbus-device.c:
15135         I've got a fever, and the only cure for it is less ioctl.
15136         Make NM push IP data rather than make the applet open a socket
15137         to the device.
15138
15139 2005-09-10  Christopher Aillon  <caillon@redhat.com>
15140
15141         * gnome/applet/applet.c:
15142         * gnome/applet/applet-dbus-devices.c:
15143         * gnome/applet/applet-dbus-info.c:
15144         * gnome/applet/passphrase-dialog.c:
15145         * gnome/libnm_glib/libnm_glib.c:
15146         * gnome/vpn-properties/nm-vpn-properties.c:
15147         * src/autoip.c:
15148         * src/backends/NetworkManagerRedHat.c:
15149         * src/named-manager/nm-named-manager.c:
15150         * src/NetworkManagerAPList.c:
15151         * src/NetworkManager.c:
15152         * src/NetworkManagerDbus.c:
15153         * src/NetworkManagerDevice.c:
15154         * src/NetworkManagerPolicy.c:
15155         * src/NetworkManagerSystem.c:
15156         * src/nm-dbus-device.c:
15157         * src/nm-dbus-nm.c:
15158         * src/vpn-manager/nm-vpn-manager.c:
15159         * src/vpn-manager/nm-vpn-service.c:
15160         * test/libnm_glib_test.c:
15161         * test/nminfotest.c:
15162         * test/nmtestdevices.c:
15163         Fix a bunch of 'unused variable' compiler warnings
15164
15165         * NetworkManager.h:
15166         * gnome/applet/applet-dbus-info.c:
15167         * gnome/applet/applet-dbus-info.h:
15168         * gnome/applet/applet.c:
15169         * gnome/applet/applet.h:
15170         * src/NetworkManager.c:
15171         * src/NetworkManagerDbus.c:
15172         * src/NetworkManagerDbus.h:
15173         * src/NetworkManagerDevice.c:
15174         * src/NetworkManagerDevice.h:
15175         * src/NetworkManagerMain.h:
15176         * src/NetworkManagerWireless.c:
15177         * src/NetworkManagerWireless.h:
15178         * src/nm-dbus-nm.c:
15179         Make NetworkManager be smart about how frequently to scan
15180         based on its current state.  Remove the UI for choosing when
15181         to scan.  Scanning still may disabled completely by the user
15182         via the "Wireless Enabled" menu item.
15183
15184 2005-09-09  Christopher Aillon  <caillon@redhat.com>
15185
15186         * gnome/applet/applet.c:
15187         Also overlay the vpn connecting icons onto the wired icon,
15188         when appropriate.
15189
15190         * gnome/vpn-properties/nm-vpn-properties.glade:
15191         Clean up a few strings to use better grammar and proper casing.
15192
15193 2005-09-08  Christopher Aillon  <caillon@redhat.com>
15194
15195         * gnome/applet/vpn-connection.c:
15196         * gnome/applet/vpn-connection.h:
15197         Add nmwa_vpn_connection_is_activating ()
15198
15199         * gnome/applet/applet.c:
15200         * gnome/applet/applet.h:
15201         * gnome/applet/icons/nm-vpn-connecting*.png:
15202         Add new VPN connecting icons from Diana Fong <dfong@redhat.com>, letting
15203         the user know something's happening between clicking the VPN item and it
15204         actually being connected.
15205
15206 2005-09-07  Christopher Aillon  <caillon@redhat.com>
15207
15208         * gnome/applet/applet-dbus-info.c: need to free attributes in the
15209         failure case as well.
15210
15211 2005-09-07  Rodrigo Moya <rodrigo@novell.com>
15212
15213         * gnome/panel/eggtrayicon.[ch]:
15214         * examples/python/systray/eggtrayicon.[ch]: updated code from libegg.
15215
15216 2005-09-07  Dan Williams  <dcbw@redhat.com>
15217
15218         Patch from Bill Moss <bmoss@clemson.edu>
15219         * src/applet-dbus.c
15220                 - (nmwa_dbus_filter): strip whitespace from beginning
15221                         and end of VPN login banner
15222
15223 2005-09-07  Dan Williams  <dcbw@redhat.com>
15224
15225         * The great VPN Manager rewrite of 2005
15226
15227 2005-09-07  Christopher Aillon  <caillon@redhat.com>
15228
15229         * gnome/applet/menu-items.c:
15230         * gnome/applet/nm-device.c:
15231         * gnome/applet/wireless-network.c:
15232         * gnome/libnm_glib/libnm_glib.c:
15233         * src/NetworkManagerDbusUtils.c:
15234         * vpn-daemons/vpnc/src/nm-vpnc-service.c:
15235         g_malloc0 doesn't return NULL
15236
15237 2005-09-06  Dan Williams  <dcbw@redhat.com>
15238
15239         Patch from Tomislav Vujec <tvujec@redhat.com>
15240         * src/NetworkManagerDevice.c
15241                 - (nm_get_device_by_udi): don't return a device when we
15242                         actually didn't find what we were looking for
15243
15244 2005-09-06  Christopher Aillon  <caillon@redhat.com>
15245
15246         * gnome/applet/applet-dbus-devices.c:
15247         * gnome/applet/applet-dbus-devices.h:
15248         * gnome/applet/applet-dbus.c:
15249         * src/NetworkManagerDbus.c:
15250         * src/NetworkManagerDbus.h:
15251         * src/NetworkManagerDevice.c:
15252         * src/nm-dbus-device.c:
15253         Make NM push updates about active device strength when it changes,
15254         rather than having the applet poll every 2s.
15255
15256 2005-09-05  Christopher Aillon  <caillon@redhat.com>
15257
15258         * gnome/applet/applet-dbus-devices.c: Remove duplicate call to
15259         network_device_set_strength
15260
15261 2005-09-04  Dan Williams  <dcbw@redhat.com>
15262
15263         Patch from Bill Nottingham <notting@redhat.com>
15264         * src/NetworkManagerDevice.c
15265                 - (nm_device_activation_cancel): reset the quit_activation flag
15266
15267 2005-09-04  Dan Williams  <dcbw@redhat.com>
15268
15269         * src/nm-activation-request.c
15270                 - (nm_act_request_unref): actually free the structure,
15271                         which we didn't seem to be doing before
15272
15273 2005-09-04  Dan Williams  <dcbw@redhat.com>
15274
15275         Patch from John Palmieri <johnp@redhat.com>
15276         * gnome/applet/applet-dbus-devices.c
15277                 - Fix up unreffing of DBusMessage objects
15278
15279 2005-09-04  Dan Williams  <dcbw@redhat.com>
15280
15281         Patch from John Palmieri <johnp@redhat.com>
15282         * gnome/applet/nm-device.c
15283                 - (nm_device_unref): clear network_device's memory _before_ freeing it
15284
15285 2005-09-02  Christopher Aillon  <caillon@redhat.com>
15286
15287         * gnome/applet/applet.c: Use a check menu item for Wireless Enabled
15288
15289 2005-09-02  Bill Nottingham  <notting@redhat.com>
15290
15291         * src/backends/NetworkManagerRedHat.c: use nm_warning, not nm_error
15292
15293 2005-09-01  Dan Williams  <dcbw@redhat.com>
15294
15295         * src/NetworkManager.c
15296                 - (nm_remove_device_from_list): rename to nm_remove_device
15297                 - (nm_hal_device_removed): call nm_remove_device()
15298
15299         * src/NetworkManagerDevice.c
15300                 - Change the NMWirelessScanCB member 'reschedule' which
15301                         wasn't used to 'force' to indicate that we need to
15302                         force a scan when adding a device
15303
15304         * src/nm-dbus-nm.c
15305                 - (nm_dbus_nm_sleep): Deactivate all devices and remove them
15306                         from the device list
15307                 - (nm_dbus_nm_wake): Re-add all devices to the device list
15308
15309 2005-09-01  Robert Love  <rml@novell.com>
15310
15311         * gnome/applet/applet.c: nmwa_update_info: iface is used uninitialized
15312           and the check "!iface" in the error case is probably never true.
15313
15314 2005-09-01  Dan Williams  <dcbw@redhat.com>
15315
15316         Patch from Bill Nottingham <notting@redhat.com>
15317         * src/backends/NetworkManagerRedHat.c
15318                 - Add initial dialup support to Red Hat/Fedora backend
15319
15320 2005-09-01  Dan Williams  <dcbw@redhat.com>
15321
15322         * gnome/applet/applet-dbus-devices.c
15323                 - Sort both wireless networks and devices again, which got
15324                         broken when removing threading
15325
15326 2005-09-01  Christopher Aillon  <caillon@redhat.com>
15327
15328         * gnome/applet/applet.c:
15329         Only show the "Stop/Start All Wireless Devices" menuitem
15330         if we actually have wireless devices.
15331
15332         * gnome/applet/applet-dbus-info.c:
15333         * gnome/applet/applet.c:
15334         * gnome/applet/other-network-dialog.c:
15335         * gnome/applet/vpn-password-dialog.c:
15336         Drop the gtk_dialog_run () calls in favor of connecting to
15337         "response" signals, needed now that the applet is not threaded.
15338
15339 2005-08-31  Dan Williams  <dcbw@redhat.com>
15340
15341         Patch from Bill Moss <bmoss@clemson.edu>
15342         * src/NetworkManagerDevice.c
15343                 - (nm_device_wireless_scan): fix scan timeout values
15344
15345 2005-08-30  Dan Williams  <dcbw@redhat.com>
15346
15347         * gnome/applet/wireless-applet.glade
15348                 - HIG-ify the Other Wireless Networks dialog a bit more
15349                 - Fix some potential segfaults in the info dialog
15350
15351 2005-08-30  Dan Williams  <dcbw@redhat.com>
15352
15353         * gnome/applet/applet-dbus-devices.c
15354                 - Remove nmwa_dbus_get_hal_device_string_property(); unused
15355
15356 2005-08-30  Dan Williams  <dcbw@redhat.com>
15357
15358         * gnome/applet/applet-dbus.[ch]
15359                 - Remove all the nmwa_dbus_call_method_xxxx functions since
15360                         they weren't being used anyway
15361
15362 2005-08-30  Bastien Nocera  <hadess@hadess.net>
15363
15364         * test/nmtestdevices.c: (print_usage), (main):
15365         Check the number of arguments, and fix a typo
15366
15367 2005-08-29  Dan Williams  <dcbw@redhat.com>
15368
15369         Patch from Dumitru Ciobarcianu <Dumitru.Ciobarcianu@iNES.RO>
15370         * gnome/applet/applet.c
15371                 - Define GTK_STOCK_INFO for GTK 2.6 and lower
15372
15373 2005-08-29  Dan Williams  <dcbw@redhat.com>
15374
15375         * gnome/applet/*
15376                 - Don't use threads any more.  Anything that blocks
15377                         (like gtk_dialog_run()) will  have to get fixed up which
15378                         should happen quickly.  We really only had threads to make
15379                         the animation smooth, and when everything got converted over
15380                         to DBus Pending Calls, the need for threads kind of went away
15381
15382 2005-08-29  Christopher Aillon  <caillon@redhat.com>
15383
15384         * gnome/applet/applet.c: Draw VPN connections as radio items
15385         since we don't yet support multiple VPNs.
15386         * gnome/applet/other-network-dialog.c: Use stock icon for Connect
15387         * gnome/vpn-properties/nm-vpn-properties.c: Use stock icon for Delete
15388
15389 2005-08-29  Dan Williams  <dcbw@redhat.com>
15390
15391         Patch from j@bootlab.org
15392         - Make --without-named work
15393         - Make --with-dhcdbd work correctly
15394
15395 2005-08-27  Josep Puigdemont i Casamajó  <josep.puigdemont@gmail.com>
15396
15397         * configure.in: Added "ca" to ALL_LINGUAS.
15398
15399 2005-08-26  Christopher Aillon  <caillon@redhat.com>
15400
15401         * Fix up VPN state handling between the applet and NetworkManager,
15402                 so that the applet doesn't show a VPN as connected when one
15403                 really is not
15404                         - The applet no longer has a pointer to the active VPN's
15405                                 name, but tracks each VPNs state individually
15406                         - NM no longer has a "getActiveVPNConnection" method
15407                         - NM no longer broadcasts the "VPNConnectionChange" signal
15408                         - NM now broadcasts a "VPNConnectionStateChange" signal
15409                                 whenever the state of a VPN changes
15410
15411 2005-08-26  Dan Williams <dcbw@redhat.com>
15412
15413         * gnome/applet/applet-dbus-devices.c
15414           gnome/applet/applet-dbus-vpn.c
15415                 - Remove calls to dbus_pending_call_ref() because we already
15416                         "own" the pending call
15417                 - Remove calls to dbus_pending_call_get_completed() because
15418                         when we are in the callback, the pending call is completed
15419                         by definition
15420
15421 2005-08-22  Dan Williams <dcbw@redhat.com>
15422
15423         Patch by Bill Moss <bmoss@clemson.edu>
15424         * src/dhcp-manager/nm-dhcp-manager.c
15425                 - (nm_dhcp_manager_cancel_transaction): Give dhcdbd/dhclient
15426                         some time to send out a RELEASE if they like
15427
15428 2005-08-22  Dan Williams <dcbw@redhat.com>
15429
15430         Noticed by Bill Moss <bmoss@clemson.edu>
15431         * src/NetworkManagerDbus.c
15432                 - (nm_dbus_get_user_key_for_network_cb): deactivate the device
15433                         instead of just cancelling its activation
15434
15435         * src/NetworkManagerDevice.c
15436                 - (nm_device_deactivate): some small cleanups
15437                 - (nm_device_set_user_key_for_network): deactivate the device
15438                         instead of just cancelling its activation
15439
15440 2005-08-22  Dan Williams <dcbw@redhat.com>
15441
15442         Noticed by Bill Moss <bmoss@clemson.edu>
15443         * src/NetworkManagerDevice.c
15444                 - (nm_device_wireless_scan): fix scan timeout, we were
15445                         waiting way too long for scans to complete
15446
15447 2005-08-22  Dan Williams <dcbw@redhat.com>
15448
15449         Patch from j@bootlab.org:
15450         * src/backends/NetworkManagerDebian.c
15451                 - Make the Debian backend work for static IP again
15452
15453 2005-08-20  Christopher Aillon  <caillon@redhat.com>
15454
15455         * gnome/applet/other-network-dialog.c:
15456         The "Create New Network" and "Connect to Other Network"
15457         dialogs share alot of code, but shouldn't share a window
15458         title.  Give them different ones.
15459
15460         * gnome/applet/wireless-applet.glade:
15461         * vpn-daemons/vpnc/auth-dialog/gnome-two-password-dialog.c:
15462         Some more minor UI tweaks.
15463
15464 2005-08-19  Christopher Aillon  <caillon@redhat.com>
15465
15466         * gnome/applet/other-network-dialog.c:
15467         * gnome/applet/wireless-applet.glade:
15468         Also need mnemonic widgets, and underline enabled.
15469
15470 2005-08-19  Dan Williams <dcbw@redhat.com>
15471
15472         * vpn-daemons/vpnc/nm-vpnc-service.c
15473                 - (vpnc_watch_cb): remove no-longer-relevant comment
15474                 - (write_config_option): new function, helper to write
15475                         config options to vpnc's stdin
15476                 - (nm_vpnc_config_write): use the new helper, make the
15477                         code shorter
15478
15479 2005-08-19  Christopher Aillon <caillon@redhat.com>
15480
15481         * gnome/applet/passphrase-dialog.c:
15482         * gnome/applet/wireless-applet.glade:
15483         Make the passphrase dialog response based, and treat
15484         responses other than OK (such as Esc, [X]) as a cancel.
15485
15486 2005-08-18  Christopher Aillon <caillon@redhat.com>
15487
15488         * initscript/Gentoo/NetworkManager:
15489         * initscript/RedHat/NetworkManager:
15490         * initscript/RedHat/NetworkManagerDispatcher:
15491         * initscript/SUSE/networkmanager:
15492         CVS remove these in place of .in replacements
15493
15494         * configure.in:
15495         * initscript/Gentoo/NetworkManager.in:
15496         * initscript/RedHat/NetworkManager.in:
15497         * initscript/RedHat/NetworkManagerDispatcher.in:
15498         * initscript/SUSE/networkmanager.in:
15499         These scripts now are generated so they work still when
15500         NM is built using a bindir other than /usr/bin
15501
15502 2005-08-18  Dan Williams <dcbw@redhat.com>
15503
15504         * gnome/applet/main.c
15505                 - Revert previous change for --no-session since
15506                         --sm-disable does the same thing
15507
15508 2005-08-18  Dan Williams <dcbw@redhat.com>
15509
15510         * gnome/applet/applet-dbus-info.c
15511                 - (nmi_dbus_create_error_message): new function
15512                 - (nmi_dbus_get_key_for_network): correctly use dbus error creation
15513                         functions.  Also don't check for both device _and_ network before
15514                         asking for a user's key, because we may not have gotten all our
15515                         networks back from NM quite yet (due to the dbus pending calls
15516                         coming in later).  Fixes a hang in NM/nm-applet.
15517
15518         * src/NetworkManagerDbus.c
15519                 - (nm_dbus_get_user_key_for_network_cb): handle error conditions in a
15520                         slightly more sane manner, even though we are still broken for
15521                         certain other error conditions.
15522                 - (nm_dbus_get_user_key_for_network): need to pass the network's essid
15523                         to the info-daemon too
15524
15525         * src/NetworkManagerDevice.c
15526                 - Fix some debug messages to be info messages instead
15527
15528 2005-08-18  Dan Williams <dcbw@redhat.com>
15529
15530         * gnome/applet/main.c
15531                 - Add new "--no-session" parameter that disables applet
15532                         session management, ie for testing
15533
15534 2005-08-18  Christopher Aillon <caillon@redhat.com>
15535
15536         * gnome/applet/other-network-dialog.c:
15537         * gnome/applet/wireless-applet.glade: More mnemonics
15538
15539 2005-08-17  Robert Love  <rml@novell.com>
15540
15541         * initscript/SUSE/networkmanager: update
15542
15543 2005-08-17  Dan Williams  <dcbw@redhat.com>
15544
15545         * Tag NM_0_4_1_RELEASE
15546
15547 2005-08-17  Christopher Aillon  <caillon@redhat.com>
15548
15549         * gnome/applet/applet.c: More translatable string cleanup
15550
15551
15552 2005-08-17  Dan Williams  <dcbw@redhat.com>
15553
15554         * gnome/applet/applet-dbus-info.c
15555                 - (nmi_dbus_get_key_for_network): Grab new "new_key" parameter
15556                         from the dbus message, which tells us to unconditionally
15557                         ask the user for a new key.  Otherwise, we pull the key from
15558                         the keyring and return it.  If we fail to get the key from the
15559                         keyring, we ask the user for a new key.
15560                 - (nmi_dbus_get_network_key): new function to grab the key for
15561                         an essid from the keyring.
15562                 - (nmi_dbus_get_network_properties): don't access the keyring here.
15563                         Also, don't return any key in the dbus message.
15564
15565         * src/NetworkManagerDbus.[ch]
15566                 - (nm_dbus_get_user_key_for_network): Add "new_key" parameter to
15567                         indicate that we unconditionally want a new key.  This function
15568                         is now also used to get keys from the info-daemon which are
15569                         pre-stored, not just for asking the user for a new key.  The
15570                         "new_key" parameter indicates whether or not we wish to ask the
15571                         user for a new key.
15572                 - (nm_dbus_get_network_data_cb): we no longer get a key from the
15573                         info-daemon in the return message, so use NULL instead.  The
15574                         key will be filled in at connect time by calling
15575                         nm_dbus_get_user_key_for_network()
15576
15577         * src/NetworkManagerDevice.c
15578                 - (nm_device_wireless_configure): update for "new_key" param to
15579                         nm_dbus_get_user_key_for_network().  We initially set new_key
15580                         to FALSE to see if we have a stored key in the info-daemon, but
15581                         if the connection is unsuccessful at this stage we request a
15582                         new one
15583
15584 2005-08-17  Dan Williams  <dcbw@redhat.com>
15585
15586         * gnome/applet/icons/nm-no-connection.png
15587           gnome/applet/icons/nm-device-wired.png
15588                 - Use Diana's new RJ45 connector icons
15589
15590 2005-08-17  Dan Williams  <dcbw@redhat.com>
15591
15592         * src/NetworkManagerPolicy.c
15593                 - (nm_policy_device_change_check): clarify switching rules if
15594                         both new and old devices are valid; mainly, don't switch
15595                         away from user-requested wireless connection back to a wired
15596                         one
15597
15598 2005-08-17  Dan Williams  <dcbw@redhat.com>
15599
15600         * gnome/applet/Makefile.am
15601                 - Relocate the applet to /usr/bin since it is no longer
15602                         executed by anything, but directly by the user
15603
15604 2005-08-17  Dan Williams  <dcbw@redhat.com>
15605
15606         Patch from Bill Moss <bmoss@clemson.edu>
15607
15608         * gnome/applet/applet-dbus-info.[ch]
15609                 - (nmi_save_network_info): save timestamp for network if it
15610                         was a change requested by the user
15611                 - (nmi_dbus_update_network_info): get user_requested from dbus
15612                         message and pass to nmi_save_network_info()
15613
15614         * gnome/applet/applet.c
15615                 - (nmwa_update_network_timestamp): remove
15616                 - (nmwa_menu_item_activate): don't set timestamp on networks
15617                         here, only after a successful connect in nmi_save_network_info()
15618
15619         * src/NetworkManagerDbus.[ch]
15620                 - (nm_dbus_update_network_info): pass user_requested into the 
15621                         dbus message
15622
15623         * src/NetworkManagerPolicy.c
15624                 - (nm_policy_activation_finish): pass user_requested to
15625                         nm_dbus_update_network_info()
15626
15627 2005-08-16  Robert Love  <rml@novell.com>
15628
15629         * gnome/applet/applet.c: Better "Dial Up" menu item.
15630
15631 2005-08-16  Robert Love  <rml@novell.com>
15632
15633         * gnome/applet/applet.c: use GTK_STOCK_INFO not PROPERTIES for the
15634           "Connection Information" menu item.
15635
15636 2005-08-16  Dan Williams  <dcbw@redhat.com>
15637
15638         Patch from j@bootlab.org
15639         * vpn-daemons/vpnc/Makefile.am: Fix for autoreconf
15640
15641         * configure.in: allow specifying the path to dhcdbd
15642
15643 2005-08-16  Robert Love  <rml@novell.com>
15644
15645         Patch from j@bootlab.org
15646         * src/backends/NetworkManagerDebian.c, src/backends/interface_parser.c,
15647           src/backends/interface_parser.h: Debian dialup support.
15648
15649 2005-08-16  Christopher Aillon  <caillon@redhat.com>
15650
15651         * vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade:
15652         * gnome/applet/applet.c: Add some mnemonics for VPNC
15653
15654         * vpn-daemons/.cvsignore: fix this up a little bit
15655
15656 2005-08-16  Robert Love  <rml@novell.com>
15657
15658         * src/backends/NetworkManagerSuSE.c: improve the SUSE-backend dial up
15659           support.
15660
15661 2005-08-16  Christopher Aillon  <caillon@redhat.com>
15662
15663         * gnome/applet/applet.c: Split markup out of translatable strings
15664         and clean up logic a little bit.  (fixes #309012)
15665
15666 2005-08-15  Christopher Aillon  <caillon@redhat.com>
15667
15668         * gnome/vpn-properties/nm-vpn-properties.c:
15669         * gnome/vpn-properties/nm-vpn-ui-interface.h:
15670         * vpn-daemons/vpnc/properties/nm-vpnc.c:
15671         Makeshift fix to remove newlines from translatable strings.
15672         Note that we now return an allocated string, so callers of
15673         get_confirmation_details () must now call g_free () on the
15674         result. (fixes #309033).
15675
15676 2005-08-12  Robert Love  <rml@novell.com>
15677
15678         * gnome/applet/applet-dbus.c: remove newlines from translatable
15679           strings--not needed here anyway. (fix b.g.o #309011)
15680         * src/nm-netlink.monitor.c: don't translate "%s" (fix b.g.o #172391)
15681
15682 2005-08-11  Robert Love  <rml@novell.com>
15683
15684         * gnome/applet/applet.c: mark string as translatable.
15685
15686 2005-08-11  Robert Love  <rml@novell.com>
15687
15688         * initscript/SUSE/networkmanager: update.
15689
15690 2005-08-11  Dan Williams  <dcbw@redhat.com>
15691
15692         * src/nm-dhcp-manager.c
15693                 - (nm_dhcp_manager_get_ip4_config): if for some reason we don't get
15694                         an gateway returned from DHCP, try to use the address of the DHCP
15695                         server as the gateway instead.  Found by Ralf Ertzinger.
15696
15697 2005-08-10  Robert Love  <rml@novell.com>
15698
15699         * gnome/applet/applet.c: Make applet->dbus_thread joinable so we can
15700           wait for it on exit; call exit() in nmwa_destroy() to jump ship.
15701
15702 2005-08-10  Dan Williams  <dcbw@redhat.com>
15703
15704         Patch from Bill Moss <bmoss@clemson.edu>
15705         * Consolidate writes of access point information updates to the info daemon
15706                 so that we only do it when the connection to the access point was
15707                 successful.  Also consolidates updates to GConf in the Gnome applet.
15708
15709         * src/nm-netlink-monitor.c
15710                 - Silence compile warning when calling g_object_new()
15711
15712 2005-08-08  Dan Williams  <dcbw@redhat.com>
15713
15714         Patch from Steev <steev@steev.net>:
15715         * src/backends/NetworkManagerGentoo.c
15716                 - Stub new dialup backend functions
15717
15718 2005-08-08  Dan Williams  <dcbw@redhat.com>
15719
15720         Patch from Colin Slater:
15721         * src/backends/NetworkManagerGentoo.c
15722                 - (nm_system_update_dns): Fix exit status check for restarting
15723                         nscd
15724
15725 2005-08-05  Robert Love  <rml@novell.com>
15726
15727         * NetworkManager.h,
15728           gnome/applet/applet-dbus-devices.c,
15729           gnome/applet/applet-dbus-devices.h,
15730           gnome/applet/applet-dbus.c,
15731           gnome/applet/applet.c,
15732           gnome/applet/applet.h,
15733           src/NetworkManager.c,
15734           src/NetworkManagerMain.h,
15735           src/NetworkManagerSystem.h,
15736           src/backends/NetworkManagerRedHat.c,
15737           src/backends/NetworkManagerSuSE.c,
15738           src/nm-dbus-nm.c: basic dialup support using distro infrastructure
15739
15740 2005-08-05  Robert Love  <rml@novell.com>
15741
15742         * gnome/applet/other-network-dialog.c: default the adhoc network to the
15743           machine's hostname to make adhoc creation idiot-proof.
15744
15745 2005-08-04  Robert Love  <rml@novell.com>
15746
15747         * gnome/applet/other-network-dialog.c: fix leak. "label" needs to be
15748           freed.
15749
15750 2005-08-04  Dan Williams  <dcbw@redhat.com>
15751
15752         * gnome/applet/applet-dbus-info.c
15753           gnome/applet/applet-dbus-info.h
15754                 - (nmi_dbus_update_network_auth_method->nmi_save_network_info): generalize
15755                         to store key, key type, and auth method rather than just auth method
15756                 - (nmi_dbus_update_network_info): new function
15757                 - (nmi_dbus_info_message_handler): updateNetworkAuthMethod -> updateNetworkInfo
15758
15759         * gnome/applet/passphrase-dialog.c
15760                 - (nmi_passphrase_dialog_ok_clicked): call nmi_save_network_info() instead
15761                         of saving the info ourselves
15762
15763         * gnome/libnm_glib/libnm_glib.c
15764                 - Remove the stupid version check for dbus
15765
15766         * src/NetworkManagerAP.c
15767           src/NetworkManagerAP.h
15768                 - (nm_ap_get_enc_key_source): return 'const char *' rather than 'char *'
15769
15770         * src/NetworkManagerDbus.c
15771           src/NetworkManagerDbus.h
15772                 - (nm_dbus_update_network_auth_method -> nm_dbus_update_network_info): Update
15773                         more than just the auth method
15774
15775         * src/NetworkManagerDevice.c
15776                 - Update network info at the appropriate times
15777
15778 2005-07-29  Ray Strode  <rstrode@redhat.com>
15779
15780         * src/NetworkManager.c (nm_info_handler): don't use input as format
15781         string (Spotted by Ian Jackson).
15782
15783 2005-07-27  Dan Williams  <dcbw@redhat.com>
15784
15785         * src/nm-dbus-nm.c
15786           src/nm-dbus-net.c
15787                 - Random cleanups of spacing
15788
15789         * gnome/applet/applet.h
15790           gnome/applet/other-network-dialog.c
15791           gnome/applet/passphrase-dialog.c
15792                 - Conslidate usage of NMWAEncryptionKeyTypes enum
15793
15794         Patch from Bill Moss:
15795                 - Make Other Wireless Networks work again with encryption keys
15796
15797 2005-07-26  Dan Williams  <dcbw@redhat.com>
15798
15799         Patch from Steev <steev@steev.net>:
15800         * src/backends/NetworkManagerGentoo.c
15801           src/backends/Makefile.am
15802                 - Fix up Gentoo backend
15803
15804 2005-07-26  Robert Love  <rml@novell.com>
15805
15806         * src/backends/NetworkManagerSuSE.c: misc. cleanup
15807
15808 2005-07-25  Robert Love  <rml@novell.com>
15809
15810         * gnome/applet/applet.c: make the "Wired" menu item a radio button,
15811           in the same group as the wireless networks, since they are all
15812           mutually exclusive.
15813
15814 2005-07-24  Ray Strode  <rstrode@redhat.com>
15815
15816         * src/nm-netlink-monitor.c (nm_netlink_monitor_new): 
15817         remove unneeded NULL arg from g_object_new().  Any
15818         warnings caused by not having the extra NULL are just a
15819         result of a bug in glib 2.7.0 - 2.7.2.
15820
15821 2005-07-22  Robert Love  <rml@novell.com>
15822
15823         * gnome/libnm_glib/libnm_glib.c: support D-BUS version 0.35, too
15824
15825 2005-07-22  Robert Love  <rml@novell.com>
15826
15827         * src/nm-netlink-monitor.c: g_object_new() needs at least three
15828           parameters (gcc 4.0.2 warning fix).
15829
15830 2005-07-18  Robert Love  <rml@novell.com>
15831
15832         Suggested by Aaron Bockover (abockover@novell.com)
15833         * gnome/applet/other-network-dialog.c: ASCII is an acronym, thus
15834           s/Ascii/ASCII
15835         * gnome/applet/passphrase-dialog.c: ditto
15836         * gnome/applet/wireless-applet.glade: ditto
15837
15838 2005-07-13  Dan Williams  <dcbw@redhat.com>
15839
15840         Patch from Ray Strode <halfline@gmail.com>
15841         * vpn-daemons/vpnc/nm-vpnc-service.c
15842                 - Don't let vpnc daemonize, fixes some races with PID file reading
15843
15844 2005-07-13  Dan Williams  <dcbw@redhat.com>
15845
15846         Patch from Ray Strode <halfline@gmail.com>
15847         * Random cleanups for strict CFLAGS
15848
15849 2005-07-07  Dan Williams  <dcbw@redhat.com>
15850
15851         Patch from Derek Atkins <warlord@MIT.EDU>
15852         * src/nm-dbus-net.c:
15853                 - (nm_dbus_get_ap_from_object_path): differentiate similar ESSIDs
15854
15855 2005-07-07  Dan Williams  <dcbw@redhat.com>
15856
15857         Patch from Jos Dehaes <jos_dehaes@fastmail.fm>
15858         * src/backends/NetworkManagerGentoo.c
15859                 - Gentoo backend Static IP nameserver fixes
15860                 - General Gentoo backend goodness
15861
15862 2005-07-07  Dan Williams  <dcbw@redhat.com>
15863
15864         Patch from Bastien Nocera:
15865         * gnome/applet/applet.c
15866                 - Fix up error reporting when icons or glade files are missing
15867
15868 2005-07-07  Robert Love  <rml@novell.com>
15869
15870         * gnome/applet/applet.c: do not draw the VPN menu's seperator if there
15871           are not any VPN connections above it.
15872
15873 2005-07-07  Robert Love  <rml@novell.com>
15874
15875         * gnome/applet/applet.c: whoops, left some "dog" debugging code in.
15876
15877 2005-07-05  Robert Love  <rml@novell.com>
15878
15879         * src/NetworkManagerSystem.c: bail out if asked to set a gateway of
15880           zero.
15881
15882 2005-07-05  Robert Love  <rml@novell.com>
15883
15884         * src/NetworkManagerDevice.c: use link-local (autoip) on DHCP failure
15885           on wired or unencrypted wireless.
15886
15887 2005-07-01  Robert Love  <rml@novell.com>
15888
15889         * src/NetworkManagerSystem.c: Print the error via strerror().
15890
15891 2005-06-30  Robert Love  <rml@novell.com>
15892
15893         * gnome/vpn-properties/nm-vpn-properties.c: display an error dialog and
15894           then exit if the glade file is not found.  currently the application
15895           just hangs.
15896
15897 2005-06-30  Robert Love  <rml@novell.com>
15898
15899         * src/nm-dbus-nm.c: Patch by Bill Moss <bmoss@clemson.edu> to
15900           explicitly up all interfaces on wake from sleep.
15901
15902 2005-06-30  Robert Love  <rml@novell.com>
15903
15904         * gnome/applet/applet.c: Add right-click menu item "Connection Info"
15905           with information about the currently active connection.
15906         * gnome/applet/applet.h: (ditto)
15907         * gnome/applet/wireless-applet.glade: (ditto), new file
15908
15909 2005-06-30  Robert Love  <rml@novell.com>
15910
15911         * src/NetworkManagerDevice.c: g_malloc0 cannot fail.
15912         * src/nm-dbus-nm.c: print when we sleep and wake up.
15913         * gnome/applet/menu-items.c: whitespace, misc. cleanup.
15914         * configure.in: look in "/usr/sbin" for dhcdbd, too. (it shouldn't be
15915           in /sbin unless D-BUS is, folks).
15916         * README: update to reflect nm-applet replacing NetworkManagerInfo.
15917
15918 2005-06-27  Robert Love  <rml@novell.com>
15919
15920         * src/nm-dbus-nm.c: fix "setWirelessEnabled" call for the enabling
15921           case.
15922
15923 2005-06-27  Robert Love  <rml@novell.com>
15924
15925         * gnome/applet/applet.c: make the 'Wireless Network Discovery' menu
15926           items radios.
15927
15928 2005-06-26  Robert Love  <rml@novell.com>
15929
15930         * src/NetworkManagerDevice.c: be specific about which device in
15931           nm_info() message.
15932
15933 2005-06-23  Adam Weinberger  <adamw@gnome.org>
15934
15935         * src/nm-netlink-monitor.c: correct spelling error.
15936
15937 2005-06-23  Robert Love  <rml@novell.com>
15938
15939         * gnome/applet/applet-dbus-info.c: gnome keyring support!
15940         * gnome/applet/passphrase-dialog.c: more of that keyring!
15941
15942 2005-06-23  Robert Love  <rml@novell.com>
15943
15944         * configure.in: remove extraneous GNOMEKEYRING directives.
15945         * gnome/applet/Makefile.am: s/GNOMEKEYRING/GNOME_KEYRING/.
15946         * gnome/applet/applet.c: nmwa_icons_init: make style local.
15947         * gnome/applet/passphrase-dialog.c: whitespace.
15948
15949 2005-06-23  Robert Love  <rml@novell.com>
15950
15951         * src/NetworkManagerDevice.c: division in assignment was flipped.
15952
15953 2005-06-23  David Zeuthen  <david@fubar.dk>
15954
15955         * gnome/applet/vpn-password-dialog.c (child_stdout_data_cb): Send a
15956         signal to the child to indicate that we got what we wanted when we
15957         see two new-lines right after each other.
15958         (nmwa_vpn_request_password): Pass a structure with several members
15959         instead of just the passwords
15960
15961 2005-06-23  Dan Williams <dcbw@redhat.com>
15962
15963         * src/NetworkManager.c
15964           src/NetworkManagerMain.h
15965                 - (nm_get_hal_ctx): new function, move Hal initialization code here
15966                 - (nm_hal_init): new function, init libhal context then add devices
15967                 - (nm_hal_deinit): new function, clean up libhal context
15968                 - (nm_data_free): Move Hal cleanup here
15969                 - (main): check whether Hal is running, and if so, get a list of
15970                         network devices from it
15971
15972         * src/NetworkManagerDbus.c
15973                 - (nm_dbus_signal_filter): trap NameOwnerChanged signals for Hal,
15974                         and when it appears, get a list of network devices from it.  If
15975                         Hal goes away, clean up the libhal context
15976
15977 2005-06-22  Robert Love  <rml@novell.com>
15978
15979         * dispatcher-daemon/NetworkManagerDispatcher.c: fix FIXME: check
15980           permissions of scripts before executing.
15981
15982 2005-06-21  Robert Love  <rml@novell.com>
15983
15984         * initscript/SUSE/networkmanager: update.
15985         * src/backends/NetworkManagerSuSE.c: cleanup.
15986
15987 2005-06-21  Robert Love <rml@novell.com>
15988
15989         * gnome/applet/applet.c: use menu mnemonics.
15990         * gnome/applet/menu-items.c: (ditto)
15991
15992 2005-06-21  Robert Love  <rml@novell.com>
15993
15994         * applet/applet-dbus-devices.c: mark non-static functions static.
15995         * applet/applet-dbus-vpn.c: (ditto)
15996         * applet/applet.c: (ditto)
15997         * applet/nm-device.h: (ditto)
15998         * applet/other-network-dialog.c: (ditto)
15999         * applet/passphrase-dialog.c: (ditto)
16000         * NetworkManager.c: (ditto)
16001         * NetworkManagerDbus.c: (ditto)
16002         * NetworkManagerDevice.c: (ditto)
16003         * NetworkManagerPolicy.c: (ditto)
16004         * NetworkManagerUtils.c: (ditto)
16005         * NetworkManagerWireless.c: (ditto)
16006         * NetworkManagerWireless.h: (ditto)
16007         * nm-netlink-monitor.c: (ditto)
16008         * applet/applet-dbus-info.c: (ditto), add FIXME's.
16009         * vpn-manager/nm-dbus-vpn.c: (ditto), remove shadowed variable.
16010         * autoip.c: include autoip.h.
16011         * autoip.h: new file.  define get_autoip().
16012         * nm-netlink-monitor.h: define nm_netlink_close_connection().
16013         * NetworkManagerDbus.h: remove duplicate definitions.
16014
16015 2005-06-20  Robert Love  <rml@novell.com>
16016
16017         * Makefile.am: Add missing intltool-foo.in generated files to
16018           EXTRA_DIST so that 'distcheck' works.  Also add DISTCLEANFILES
16019           with the start of stuff to cleanup on 'distclea'.
16020         * configure.in: add AC_PROG_INTLTOOL macro so that we do the intltool
16021           stuff right and 'distcheck' works.
16022         * po/POTFILES.in: Remove examples/python/systray/eggtrayicon.c.  If
16023           we keep it, we need to add all of examples/* to EXTRA_DIST and do
16024           Makefile.am for each.  And systray/Makefile needs to be redone.
16025
16026 2005-06-19  Dan Williams <dcbw@redhat.com>
16027
16028         * src/NetworkManagerDevice.c
16029         - (nm_device_wireless_process_scan_results): scan every 20s when
16030           disconnected and scanning is ALWAYS_SCAN or WHEN_UNASSOCIATED
16031
16032 2005-06-19  Dan Williams <dcbw@redhat.com>
16033
16034         * WEXT_DEBUG->IOCTL_DEBUG, extend checking to all ioctl() calls
16035
16036 2005-06-18  Ray Strode <rstrode@redhat.com>
16037
16038         * src/nm-netlink-monitor.c 
16039         (nm_netlink_monitor_event_handler): check for the presence
16040         of either error condition not both. 
16041         
16042         (nm_netlink_monitor_error_handler): emit error signal if
16043         error occurs.
16044
16045         (nm_netlink_monitor_event_handler),
16046         (nm_netlink_monitor_error_handler),
16047         (nm_netlink_monitor_disconnect_handler): if an 
16048         assertion fails disconnect the event handler to prevent 
16049         infinite loops.
16050
16051         * src/nm-netlink-monitor.h: add new error condition
16052         NM_NETLINK_MONITOR_ERROR_WAITING_FOR_SOCKET_DATA
16053
16054 2005-06-18  Ray Strode <rstrode@redhat.com>
16055
16056         * src/nm-netlink-monitor.c 
16057         (nm_netlink_monitor_event_handler): remove bogus < 0
16058         check on unsigned value and return early if the kernel
16059         didn't send any bytes.
16060
16061 2005-06-17  Robert Love  <rml@novell.com>
16062
16063         * initscript/SUSE/networkmanager: Change the Provides and default
16064         run levels
16065
16066 2005-06-16  Dan Williams <dcbw@redhat.com>
16067
16068         Patch from Robert Love:
16069         * gnome/applet/applet.c
16070                 - Beautify some applet menu item names
16071
16072 2005-06-17  David Zeuthen  <davidz@redhat.com>
16073
16074         * gnome/vpn-properties/nm-vpn-ui-interface.h: Require users of this
16075         API to define NM_VPN_API_SUBJECT_TO_CHANGE to acknowledge API churn.
16076         Also add new methods can_export, import_file and export.
16077
16078         * gnome/vpn-properties/nm-vpn-properties.glade: Add an Export button
16079         to the main UI
16080
16081         * gnome/vpn-properties/nm-vpn-properties.c:
16082         Define NM_VPN_API_SUBJECT_TO_CHANGE so we can actually include
16083         nm-vpn-ui-interface.h.
16084         (update_edit_del_sensitivity): Also update "Export" sensitivity
16085         (add_vpn_connection): Also add new SVC_NAME column
16086         (import_settings): New function
16087         (retrieve_data_from_selected_connection): New function
16088         (edit_cb): Use retrieve_data_from_selected_connection to simplify
16089         this function
16090         (export_cb): New function
16091         (init_app): Also setup the "export" widget
16092         (main): Support the --import-service and --import-file commandline
16093         arguments
16094
16095         * gnome/libnm_glib/libnm_glib.c (libnm_glib_dbus_filter): Also support
16096         D-BUS 0.34
16097
16098 2005-06-16  Dan Williams <dcbw@redhat.com>
16099
16100         Patch from Robert Love:
16101         * gnome/applet/menu-items.c
16102                 - (network_menu_item_new): pass -1 as wireless network
16103                         menu items height size request rather than ascent / 2
16104
16105 2005-06-16  Dan Williams <dcbw@redhat.com>
16106
16107         * Clean up wording in Wireless Scan Methods menu items and constants
16108
16109 2005-06-16  Robert Love  <rml@novell.com>
16110
16111         * po/POTFILES.in
16112                 - remove gtkcell* files
16113
16114 2005-06-15  Dan Williams <dcbw@redhat.com>
16115
16116         Patch from Robert Love: make the applet stetic
16117
16118         * gnome/applet/Makefile.am
16119                 - Don't compile the gtkcellview and gtkcellrendererprogress files
16120
16121         * gnome/applet/gtkcellview.h
16122           gnome/applet/gtkcellview.c
16123           gnome/applet/gtkcellrendererprogress.h
16124           gnome/applet/gtkcellrendererprogress.c
16125                 - Removed
16126
16127         * gnome/applet/menu-items.c
16128                 - Progress bars are 5:1 size ratio
16129                 - Use GTK progress bars rather than internal ones
16130
16131 2005-06-15  Dan Williams <dcbw@redhat.com>
16132
16133         Patch from Robert Love:
16134         * initscript/SUSE/networkmanager
16135                 - Fix typo
16136
16137 2005-06-15  Dan Williams <dcbw@redhat.com>
16138
16139         * src/backends/NetworkManagerSuSE.c
16140           src/backends/NetworkManagerRedHat.c
16141           src/backends/NetworkManagerDebian.c
16142                 - (set_ip4_config_from_resolv_conf): Fix typo I made, '==' -> '='
16143
16144 2005-06-15  Dan Williams <dcbw@redhat.com>
16145
16146         * src/backends/NetworkManagerDebian.c
16147                 - Add nm_system_device_get_use_dhcp() to debian backend
16148
16149         Patch from Kay Sievers:
16150         * src/backends/NetworkManagerSuSE.c
16151                 - Update debian backend for static IP nameservers
16152
16153         * src/NetworkManagerDevice.c
16154                 - Actually set the device to use static IP or DHCP rather
16155                         than always DHCP
16156
16157 2005-06-15  Dan Williams <dcbw@redhat.com>
16158
16159         Patch from Thom May:
16160         * src/backends/NetworkManagerDebian.c
16161                 - Update debian backend for static IP nameservers
16162
16163 2005-06-15  Dan Williams <dcbw@redhat.com>
16164
16165         Patches from Robert Love:
16166         * gnome/applet/wireless-applet.glade
16167                 - Tighten up wording
16168
16169         * src/NetworkManagerDevice.c
16170                 - Remove misplaced ';'
16171
16172         * configure.in
16173           initscript/Makefile.am
16174           initscript/SUSE/Makefile.am
16175           initscript/SUSE/networkmanager
16176                 - Add SUSE initscript
16177
16178 2005-06-12  David Zeuthen  <davidz@redhat.com>
16179
16180         * gnome/vpn-properties/nm-vpn-ui-interface.h: New file
16181
16182         * gnome/vpn-properties/nm-vpn-properties.glade: New file
16183
16184         * gnome/vpn-properties/nm-vpn-properties.c: New file
16185
16186         * gnome/vpn-properties/Makefile.am: New file
16187
16188         * src/vpn-manager/nm-vpn-manager.h: Rework prototypes to take an
16189         array of passwords
16190
16191         * src/vpn-manager/nm-vpn-manager.c
16192         (nm_vpn_manager_activate_vpn_connection): Take an array of passwords
16193         instead of just a single one
16194
16195         * src/vpn-manager/nm-dbus-vpn.c:
16196         (nm_dbus_vpn_get_vpn_connection_properties): Also append service_name
16197         here
16198         (nm_dbus_vpn_activate_connection): Rework to take an array of passwords
16199
16200         * gnome/applet/vpn-password-dialog.h (nmwa_vpn_request_password): 
16201         Change the interface here to give a list of passwords. Also, don't
16202         require username, but do require service
16203
16204         * gnome/applet/vpn-password-dialog.c: Look up the VPN .name files for
16205         the binary for the auth-dialog and use that instead of putting up a
16206         dialog asking for a single password
16207
16208         * gnome/applet/vpn-connection.[ch]: Don't remember the user_name,
16209         however do remember the service
16210
16211         * gnome/applet/main.c (main): Setup i18n
16212
16213         * gnome/applet/applet.c (nmwa_update_state): Add a line "VPN
16214         connection to '%s'" to the tooltip if we are connected using VPN
16215         (nmwa_menu_vpn_item_activate): Check last_attempt_success gconf
16216         key to determine whether we the auth-dialog needs to
16217         reprompt. Also cope with the fact that the auth-dialog now returns
16218         an array of passwords.
16219         (nmwa_menu_configure_vpn_item_activate): New handler for
16220         "Configure VPN..." menu item
16221         (nmwa_menu_add_vpn_menu): Add the "Configure VPN..." menu item
16222         (is_vpn_available): New function to determine if we got any
16223         NM-compatible VPN software installed
16224         (nmwa_menu_add_devices): Use is_vpn_available to add VPN menu
16225         items only if we have NM-compatible VPN software installed
16226         (nmwa_gconf_vpn_connections_notify_callback): Slightly rework the
16227         logic for detecting when VPN connections are removed
16228
16229         * gnome/applet/applet-dbus.h: Removed the prototypes for 
16230         nmwa_dbus_vpn_activate_connection, nmwa_dbus_vpn_deactivate_connection
16231         since these are defined elsewhere
16232
16233         * gnome/applet/applet-dbus.c (set_vpn_last_attempt_status): New
16234         function used to keep track of whether the last attempt succeded
16235         (nmwa_dbus_filter): Update last_attempt according to whether the
16236         VPN connection could be established or not
16237
16238         * gnome/applet/applet-dbus-vpn.h (nmwa_dbus_vpn_deactivate_connection): 
16239         Change prototype to take an array of passwords, not just a single
16240         password
16241
16242         * gnome/applet/applet-dbus-vpn.c (nmwa_dbus_vpn_properties_cb): Only
16243         update service, not user
16244         (nmwa_dbus_vpn_remove_one_vpn_connection): Check that applet->
16245         dbus_active_vpn_name is not NULL before using it
16246         (nmwa_dbus_vpn_activate_connection): Send the passwords as a
16247         string array instead of assuming a single password
16248
16249         * gnome/applet/applet-dbus-info.c:
16250         (nmi_dbus_get_vpn_connection_properties): Use the logged in user for
16251         user name; don't read from gconf
16252
16253         * gnome/applet/Makefile.am: Also export SYSCONFDIR and 
16254         VPN_NAME_FILES_DIR
16255
16256         * gnome/Makefile.am (SUBDIRS): Add vpn-properties
16257
16258         * configure.in: Add checks for gmodule-2.0.
16259         Generate gnome/vpn-properties/Makefile. Don't generate any Makefile's
16260         in vpn-daemons nor vpn-daemons/vpnc. We have separate autotooled
16261         projects under vpn-daemons now.  See vpn-daemons/vpnc/Changelog
16262         for details
16263
16264         * vpn-daemons/Makefile.am: Removed
16265
16266         * vpn-daemons/README: New file to describe extensions points for VPN
16267         software
16268
16269 2005-06-10  Dan Williams <dcbw@redhat.com>
16270
16271         * src/backends/NetworkManagerRedHat.c
16272                 - (get_current_profile_name): new function, grab current network profile name from
16273                         /etc/sysconfig/network
16274                 - (set_ip4_config_from_resolv_conf): new function, parse a resolv.conf and
16275                         update an IP4 Config structure's settings from it
16276                 - (nm_system_device_get_system_config): if we're using static IP on this device,
16277                         get DNS info from current network profile
16278
16279 2005-06-09  Dan Williams <dcbw@redhat.com>
16280
16281         Patch from Robert Love:
16282         * src/NetworkManagerDevice.c
16283           src/NetworkManagerUtils.c
16284                 - 64-bit build fixes
16285
16286 2005-06-09  Dan Williams <dcbw@redhat.com>
16287
16288         Patch from Kay Sievers and Robert Love:
16289         * configure.in
16290           src/backends/Makefile.am
16291           src/backends/NetworkManagerSuSE.c
16292                 - Add SuSE support
16293
16294 2005-06-09  Dan Williams <dcbw@redhat.com>
16295
16296         * NetworkManager.h
16297                 - Add NMWirelessScanMethod enum for scan methods
16298
16299         * gnome/applet/applet-dbus-devices.c
16300                 - (nmwa_dbus_update_scanning_enabled_cb): remove
16301                 - (nmwa_dbus_update_scanning_enabled): remove
16302                 - (nmwa_dbus_update_devices): don't call nmwa_dbus_update_scanning_enabled() anymore
16303                         since it got removed
16304                 - (nmwa_dbus_enable_scanning): remove
16305
16306         * gnome/applet/applet-dbus-info.c
16307                 - (nmi_dbus_signal_update_scan_method): new function, signal NetworkManager to
16308                         update the wireless scanning method from NMI
16309                 - (nmi_dbus_get_wireless_scan_method): new function, return wireless scanning
16310                         method value to NetworkManager
16311                 - (nmi_dbus_info_message_handler): respond to the "getWirelessScanMethod" method call
16312
16313         * gnome/applet/applet-dbus-info.h
16314                 - Add prototype for nmi_dbus_signal_update_scan_method
16315
16316         * gnome/applet/applet.c
16317                 - (scanning_menu_update): new function, update one GtkCheckMenuItem from the
16318                         Wireless Scanning menu based on current wireless scan method
16319                 - (nmwa_menu_scanning_item_activate): new function, callback for GTK "activate"
16320                         signal for Wireless Scanning menu items, tell NetworkManager the new method
16321                         and update our menu items to make sure the right one is checked
16322                 - (nmwa_set_scanning_enabled_cb): remove
16323                 - (nmwa_context_menu_update): remove references to pause_scanning_item
16324                 - (nmwa_context_menu_create): remove pause_scanning_item, and add new Wireless
16325                         Scanning menu item
16326                 - (nmwa_gconf_get_wireless_scan_method): new method, pull wireless scanning method
16327                         from GConf
16328                 - nmwa_gconf_networks_notify_callback -> nmwa_gconf_info_notify_callback: generalize
16329                         so we get notified of preference values too
16330                 - (nmwa_get_instance): monitor GCONF_PATH_WIRELESS rather than GCONF_PATH_WIRELESS_NETWORKS
16331
16332         * gnome/applet/applet.h
16333                 - GCONF_PATH_WIRELESS added, one level below GCONF_PATH_WIRELESS_NETWORKS
16334                 - Add wireless scan method member to applet data
16335                 - Remove pause_scanning_item, add Wireless Scanning submenu
16336
16337         * src/NetworkManager.c
16338                 - (nm_data_new): default to NM_SCAN_METHOD_ON
16339                 - (main): grab scanning method from NMI if we can
16340
16341         * src/NetworkManagerDbus.c
16342                 - (nm_dbus_update_wireless_scan_method_cb): new function, callback from
16343                         nm_dbus_update_wireless_scan_method()
16344                 - (nm_dbus_update_wireless_scan_method): new function to grab scanning method
16345                         from NMI
16346                 - (nm_dbus_nmi_is_running): redundant function, removed
16347                 - (nm_dbus_signal_filter): trap "WirelessScanMethodUpdate" signal, grab scanning method
16348                         when NMI comes back
16349
16350         * src/NetworkManagerDevice.c
16351                 - (nm_device_is_activated): return TRUE if the device is activated
16352                 - (nm_device_wireless_scan): don't scan if the scan method is OFF, or if its AUTO
16353                         and we are activated
16354
16355         * src/nm-dbus-nm.c
16356                 - (nm_dbus_nm_set_scanning_enabled): removed
16357                 - nm_dbus_nm_get_scanning_enabled -> nm_dbus_nm_get_wireless_scan_method
16358                 - (nm_dbus_nm_methods_setup): remove [get | set] ScanningEnabled and add "getWirelessScanMethod"
16359
16360 2005-06-09  Dan Williams <dcbw@redhat.com>
16361
16362         * NetworkManager.h
16363           src/vpn-manager/nm-vpn-service.c
16364                 - NM_VPN_STATE_ERROR -> NM_VPN_STATE_UNKNOWN (more consistent with other enums)
16365
16366 2005-05-27  Dan Williams <dcbw@redhat.com>
16367
16368         * vpn-daemons/vpnc/nm-vpnc-service.c
16369                 - (vpnc_watch_cb): wait a bit before trying to read vpnc's pidfile.
16370                         Should fix the bug where the VPN connection terminates the first time.
16371
16372 2005-05-20  Dan Williams <dcbw@redhat.com>
16373
16374         * NetworkManager.h
16375                 - Differentiate VPN config signals between bad VPN config options
16376                         and bad IP config
16377
16378         * gnome/applet/applet-dbus-info.h
16379                 - Add prototypes for wireless network and vpn connection update functions
16380
16381         * gnome/applet/applet-dbus.c
16382                 - (nmwa_dbus_filter): trap new VPN config error signals from NetworkManager
16383
16384         * gnome/applet/applet.c
16385                 - (nmwa_schedule_vpn_failure_dialog): new dialog text for new VPN config
16386                         error signals
16387                 - (nmwa_gconf_networks_notify_cb): re-enable wireless network change notify
16388                         propogation to NetworkManager
16389                 - (nmwa_gconf_vpn_connections_notify_cb): re-enable vpn connection change
16390                         notify propogation to NetworkManager
16391
16392         * src/NetworkManagerDbus.c
16393                 - (nm_dbus_update_one_allowed_network): make sure to specify which AP list we
16394                         are updating so a network can be removed from it if necessary
16395
16396         * src/vpn-manager/nm-vpn-manager.c
16397                 - (nm_vpn_manager_process_signal): trap new vpn config error signals
16398
16399         * vpn-daemons/vpnc/nm-vpnc-service.c
16400                 - (nm_vpnc_dbus_signal_failure): generalize function for all VPN error signals
16401                 - (nm_vpnc_dbus_signal_launch_failed): remove
16402                 - (nm_vpnc_dbus_signal_connect_failed): remove
16403                 - (nm_vpnc_helper_timer_cb): update for new generalized error signal function
16404                 - (nm_vpnc_schedule_helper_timer): increase timeout to 10s
16405                 - (vpnc_watch_cb): don't whine about exit code if vpnc exited cleanly, update
16406                         for new generalized error signal function, remove config file stuff
16407                 - (nm_vpnc_start_vpnc_binary): grab a stdin pipe to vpnc after spawning it so
16408                         we can write configuration options to it
16409                 - (nm_vpnc_config_file_generate): removed
16410                 - (nm_vpnc_config_write): write configuration options to the vpnc stdin pipe
16411                 - (nm_vpnc_config_options_validate): validate the config options we receive
16412                         from NetworkManager to block potential exploits
16413                 - (nm_vpnc_dbus_handle_start_vpn): call option validation function before
16414                         starting vpnc
16415                 - (nm_vpnc_dbus_process_helper_config_error): actually propogate config error
16416                         to NetworkManager
16417
16418 2005-05-16  Dan Williams  <dcbw@redhat.com>
16419
16420         * vpn-daemons/vpnc/nm-vpnc-service-vpnc-helper.c
16421                 - (main): Work correctly with vpnc 0.3.3 by exiting if the "reason" code
16422                         is not "connect"
16423
16424 2005-05-16  Dan Williams  <dcbw@redhat.com>
16425
16426         Patch from Tomislav Vujec <tvujec@redhat.com>
16427         * gnome/applet/applet-dbus-info.c
16428                 - (nmi_dbus_get_vpn_connection_routes): new function, pull routes out of
16429                         GConf and pass them to NetworkManager.  New key is 'routes' under
16430                         the VPN connection, and should be a string list
16431
16432         * src/NetworkManagerSystem.c
16433                 - (nm_system_vpn_device_set_from_ip4_config): if user-defined routes exist,
16434                         set them on the device when we set the rest of the VPN config.  Ensure
16435                         they are in the correct format since they are passed directly to the
16436                         command line.
16437
16438         * src/backends/NetworkManagerRedHat.c
16439           src/backends/NetworkManagerDebian.c
16440                 - (nm_system_device_add_route_via_device_with_iface): new function
16441
16442         * src/vpn-manager/nm-dbus-vpn.c
16443                 - (nm_dbus_vpn_get_routes): grab VPN routes from NetworkManagerInfo
16444
16445         * src/vpn-manager/nm-vpn-manager.c
16446                 - (nm_vpn_manager_handle_ip4_config_signal): grab routes from NMI and pass
16447                         them into the IP4 config functions
16448
16449 2005-05-15  Dan Williams  <dcbw@redhat.com>
16450
16451         From Filip Miletic:
16452         * po/sr.po
16453           po/sr@Latn.po
16454           configure.in
16455                 - Serbian translation added
16456
16457 2005-05-15  Dan Williams  <dcbw@redhat.com>
16458
16459         * dispatcher-daemon/NetworkManagerDispatcher.c
16460                 - (main): sync arguments with NetworkManager and the applet, now use
16461                         "--no-daemon" rather than "daemon=no"
16462                 - (nmd_print_usage): Fix script path in usage message
16463
16464 2005-05-15  Dan Williams  <dcbw@redhat.com>
16465
16466         * src/NetworkManagerDevice.[ch]
16467           src/NetworkManagerPolicy.c
16468           src/NetworkManager.c
16469           src/nm-dbus-nm.c
16470                 - Remove the "just_added" parameter from nm_device_deactivate().  We no
16471                         longer send the DeviceNoLongerActive signal unconditionally, but only
16472                         when the device is actually active.
16473
16474         * dispatcher-daemon/NetworkManagerDispatcher.c
16475                 - (nmd_execute_scripts): convert to GLib directory functions from opendir(),
16476                         and simplify the logic
16477                 - (nmd_get_device_name): copy value from dbus reply so we don't segfault when
16478                         we free it later on
16479
16480         * initscript/RedHat/Makefile.am
16481           initscript/RedHat/NetworkManagerDispatcher
16482                 - Add initscript for NetworkManagerDispatcher
16483
16484
16485         Patch from Bill Moss:
16486         * dispatcher-daemon/NetworkManagerDispatcher.c
16487                 - Remove IP4AddressChange signal code including nmd_get_device_ip4_address()
16488
16489         * src/NetworkManagerDbus.c
16490                 - (nm_dbus_signal_device_ip4_address_change): remove.  If the device goes up,
16491                         and DeviceNowActive gets signaled, then the device has a new IP address
16492                         anyway.  There's no need for a separate signal.
16493
16494         * src/NetworkManagerDevice.c
16495                 - (nm_device_update_ip4_address): Don't send IP4AddressChange signal
16496
16497         * src/NetworkManagerPolicy.c
16498                 - (nm_policy_activation_finish): Send DeviceNowActive signal when the device
16499                         activates successfully.  This kind of went missing when I reworked the
16500                         activation code.
16501
16502 2005-05-15  Dan Williams  <dcbw@redhat.com>
16503
16504         * configure.in
16505                 - Check for dhcdbd and error if its not found
16506
16507         * src/dhcp-manager/Makefile.am
16508           src/dhcp-manager/nm-dhcp-manager.c
16509                 - Use path to dhcdbd that configure found
16510
16511 2005-05-14  Dan Williams  <dcbw@redhat.com>
16512
16513         * gnome/applet/nm-device.c
16514                 - (network_device_sort_wireless_networks, sort_networks_function): New functions to
16515                         sort wireless networks alphabetically
16516
16517         * gnome/applet/applet-dbus-devices.c
16518                 - (mwa_dbus_devices_lock_and_copy): Sort network device's wireless network lists
16519                         before copying them over to the GUI
16520
16521 2005-05-14  Dan Williams  <dcbw@redhat.com>
16522
16523         * src/NetworkManager.c
16524                 - (device_stop_and_free): Deactivate VPN connections before deactivating devices,
16525                         fixes a deadlock on shutdown with a VPN connection active.  This function locks
16526                         the device list, as does nm_get_active_device() which is called from
16527                         nm_vpn_manager_deactivate_vpn_connection().
16528
16529 2005-05-14  Dan Williams  <dcbw@redhat.com>
16530
16531         * NetworkManager.h
16532                 - Add signals for VPN Launch and Connect failures
16533
16534         * gnome/applet/applet-dbus.c
16535                 - (nmwa_dbus_filter): Trap new VPN launch & connect failure signals
16536
16537         * gnome/applet/applet.c
16538                 - (nmwa_show_vpn_failure_dialog): generalize old nmwa_show_vpn_login_failure_dialog()
16539                         function to handle all VPN failure messages
16540                 - (nmwa_schedule_vpn_failure_dialog): generalize old  nmwa_schedule_vpn_login_failure_dialog()
16541                         function to hanlde all VPN failure  messages
16542                 - (show_warning_dialog): work around focus-stealing prevention
16543
16544         * gnome/applet/other-network-dialog.c
16545           gnome/applet/passphrase-dialog.c
16546                 - (update_button_cb): Make sure the OK button is enabled when it should be, fixes
16547                         problem where it never enabled for ASCII Key and Hex Key types
16548
16549         * gnome/applet/wireless-applet.glade
16550                 - Add window title to Other Wireless Network Dialog
16551
16552         * src/vpn-manager/nm-dbus-vpn.c
16553                 - (nm_dbus_vpn_signal_vpn_failed): generalize old nm_dbus_vpn_signal_vpn_login_failed()
16554                         function to handle all VPN failure messages
16555
16556         * src/vpn-manager/nm-vpn-manager.c
16557                 - (nm_vpn_manager_process_signal): trap and proxy VPN launch & connect failure signals too
16558
16559         * vpn-daemons/vpnc/nm-vpnc-service.c
16560                 - (nm_vpnc_dbus_signal_launch_failed): new function
16561                 - (nm_vpnc_dbus_signal_connect_failed): new function
16562                 - (nm_vpnc_helper_timer_cb): signal connect failure on timeout
16563                 - (vpnc_watch_cb): signal connection failure when vpnc exits with connection failure
16564                 - (nm_vpnc_start_vpnc_binary): search a number of locations for vpnc
16565                 - (nm_vpnc_dbus_handle_start): send launch failure signal when we fail to launch vpnc
16566
16567 2005-05-11  Dan Williams  <dcbw@redhat.com>
16568
16569         * vpn-daemons/vpnc/nm-vpnc-service.c
16570                 - (nm_vpnc_start_vpnc_binary): NULL-ify GError before using it
16571                 - (nm_vpnc_config_file_generate): Attempt to ensure that the path for the config
16572                         file exists before trying to write it out.
16573
16574 2005-05-10  Dan Williams  <dcbw@redhat.com>
16575
16576     * gnome/applet/applet-dbus-device.c
16577         - (nmwa_dbus_set_device): remove check for valid key and key type, which 
16578             prevented just entering ESSID and leaving key and key type up to
16579             NetworkManager (which should have them already cached)
16580
16581 2005-05-08  Dan Williams  <dcbw@redhat.com>
16582
16583         * src/NetworkManagerPolicy.c
16584                 - (nm_policy_activation_finish): Don't set NM_ACT_STAGE_ACTIVATED here, instead...
16585                 - (nm_policy_schedule_activation_finish): Set NM_ACT_STAGE_ACTIVATED here to
16586                         fix a situation where NM is told to terminate and the device stops activation,
16587                         but the main thread isn't aware of that because it would never have run
16588                         nm_policy_activation_finish() to set the ACTIVATED flag, because the main loop
16589                         had already quit.
16590
16591         * src/NetworkManagerDevice.c
16592                 - (nm_device_probe_wired_link_state): cosmetic fixes
16593                 - (nm_device_activate_stage5_ip_config_commit): Don't check link state if
16594                         we've failed to activate or been canceled.
16595                 - (nm_ac_test): nm_debug -> nm_info for "waiting for device to cancel" message
16596
16597 2005-05-08  Dan Williams  <dcbw@redhat.com>
16598
16599         * src/NetworkManagerWireless.c
16600                 - (nm_wireless_qual_to_percent): Fix #if -> #ifdef, print out the "updated"
16601                         value of WEXT quality structures, and add a debug message when we cannot
16602                         determine any quality % at all
16603
16604 2005-05-08  Dan Williams  <dcbw@redhat.com>
16605
16606         * src/dhcp-manager/nm-dhcp-manager.c
16607                 - (nm_dhcp_manager_begin_transaction): Tell dhclient to release leases when
16608                         it goes down.
16609
16610 2005-05-06  Dan Williams  <dcbw@redhat.com>
16611
16612         * gnome/applet/applet-dbus-device.c
16613           gnome/applet/applet-dbus-info.c
16614           gnome/applet/applet-dbus.c
16615           gnome/applet/applet.c
16616           gnome/applet/applet.h
16617                 - (nmwa_get_device_for_nm_device) -> (nmwa_get_device_for_nm_path)
16618
16619         * gnome/applet/applet-dbus.c
16620                 - (nmwa_dbus_filter): trap DeviceCarrierOn/DeviceCarrierOff signals
16621                         so we notice when wired device's carriers come back on.  Should
16622                         fix issue with wired devices being grayed out even if the cable
16623                         is in, for devices that support carrier detection.
16624
16625         * gnome/applet/applet.c
16626                 - (nmwa_driver_notify): bash focus-stealing prevention in the face
16627                 - (nmwa_act_stage_to_pixbuf): Clarify wireless ACT_STAGE_DEVICE_CONFIG
16628                         tooltip message
16629                 - (nmwa_menu_item_activate, nmwa_menu_add_device_item, nmwa_menu_item_data_free):
16630                         Fix situation where applet wouldn't respond to menu selections
16631
16632         * src/NetworkManager.c
16633           src/NetworkManagerDevice.c
16634           src/NetworkManagerDbus.c
16635           src/NetworkManagerDbus.h
16636                 - (nm_dbus_signal_device_status_change) -> (nm_dbus_schedule_device_status_change_signal)
16637
16638         * src/NetworkManagerDbus.c
16639                 - (nm_dbus_send_network_not_found, nm_dbus_schedule_network_not_found_signal):
16640                         Remove, no longer used or relevant
16641                 - (nm_dbus_signal_device_status_change): Better signal enum->string matching
16642                 - (nm_dbus_schedule_device_status_change_signal): add
16643
16644         * src/NetworkManagerDevice.c
16645                 - (nm_device_worker_thread_stop): don't try to join a NULL worker thread
16646                 - (nm_device_set_link_active): Fix up switching for non-carrier-detect devices,
16647                         ie don't deactivate them unless explicitly told to by the user.  Also send
16648                         CARRIER_OFF / CARRIER_ON signals when link changes
16649                 - (nm_device_set_essid, nm_device_set_enc_key, nm_device_is_up, nm_device_set_mode):
16650                         Don't print error message when device is no longer around
16651                 - (nm_device_deactivate): kill any current DHCP process attached to this device,
16652                         not just during activation
16653
16654         * src/NetworkManagerPolicy.c
16655                 - (nm_policy_auto_get_best_device): Ignore semi-supported devices completely from
16656                         auto-device-selection.
16657                 - (nm_policy_device_change_check): Don't interrupt semi-supported devices
16658
16659         * src/NetworkManagerSystem.c
16660                 - (nm_system_device_set_up_down_with_iface): Quiet first warning message when device
16661                         is no longer present (Bill Moss)
16662
16663         * src/backends/shvar.c
16664                 - (svOpenFile): Open read-only to make SELinux happy
16665
16666         * src/backends/NetworkManagerRedHat.c
16667                 - (nm_system_device_get_system_config): Use SYSCONFDIR rather than hardcoding
16668                         the path to the ifcfg-* files
16669
16670 2005-05-05  Dan Williams  <dcbw@redhat.com>
16671
16672         * Expose activation stages to NetworkManager clients, like the applet
16673         * Add Diana's progress icons to the applet, cued off NM activation stage
16674         * Use more descriptive tooltips, cued off NM activation stage
16675
16676 2005-05-05  Ray Strode  <rstrode@redhat.com>
16677
16678         * src/nm-netlink-monitor.c:
16679                 - Use clear_event_source instead of g_nullify_pointer() again.
16680
16681 2005-05-05  Dan Williams  <dcbw@redhat.com>
16682
16683         * gnome/applet/main.c
16684                 - Fix session management so the applet is actually managed now
16685
16686         * gnome/applet/passphrase-dialog.c
16687                 - (nmi_passphrase_dialog_show): bash focus-stealing prevention in the face
16688
16689 2005-05-05  Dan Williams  <dcbw@redhat.com>
16690
16691         Patch from Bill Moss:
16692         * gnome/libnm_glib/libnm_glib.c
16693                 - Fix for dbus-0.33
16694
16695 2005-05-05  Dan Williams  <dcbw@redhat.com>
16696
16697         Suggestion from Bill Moss:
16698         * src/NetworkManagerSystem.c
16699                 - (nm_system_device_set_up_down_with_iface): ignore ENODEV
16700
16701
16702         * src/NetworkManager.c
16703                 - (nm_data_free): move destruction of the various managers after
16704                         release of device list, because deactivating and freeing a device
16705                         requires at least the named manager
16706                 - (nm_poll_and_update_wireless_link_state):
16707                   (nm_device_link_activated):
16708                   (nm_device_link_deactivated):
16709                         don't grab the device list lock when actually updating device
16710                         link status or strength, since nm_device_set_link_active()
16711                         needs to call nm_get_active_device(), which also locks the device list.
16712
16713         * src/NetworkManagerDevice.c
16714                 - (nm_device_set_link_active): if a device's link switches from off->on,
16715                         and it's wired, and the active device is wireless (or there is no
16716                         active device), activate the new device whose link just came on
16717                 - (link_to_specific_ap): try to smooth over intermittency in wireless links
16718                         my only calling the link to the current ap "failed" when more than 2
16719                         consecutive link checks have failed
16720
16721 2005-05-04  Dan Williams  <dcbw@redhat.com>
16722
16723         * src/NetworkManagerDevice.c
16724                 - (nm_device_probe_wireless_link_state): don't lock the scan mutex here
16725                         but let link_to_specific_ap() do the locking where it needs
16726
16727         Patch from Bill Moss:
16728         * src/NetworkManagerSystem.c
16729                 - Set MTU of VPN devices to 1412
16730
16731 2005-05-04  Dan Williams  <dcbw@redhat.com>
16732
16733         * Remove NM_STATE_SCANNING from NetworkManager.h and applet code
16734
16735         * Fix some holes in device activation and retaining the currently connected
16736                 access point
16737
16738 2005-05-03  Dan Williams  <dcbw@redhat.com>
16739
16740         * Kill dhcpcd.  We now use "dhcdbd", a dbus daemon that controls dhclient.
16741           This means that NetworkManager shouldn't have DHCP issues anymore.  It also
16742           means you need dhcdbd, which you can get here (get the latest one):
16743
16744                 http://people.redhat.com/jvdias/dhcdbd/
16745
16746           Technically NetworkManager can use any DHCP daemon that uses the same DBUS
16747           interface as dhcdbd.
16748
16749         * Rewrite device activation to facilitate the new DHCP infrastructure and
16750           future improvements.  Its now "activation request" based, ie there is a single
16751           activation request composed of the device, access point, and other info which
16752           follows the entire activation process.  There are 5 stages of the activation
16753           process which correspond to:
16754
16755                 1) Device preparation
16756                 2) Device configuration (bring it up, set ESSID/Key/etc)
16757                 3) IP Config Start (fire off DHCP if we're using it)
16758                 4) IP Config Get (grab config from DHCP or static config files)
16759                 5) IP Config Commit (set device's IP address, DNS, etc)
16760
16761           Note that there is no longer a "scanning" step, since the access point must
16762           be known _before_ activation starts.  If the access point drops out or does
16763           not exist for some reason, the entire activation process fails and must be
16764           restarted for a different access point or device.
16765
16766         Patch from Bill Moss:
16767         * gnome/applet/applet.c
16768                 - Fix type of vpn_failure dialog -> vpn_banner dialog
16769
16770 2005-04-27  Dan Williams  <dcbw@redhat.com>
16771
16772         * gnome/applet/applet-dbus-vpn.c
16773           gnome/applet/applet.c
16774           gnome/applet/applet.h
16775                 - Fix up active VPN handling so that we reliably know when a VPN
16776                         connection has been deactivated
16777
16778         * src/vpn-manager/nm-vpn-manager.c
16779                 - Remove duplicate VPNConnectionChange signal
16780
16781 2005-04-27  Dan Williams  <dcbw@redhat.com>
16782
16783         Patch from Peter Jones:
16784         * Remove usage of varargs to fix crashes on PPC (RH #154336)
16785
16786         Patch from Bill Moss:
16787         * src/NetworkManagerSystem.c
16788                 - Fix checking of return value from ioctl()
16789
16790 2005-04-27  Dan Williams  <dcbw@redhat.com>
16791
16792         * Fix choosing of wireless networks and "Other wireless network..." from the applet
16793         * Warn and exit if icons cannot be found
16794
16795 2005-04-27  Dan Williams  <dcbw@redhat.com>
16796
16797         Patch from Tom Parker:
16798         * Update debian backend
16799
16800 2005-04-27  Dan Williams  <dcbw@redhat.com>
16801
16802         * Merge the applet and the info-daemon, and move the converged
16803                 applet under gnome/applet
16804         * Move libnm_glib to gnome/libnm_glib
16805         * Convert most dbus calls between the applet, info-daemon, and NM
16806                 into async calls
16807         * Fix a few things valgrind noticed
16808         * Make NM broadcast state more reliably
16809
16810 2005-04-22  Pawan chitrakar  <pawan@nplinux.org>
16811
16812         * configure.in: Added ne in ALL_LINGUAS
16813
16814 2005-04-15  Dan Williams  <dcbw@redhat.com>
16815
16816         * libnm_glib/libnm_glib: Fix up for dbus-0.32, and remove
16817                 code for dbus 0.2x versions
16818
16819 2005-04-15  Dan Williams  <dcbw@redhat.com>
16820
16821         Patches from Tom Parker:
16822         - Fix memleaks
16823         - Join with worker thread rather than polling for its exit
16824
16825         Patch from Bill Moss:
16826         - Cull duplicate ESSIDs from the scan list, taking highest strength AP
16827
16828 2005-04-15  Dan Williams  <dcbw@redhat.com>
16829
16830         - Fixes to pass 'make distcheck'
16831
16832 2005-04-15  Dan Williams  <dcbw@redhat.com>
16833
16834         Initial VPN Support
16835                 - supports 'vpnc'
16836                 - reworks device IP configuration, backend files have changed and will need
16837                         to be updated for all distributions.  I will try to do what I can for
16838                         them, but I cannot test them.
16839
16840         - Move named directory to src/named-manager
16841         - Make backends directory self-contained
16842
16843 2005-04-06  Dan Williams  <dcbw@redhat.com>
16844
16845         Add debug code for socket/file descriptor leaks.  We register every socket
16846         that we open (except for stuff in dhcpcd/) for tracking, and print out the
16847         list of sockets that we forgot to close on shutdown.  This also consolidates
16848         about 4 places where we opened sockets into 1 function in NetworkManagerUtils.c
16849
16850 2005-04-06  Dan Williams  <dcbw@redhat.com>
16851
16852         * dhcpcd/dhcpcd.c
16853                 - (dhcp_interface_free): fix a file descriptor leak that may have
16854                         caused network drivers to not unload due to refcounts > 0
16855
16856 2005-04-04  Dan Williams  <dcbw@redhat.com>
16857
16858         * panel-applet/NMWirelessAppletDbus.c
16859                 - (nmwa_dbus_call_nm_method): remove some commented code
16860
16861         * src/NetworkManagerAPList.[ch]
16862                 - (nm_ap_list_remove_ap_by_essid): new function
16863
16864         * src/NetworkManagerDevice.c
16865                 - (nm_device_wireless_force_use): remove access points from the ignore list
16866                         when the user forces them
16867
16868         * src/nm-dbus-device.c
16869                 - (nm_dbus_device_get_active_network): fix up escaping of object paths
16870
16871 2005-04-04  Dan Williams  <dcbw@redhat.com>
16872
16873         Patch from Tom Parker: include "nm-utils.h" for backend files that need it
16874
16875 2005-04-04  Dan Williams  <dcbw@redhat.com>
16876
16877         * src/NetworkManagerDevice.c:
16878                 - (nm_completion_scan_has_results): restore pre-completion-patch behavior
16879                         of only erroring after the second consecutive scan times out.  Also
16880                         don't exit when the card requires more time than we can give it, just
16881                         log the event and continue.
16882
16883 2005-04-01  Steve Murphy  <murf@e-tools.com>
16884
16885         * configure.in: Added "rw" to ALL_LINGUAS.
16886
16887 2005-04-01  Dan Williams <dcbw@redhat.com>
16888
16889         Perform scans during device activation, if needed.  Both activation 
16890         and scans run in the same GMainContext.  Therefore, if an access point
16891         is not found by the time the device starts activation, it will not
16892         be available until after activation.  We now try to scan during
16893         activation (in nm_wa_test) every 15s so that all available access
16894         points are more likely to be found and available for the activation
16895         procedure.
16896
16897         Also change nm_wireless_link_state_handle() to only update the "best"
16898         AP if we are not forcing a device and if we are not about to change
16899         state.  This attempts to work around a race when forcing a device,
16900         where the forced AP would get cleared out too soon by the link state
16901         checking timeout in the main thread, and the activation attempt with
16902         that AP would fail.
16903
16904 2005-04-01  Dan Williams <dcbw@redhat.com>
16905
16906         * po/POTFILES.in
16907                 - Update with new translatables
16908
16909 2005-03-31  Dan Williams <dcbw@redhat.com>
16910
16911         * panel-applet/NMWirelessAppletDbus.c
16912                 - Fix device names now that hal has changed device parenting for
16913                         network devices.
16914
16915 2005-03-31  Dan Williams <dcbw@redhat.com>
16916
16917         Tighten up handling of wireless devices that don't support wireless
16918         scanning (ie, Orinoco).  Due to restructuring of code, these devices
16919         hadn't been doing pseudo-scanning for a while either and would just
16920         spin waiting for an access point.  They are now manual devices where
16921         the user must choose the access point from the menu every time.  All
16922         "allowed" access points are listed in the applet's menu regardless
16923         of whether or not they can be seen by the card, since it can't scan
16924         anyway.
16925
16926         * src/NetworkManager.c
16927                 - (nm_wireless_link_state_handle): new function, but only update
16928                         the "best" ap for non-scanning devices when its not activating,
16929                         and when no device is being forced on the card
16930                 - (nm_link_state_monitor): split wireless link state handling out
16931                         into separate function
16932
16933         * src/NetworkManagerDevice.c
16934                 - (nm_device_copy_allowed_to_dev_list): new function
16935                 - (nm_device_new): populate non-scanning cards' AP lists with
16936                         access points from the "allowed" list
16937                 - (nm_device_new): don't start a scanning timeout for devices that
16938                         can't scan
16939                 - (nm_device_activation_schedule_finish): new parameter, should be
16940                         the AP that failed to be connected to, pass it on to the
16941                         activation finish function in NetworkManagerPolicy.c
16942                 - (nm_device_activate_wireless): don't ever try to get a new AP
16943                         for non-scanning devices, just fail.  The user must choose
16944                         a new access point manually.
16945                 - (nm_device_activate): grab the AP that failed connection and
16946                         pass it on
16947                 - (nm_device_update_best_ap): Clear the best AP if we don't have
16948                         a link to it, user must manually choose a new one
16949                 - (nm_device_do_pseudo_scan): remove function
16950                 - (nm_device_wireless_process_scan_results): remove bits for non-
16951                         scanning cards since they never get here
16952                 - (nm_device_wireless_scan): remove bits for non-scanning devices,
16953                         and fake the scan list for test devices a bit earlier
16954
16955         * src/NetworkManagerPolicy.c
16956                 - (nm_policy_activation_finish): use the failed_ap that we get
16957                         passed rather than getting the best_ap from the card, which
16958                         may have changed since we were scheduled
16959                 - (nm_policy_allowed_ap_list_update): for non-scanning devices,
16960                         update their scan list directly from the allowed list when
16961                         we get updates to the allowed list from NetworkManagerInfo
16962
16963         * src/NetworkManagerPolicy.h
16964                 - New member for failed access point in NMActivationResult
16965
16966   -------------------------------------
16967
16968         Driver Notification patch: notifies the user when their driver
16969                 sucks.  Gives them the option to ignore further insertions
16970                 of the card that has the sucky driver.
16971
16972         * NetworkManager.h
16973                 - Remove the SEMI_SUPPORTED member from the NMDriverSupportLevel
16974                         enum and replace it with NO_CARRIER_DETECT and
16975                         NO_WIRELESS_SCAN
16976
16977         * panel-applet/NMWirelessApplet.[ch]
16978                 - Merge essid.glade -> wireless-applet.glade
16979                 - Implement the "Your driver sucks" notification dialog
16980
16981         * panel-applet/NMWirelessAppletDbus.c
16982                 - Change stuff from getSupportsCarrierDetect->getDriverSupportLevel
16983                 - Grab hardware address for each device from NM too
16984                 - Check whether the driver for each device sucks or not whenever
16985                         a new device is noticed
16986
16987         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
16988                 - Deal with stuff being in wireless-applet.glade now rather than essid.glade
16989
16990         * src/NetworkManager.c
16991                 - Fix a double-unref on device removal
16992
16993         * src/NetworkManagerUtils.c
16994                 - Set appropriate driver support level on a device that doesn't
16995                         support scanning or carrier detection
16996
16997         * src/nm-dbus-device.c
16998                 - New "getHWAddress" dbus method on devices
16999                 - getSupportsCarrierDetect -> getDriverSupportLevel
17000
17001 2005-03-31  Dan Williams <dcbw@redhat.com>
17002
17003         * src/NetworkManagerDevice.c
17004                 - (nm_device_wireless_scan): Fix leak of scan results in some
17005                         instances
17006
17007 2005-03-29  Dan Williams <dcbw@redhat.com>
17008
17009         * src/NetworkManager.c
17010                 - (nm_poll_and_update_wireless_link_state): make code less indented
17011
17012         Patch from Bill Moss:
17013         * src/NetworkManager.c
17014                 - (nm_device_update_link_state): Update signal strength on wireless
17015                         devices every time we update link state too.
17016
17017 2005-03-29  Dan Williams <dcbw@redhat.com>
17018
17019         * src/NetworkManagerDevice.c
17020                 - (nm_device_set_essid): Work around Orinoco cards which need
17021                         extra time after setting the ESSID
17022
17023 2005-03-29  Dan Williams <dcbw@redhat.com>
17024
17025         * src/NetworkManagerDevice.c
17026                 - Merge one more bit of Peter Jones' completion patch
17027
17028 2005-03-29  Dan Williams <dcbw@redhat.com>
17029
17030         * src/NetworkManagerDevice.c
17031                 - (nm_device_force_use): Fix possible segfault
17032
17033 2005-03-29  Dan Williams <dcbw@redhat.com>
17034
17035         * src/NetworkManagerDevice.c
17036                 - Use iw_get_ext() where we should rather than iw_set_ext()
17037
17038 2005-03-29  Dan Williams <dcbw@redhat.com>
17039
17040         * src/NetworkManagerDevice.c
17041                 - (nm_device_set_up_down): remove check for unsupported devices
17042                         that caused NM to not bring devices up when they were
17043                         added to the device list.
17044
17045 2005-03-28  Dan Williams <dcbw@redhat.com>
17046
17047         * src/NetworkManagerDevice.c
17048                 - (mdio_read): Fix two bugs that caused all devices to fail
17049                         the MII carrier detection support checks
17050
17051 2005-03-26  Dan Williams <dcbw@redhat.com>
17052
17053         * src/NetworkManagerDevice.c
17054                 - (nm_device_wireless_scan): Remove duplicated scanning code
17055
17056 2005-03-25  Dan Williams <dcbw@redhat.com>
17057
17058         * panel-applet/NMWirelessApplet.c
17059                 - (nmwa_about_cb): Add some more contributors
17060                 - (nmwa_update_state): show the applet when there's no connection
17061                 - Enable the "Stop/Resume all wireless devices" option in the
17062                         context menu
17063                 - New "no connection" icon
17064
17065         * src/NetworkManager.c
17066                 - (nm_poll_and_update_wireless_link_state): don't do anything if
17067                         wireless is disabled or we're asleep
17068
17069         * src/NetworkManagerDHCP.c
17070                 - Remove trailing "\n" on debug messages
17071
17072         * src/NetworkManagerDbus.c
17073                 - (nm_dbus_network_status_from_data): new state "asleep"
17074
17075         * src/NetworkManagerDevice.c
17076                 - Merge most of Peter Jones' "completion" patch that greatly reduces
17077                         latency and wait times for most operations
17078                 - (nm_device_wireless_scan): Don't scan when asleep
17079
17080         * src/NetworkManagerPolicy.c
17081                 - (nm_policy_get_best_device): return no device when asleep
17082                 - (nm_policy_allowed_ap_list_update): From Bill Moss: merge properties
17083                         for all wireless devices on update, not just active device
17084
17085         * src/NetworkManagerUtils.c
17086                 - Merge Peter Jones' "completion" patch
17087
17088         * src/nm-dbus-nm.c
17089                 - (nm_dbus_nm_set_wireless_enabled): bring down wireless devices when
17090                         we're told to disable them
17091                 - (nm_dbus_nm_sleep, nm_dbus_nm_wake): new functions for sleep/wake
17092
17093         * utils/nm-utils.h
17094                 - New variants of the warn/info/error/debug print functions that can take
17095                         variables rather than static strings
17096
17097 2005-03-24  Dan Williams <dcbw@redhat.com>
17098
17099         * src/NetworkManagerUtils.c
17100                 - (nm_get_device_driver_name): driver names are now on the parents of
17101                         "Network Interface" objects, so look for them there
17102
17103 2005-03-24  Dan Williams <dcbw@redhat.com>
17104
17105         * test/nmtest.c
17106                 - Escape some forgotten object paths before we shove them through dbus
17107
17108 2005-03-24  Dan Williams <dcbw@redhat.com>
17109
17110         * dhcpcd/dhcpcd.[ch]
17111           src/NetworkManagerDHCP.c
17112                 - Switch names from "*_record_*" -> "*_element_*" to clarify things a bit
17113                         (ie, dhcp_option_record_len -> dhcp_option_element_len)
17114
17115         * src/NetworkManagerDbus.c
17116                 - spacing cleanups
17117
17118         * src/nm-dbus-dhcp.c
17119                 - Make the API suck less.  There is now only 1 type of each function,
17120                         ie only "getInteger" and no longer also "getIntegerv".  All types
17121                         are returned encapsulated in a DBUS_TYPE_ARRAY, even for options
17122                         that will never have more than 1 element.  This should simplify
17123                         things greatly.
17124
17125         * test/nm-dhcp-opt-test.c
17126                 - Make the tool not segfault
17127                 - adapt to new DHCP Options API
17128
17129 2005-03-22  Dan Williams <dcbw@redhat.com>
17130
17131         * src/NetworkManager.c
17132                 - (nm_wired_link_deactivated): actually ignore netlink events from
17133                         wireless devices.
17134
17135 2005-03-22  Dan Williams <dcbw@redhat.com>
17136
17137         * src/NetworkManager.c
17138                 - (nm_wired_link_activated): actually ignore netlink events from
17139                         wireless devices.
17140
17141 2005-03-17  Dan Williams <dcbw@redhat.com>
17142
17143         Patch from Tom Parker:
17144         * src/nm-netlink-monitor.c
17145                 - Include unistd.h
17146         * info-daemon/NetworkManagerInfoDbus.c
17147                 - (nmi_dbus_update_network_auth_method): free GConf values
17148
17149         Patch from Nathaniel McCallum <npmccallum@gentoo.org>:
17150         * src/NetworkManagerDevice.c
17151                 - (nm_device_set_wireless_config): wait for successful
17152                         association longer for some cards (Atheros a/b/g)
17153
17154 2005-03-15  Ray Strode  <rstrode@redhat.com>
17155
17156         * src/NetworkManager.c:
17157         (sigterm_pipe_handler):
17158         remove bogus FIXME
17159
17160 2005-03-15  Ray Strode  <rstrode@redhat.com>
17161
17162         * src/NetworkManagerDbus.c:
17163         Fix some sign weirdness that gcc4 doesn't like,
17164         and add a header file so PPC can hopefully find
17165         SIGTRAP
17166
17167 2005-03-14  Ray Strode  <rstrode@redhat.com>
17168         
17169         Fourth (probably working) cut at porting to
17170         dbus 0.30 api and new hal. This cut adds
17171         some new logging macros to make debugging
17172         easier.
17173
17174         * dispatcher-daemon/NetworkManagerDispatcher.c:
17175         * info-daemon/NetworkmanagerInfo.c:
17176         * info-daemon/NetworkManagerInfoPassphraseDialog.c:
17177         * info-daemon/NetworkManagerInfoVPN.c:
17178         * src/NetworkManager.c:
17179         * src/NetworkManagerAP.c:
17180         * src/NetworkManagerAPList.c:
17181         * src/NetworkManagerDHCP.c:
17182         * src/NetworkManagerDbus.c:
17183         * src/NetworkManagerDevice.c:
17184         * src/NetworkManagerPolicy.c:
17185         * src/NetworkManagerSystem.c:
17186         * src/NetworkManagerUtils.c:
17187         * src/NetworkManagerWireless.c:
17188         * src/autoip.c:
17189         * src/nm-dbus-nm.c:
17190         * src/backends/NetworkManagerDebian.c:
17191         * src/backends/NetworkManagerGentoo.c:
17192         * src/backends/NetworkManagerRedHat.c:
17193         * src/backends/NetworkManagerSlackware.c:
17194         use new logging macros.
17195
17196         * dispatcher-daemon/NetworkManagerDispatcher.c:
17197         (nmd_dbus_filter): s/dbus_free/g_free/
17198
17199         * info-daemon/Makefile.am: link in utils library.
17200         * info-daemon/NetworkmanagerInfo.c: use new logging 
17201         macros.
17202         (nmi_dbus_get_network): don't assume enumerations
17203         are 32-bit.
17204         (nmi_dbus_nmi_message_handler): don't free what 
17205         doesn't belong to us.
17206
17207         * libnm_glib/libnm_glib.c:
17208         (libnm_glib_get_nm_status): 
17209         (libnm_glib_init): don't free what doesn't
17210         belong to us.
17211         (libnm_glib_dbus): strdup result, so it doesn't get
17212         lost when message is unref'd.
17213
17214         * panel-applet/NMWirelessAppletDbus.c:
17215         (nmwa_dbus_update_devices): s/dbus_free/g_free/
17216
17217         * src/NetworkManager.c:
17218         (nm_monitor_wired_link_state): request initial status 
17219         dump of all cards when we start up, instead of relying
17220         on /sys/.../carrier.
17221         (nm_info_handler), (nm_set_up_log_handlers): 
17222         log handlers to specify what syslog priorites 
17223         the logging macros default to.
17224
17225         * src/NetworkManagerAPList.c: 
17226         (nm_ap_list_populate_from_nmi):
17227         s/dbus_free_string_array/g_strfreev/
17228
17229         * src/NetworkManagerDbus.c:
17230         (nm_dbus_get_network_object):
17231         validate d-bus message argument types.
17232         Advance message iterator after reading argument,
17233         prepend instead of append to GSList.
17234
17235         * src/NetworkManagerDevice.c:
17236         (nm_device_probe_wired_link_status):
17237         remove redundant /sys in /sys path. remove wrong
17238         contents == NULL means has carrier assumption.
17239
17240         * src/nm-netlink-monitor.c 
17241         (nm_netlink_monitor_request_status): implement
17242         function to ask kernel to dump interface link
17243         status over netlink socket.
17244
17245         * test/*.c: s/dbus_free/g_free/
17246
17247         * utils/nm-utils.h:
17248         (nm_print_backtrace): new macro to print backtrace.
17249         (nm_get_timestamp): new macro to get sub-second precise
17250         unix timestamp.
17251         (nm_info), (nm_debug), (nm_warning), (nm_error):
17252         new logging functions. nm_info just prints,
17253         nm_debug includes timestamp and function,
17254         nm_warning includes function, nm_error includes
17255         backtrace and sigtrap.
17256
17257 2005-03-11  Ray Strode  <rstrode@redhat.com>
17258
17259         Third (unfinished, partially working) cut at porting to 
17260         dbus 0.30 api and new hal.
17261
17262         * info-daemon/NetworkManagerInfoDbus.c:
17263                 don't free null arrays.
17264
17265         * panel-applet/NMWirelessAppletDbus.c: 
17266         * src/nm-dbus-device.c:
17267         * src/nm-dbus-net.c: 
17268         * src/NetworkManagerDbus.c: more 
17269         STRING -> OBJECT_PATH fun
17270         * src/NetworkManagerDevice.c:
17271         * src/NetworkManagerDevice.h:
17272         (rename nm_device_get_link_active): rename to 
17273         nm_device_has_active_link
17274         (nm_device_wireless_link_active): rename to
17275         nm_device_probe_wireless_link_state
17276         (nm_device_wired_link_active): rename to
17277         nm_device_probe_wired_link_state.  Rewrite to
17278         use carrier file since hal doesn't maintain
17279         link state anymore.
17280         (nm_device_update_link_active): rename to
17281         nm_device_update_link_state
17282         * src/NetworkManagerPolicy.c 
17283           (nm_policy_activation_finish): check for NULL
17284           MAC address.
17285
17286         * src/Makefile.am:
17287         * src/NetworkManagerMain.h: 
17288         * src/NetworkManager.c:
17289         * src/nm-netlink-monitor.c:
17290         * src/nm-netlink-monitor.h: New class to support
17291         monitoring wired ethernet link status, since HAL
17292         doesn't export that information anymore.
17293
17294 2005-03-09  Ray Strode  <rstrode@redhat.com>
17295
17296         Second (unfinished, unworking) cut at porting to 
17297         dbus 0.30 api.
17298
17299         * dispatcher-daemon/NetworkManagerDispatcher.c:
17300         * info-daemon/NetworkManagerInfoDbus.c:
17301         * panel-applet/NMWirelessAppletDbus.c:
17302         * src/NetworkManagerDbusUtils.c:
17303         * src/NetworkManagerDbusUtils.h:
17304         * src/nm-dbus-device.c:
17305         * src/nm-dbus-nm.c:
17306         * test/nmtest.c: support dbus "object path" type
17307
17308         * configure.in: 
17309         * Makefile.am:
17310         * info-daemon/Makefile.am:
17311         * libnm_glib/Makefile.am:
17312         * panel-applet/Makefile.am:
17313         * dispatcher-daemon/Makefile.am
17314         * src/Makefile.am:
17315         * test/Makefile.am:
17316         * utils/Makefile.am: 
17317         * utils/nm-utils.c: 
17318         * utils/nm-utils.h: new utils static lib
17319
17320 2005-03-07  Ray Strode  <rstrode@redhat.com>
17321
17322         * info-daemon/NetworkManagerInfoDbus.c:
17323         * libnm_glib/libnm_glib.c:
17324         * panel-applet/NMWirelessAppletDbus.c:
17325         * src/NetworkManager.c:
17326         * src/NetworkManagerDbus.c:
17327         * src/NetworkManagerDevice.c:
17328         * src/NetworkManagerUtils.c:
17329         * src/nm-dbus-device.c:
17330         * src/nm-dbus-dhcp.c:
17331         * src/nm-dbus-net.c:
17332         * src/nm-dbus-nm.c:
17333         * test/nminfotest.c:
17334         First (unfinished, unworking) cut at porting to dbus 0.30 api.
17335
17336 2005-03-04  Dan Williams  <dcbw@redhat.com>
17337
17338         * configure.in
17339                 - Mark HEAD as 0.4
17340
17341 2005-03-04  Dan Williams  <dcbw@redhat.com>
17342
17343         Patch from Peter Jones:
17344         - Make stuff work with gcc 4.0
17345
17346 2005-02-28  Maxim Dziumanenko <mvd@mylinux.com.ua>
17347
17348         * uk.po: Added "uk" (Ukrainian) to ALL_LINGUAS.
17349
17350 2005-02-27  Jim Huang  <jserv@kaffe.org>
17351
17352         * configure.in: Added "zh_TW" (Traditional Chinese) to ALL_LINGUAS.
17353
17354 2005-02-27  Dan Williams  <dcbw@redhat.com>
17355
17356         Patch from Bill Moss:
17357         * panel-applet/NMWirelessAppletDbus.c
17358                 - Make sure strength for current access point is up-to-date when we
17359                         update the gui data model
17360
17361 2005-02-27  Alessio Frusciante  <algol@firenze.linux.it>
17362
17363         * configure.in: Added "it" (Italian) to ALL_LINGUAS.
17364
17365 2005-02-27  Dan Williams  <dcbw@redhat.com>
17366
17367         * src/backends/NetworkManagerRedHat.c
17368                 - (nm_system_init): Kill any dhclient processes lying around as well
17369                         as stopping 'nifd' if its already been started.  NetworkManager
17370                         subsumes the functions of nifd (kicking mDNSResponder, autoip)
17371
17372 2005-02-27  Dan Williams  <dcbw@redhat.com>
17373
17374         * panel-applet/NMWirelessApplet.c
17375                 - (nmwa_destroy): Really mean to destroy GUI data model first, then
17376                         dbus data model, not the GUI data model twice.
17377
17378 2005-02-27  Dan Williams  <dcbw@redhat.com>
17379
17380         * panel-applet/NMWirelessApplet.[ch]
17381           panel-applet/NMWirelessAppletDbus.[ch]
17382                 - Move to incremental network updates.  Instead of blowing away our list
17383                         of devices every time we get a signal from NetworkManager, we now
17384                         incrementally add/remove networks when NetworkManager notifies us that
17385                         a new network has appeared or disappered.  Strength updates now happen
17386                         on-the-fly for each access point as well.  There are now two copies of
17387                         data from NetworkManager: one for the dbus side, and one for the gui side.
17388                         When the dbus side data is modified, it is copied over to the gui side
17389                         so we don't have to hold the data_mutex for long periods of time (and
17390                         therefore block animation of the applet's icon).
17391                 - Clean up some memleaks too
17392
17393         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
17394                 - Minor code beautification
17395
17396         * src/NetworkManagerAPList.c
17397                 - (nm_ap_list_merge_scanned_ap): return whether or not the access point is
17398                         completely new and whether or not an existing one's strength was updated.
17399                         Try to fix multiple access points and signal strength by using the highest
17400                         signal strength in each scan for any given ESSID.
17401
17402         * src/NetworkManagerDbus.[ch]
17403                 - (nm_dbus_signal_wireless_network_change): consolidate signals that deal with
17404                         wireless networks; now we have only WirelessNetworkUpdate which includes
17405                         a UINT32 for Appeared, Disappeared, or StrengthChanged (see NetworkManager.h).
17406                 - Kill usage of DbusMessageIter
17407
17408         * src/NetworkManagerDevice.c
17409                 - (nm_device_wireless_process_scan_results): Use the same timestamp for all APs
17410                         in the same scan result list.  Copy ESSIDs-by-address earlier on, for each
17411                         AP rather than all-at-once.  Also don't ever remove the AP a card is
17412                         currently associated with from the network list.
17413                 - Update for new signals during scan, send out Appeared, Disappeared, or
17414                         StrengthChanged when necessary.
17415
17416 2005-02-25  Dan Williams  <dcbw@redhat.com>
17417
17418         * README
17419                 - Line break the README
17420
17421 2005-02-25  Dan Williams  <dcbw@redhat.com>
17422
17423         * panel-applet/NMWirelessAppletOtherNetworkDialog.c
17424                 - Remove usage of gtk_window_set_default_size()
17425
17426         * panel-applet/essid.glade
17427                 - Stick default size here
17428                 - Add in random crap that current glade wants to add in now
17429
17430 2005-02-25  Dan Williams  <dcbw@redhat.com>
17431
17432         * src/backends/NetworkManagerRedHat.c
17433                 - For non-caching-nameserver/non-named case, ensure that nscd is running
17434                         and that we actually tell nscd to reload the hosts cache when it changes
17435
17436 2005-02-25  Dan Williams  <dcbw@redhat.com>
17437
17438         * info-daemon/NetworkManagerInfoDbus.c
17439                 - (nmi_dbus_get_network_properties): whack usage of DbusMessageIter
17440
17441         * test/nminfotest.c
17442                 - Whack usage of DbusMessageIter
17443                 - Clean up DbusError and DbusMessage handling and freeing
17444                 - Remove unused unregister handler
17445
17446         * test/nmtest.c
17447                 - Whack usage of DbusMessageIter
17448
17449         * test/nmtestdevices.c
17450                 - Whack usage of DbusMessageIter
17451
17452 2005-02-25  Dan Williams  <dcbw@redhat.com>
17453
17454         * NetworkManager.h
17455                 - New signal type NMNetworkStatus in preparation for the "WirelessNetworkUpdate"
17456                         signal
17457
17458 2005-02-25  Dan Williams  <dcbw@redhat.com>
17459
17460         * named/nm-named-manager.c
17461                 - Ensure that pid and watch variables for child named process get cleared out
17462                         when the child goes away.
17463
17464 2005-02-22  Dan Williams  <dcbw@redhat.com>
17465
17466         * src/NetworkManagerPolicy.c
17467                 - (nm_policy_activation_finish): Deactivate a device if its activation fails,
17468                         and NULL out data->active_device so that we have to choose another one.
17469                         This may make NetworkManager keep attempting to connect to a wired network
17470                         if it fails, but if it keeps failing the wired network has more problems than
17471                         just NetworkManager.
17472
17473         * src/backends/NetworkManagerRedHat.c
17474                 - (nm_system_update_dns): fix to actually run nscd -i hosts when nscd
17475                         is already running
17476
17477         * named/nm-named-manager.c
17478                 - (rewrite_resolv_conf): Call nm_system_update_dns() when not using
17479                         named so that the distro can flush whatever name service caching
17480                         daemon it uses
17481
17482 2005-02-21  Dan Williams  <dcbw@redhat.com>
17483
17484         * src/NetworkManagerDHCP.[ch]
17485                 - (nm_device_dhcp_remove_timeouts): new function
17486
17487         * src/NetworkManagerDevice.c
17488                 - Use nm_device_dhcp_remove_timeouts() everywhere that we need to
17489                         remove the DHCP timeouts.
17490
17491 2005-02-21  Dan Williams  <dcbw@redhat.com>
17492
17493         * panel-applet/NMWirelessApplet.[ch]
17494           panel-applet/menu-info.[ch]
17495                 - Give the panel applet some major love: menu items are no longer
17496                         subclasses of GtkCheckMenuItem, they are actual GtkCheckMenuItems.
17497                         This allows the applet to actually reflect theme changes correctly,
17498                         since themeing of subclassed items in GTK _sucks_.
17499
17500 2005-02-18  Dan Williams  <dcbw@redhat.com>
17501
17502         * libnm_glib/libnm_glib.[ch]
17503           test/libnm_glib_test.c
17504                 - Clean up libnm_glib API a bit, callback is now passed a libnm_glib_ctx
17505                         and its data, and doesn't have to free the callback data anymore
17506
17507 2005-02-18  Dan Williams  <dcbw@redhat.com>
17508
17509         * panel-applet/NMWirelessApplet.c
17510                 - Revert 2005-02-18 William Jon McCann fix for standard
17511                         copyright string until it passes 'make distcheck'.
17512                         With standard copyright string, xgettext complains
17513                         about "Non-ASCII string at ...".
17514
17515 2005-02-18  Dan Williams  <dcbw@redhat.com>
17516
17517         * panel-applet/essid.glade
17518           panel-applet/NMWirelessAppletOtherNetworksDialog.c
17519                 - Correct spelling of "adaptor"->"adapter"
17520
17521 2005-02-18  William Jon McCann  <mccann@jhu.edu>
17522
17523         * panel-applet/NMWirelessApplet.c: Use GTK_CHECK_VERSION() macro.
17524         (nmwa_about_cb): Use standard copyright string.  Update comment
17525         text to reflect that it is a notification area applet.  Remove
17526         leading newline in authors list.
17527         (nmwa_menu_show_cb, nmwa_setup_widgets): Populate menu on show
17528         instead of on parent menu item activation.  Fixes #167550.
17529
17530 2005-02-18  William Jon McCann  <mccann@jhu.edu>
17531
17532         * panel-applet/essid.glade: Capitalize items as per HIG.
17533           Fixes #167632
17534
17535 2005-02-16  William Jon McCann  <mccann@jhu.edu>
17536
17537         * panel-applet/gtkcellrendererprogress.[ch]: Only compile these
17538         files for GTK 2.4 or lower, since now public in GTK 2.6.
17539
17540         * panel-applet/essid.glade: Don't specify window size.
17541         
17542 2005-02-17  Dan Williams  <dcbw@redhat.com>
17543
17544         Caught by Bill Moss:
17545         * dhcpcd/client.c
17546                 - Time remaining for DHCP transaction calculation was incorrectly
17547                         inside a #ifdef DEBUG
17548
17549 2005-02-15  Christophe Merlet  <redfox@redfoxcenter.org>
17550
17551         * configure.in: Added fr (French) to ALL_LINGUAS.
17552
17553 2005-02-14  Dan Williams  <dcbw@redhat.com>
17554
17555         * src/NetworkManagerDHCP.c
17556                 - (set_domain_searches): Fix free of invalid pointer
17557
17558 2005-02-14  Dan Williams  <dcbw@redhat.com>
17559
17560         Patch from Peter Jones:
17561         * dhcpcd/client.c
17562                 - Ensure we return RET_DHCP_CEASED everywhere we should
17563         * dhcpcd/udpipgen.c
17564                 - Use faster TOS for IP packets
17565                 - Don't set ip_id since we're UDP
17566
17567         Patch from Tomislav Vujec:
17568         * src/nm-dbus-dhcp.c
17569           test/nm-dhcp-opt-test.c
17570                 - Clean up warnings to enable cvs tree compilation.
17571
17572 2005-02-14  Tomislav Vujec  <tvujec@redhat.com>
17573
17574         * configure.in
17575           po/hr.po
17576                 - Add the Croatian locale.
17577
17578 2005-02-14  Colin Walters  <walters@verbum.org>
17579
17580         * src/NetworkManagerDHCP.c (set_domain_searches): Handle space-separated
17581         list of domains to search.
17582         
17583         * src/NetworkManagerMain.h (NMData): Handle multiple domain searches.
17584
17585 2005-02-13  Dan Williams  <dcbw@redhat.com>
17586
17587         * dhcpcd/client.c
17588                 - Debug output cleanups of DHCP option printing and parsing.
17589
17590 2005-02-13  Dan Williams  <dcbw@redhat.com>
17591
17592         Patch from Dan Reed:  DHCP options D-BUS API
17593                 Exposes the DHCP options that a device receives to clients over D-BUS.
17594
17595         * configure.in
17596                 - A few cleanups
17597
17598         * dhcpcd/client.h
17599                 - Correct names, option length, and types for DHCP options
17600
17601         * dhcpcd/dhcpcd.[ch]
17602                 - Clarify function names that access DHCP options & data
17603
17604         * src/NetworkManagerDHCP.c
17605                 - Use new DHCP data access functions
17606
17607         * src/NetworkManagerDbus.c
17608                 - Message handler for DHCP functions
17609
17610         * src/nm-dbus-dhcp.[ch] (new)
17611                 - DHCP dbus methods
17612
17613         * test/nm-dhcp-opt-test.c
17614                 - Test DHCP D-BUS API and return all present DHCP options
17615
17616 2005-02-12  Dan Williams  <dcbw@redhat.com>
17617
17618         * test/Makefile.am
17619           test/nmclienttest.c
17620           test/nmtest.c
17621                 - Move nmclienttest.c -> nmtest.c
17622
17623 2005-02-12  Dan Williams  <dcbw@redhat.com>
17624
17625         * dhcpcd/buildmsg.c
17626                 - Pad DHCP packets until they are at least 300 bytes in size.
17627
17628 2005-02-11  Dan Williams  <dcbw@redhat.com>
17629
17630         * dhcpcd/client.c
17631                 - (dhcp_init): only print out client ID and class ID if they are specified
17632
17633         * src/NetworkManagerDbus.[ch]
17634           src/nm-dbus-nm.[ch]
17635           src/nm-dbus-device.[ch]
17636           src/nm-dbus-net.[ch]
17637                 - Move NM, Device, and Net functions to separate files and use the
17638                         dbus method list stuff in NetworkManagerDbusUtils.c to do
17639                         method dispatching
17640
17641         * src/NetworkManagerDbusUtils.c
17642                 - Add new validate_method called before each dispatch (if present)
17643                         that can validate the method call
17644
17645         * src/NetworkManagerWireless.c
17646                 - (nm_wireless_qual_to_percent): Fix misplaced "!" that caused signal
17647                         levels never to be evaluated
17648
17649         Patch from j@bootlab.org
17650         * src/NetworkManagerDevice.c
17651                 - Add typedef for "u64"
17652
17653         * src/backends/NetworkManagerDebian.c
17654                 - Copy in Dave Woodhouse's fixes for IPv6
17655
17656 2005-02-11  Dan Williams  <dcbw@redhat.com>
17657
17658         Patch from Dave Woodhouse for IPv6:
17659         * src/NetworkManagerUtils.c
17660                 - (nm_ethernet_address_is_valid): Check for prism54 dummy MAC address
17661                         and multicast addresses
17662
17663         * src/NetworkManagerDevice.c
17664                 - (nm_device_set_up_down): make sure our cached MAC address is up-to-date
17665                         after bringing up a card.
17666
17667 2005-02-10  Dan Williams  <dcbw@redhat.com>
17668
17669         Patch from Dave Woodhouse:
17670         * src/NetworkManagerSystem.h
17671           src/backends/NetworkManagerDebian.c
17672           src/backends/NetworkManagerGentoo.c
17673           src/backends/NetworkManagerSlackware.c
17674                 - New nm_system_device_add_ip6_link_address() function to add link-local
17675                         address on an interface.  Stubbed in Debian, Gentoo, and Slackware.
17676
17677         * src/backends/NetworkManagerRedHat.c
17678                 - (nm_system_device_add_ip6_link_address): implement
17679                 - (nm_system_device_flush_addresses): revert to previous behavior of
17680                         flushing all addresses
17681
17682 2005-02-10  Dan Williams  <dcbw@redhat.com>
17683
17684         Patch from Tom Parker:
17685         * src/NetworkManagerDevice.c
17686                 - Remove the "#include <pci/types.h>" since both the ethtool.h and
17687                         mii.h headers are broken, and instead use our own typedefs
17688
17689 2005-02-10  Dan Williams  <dcbw@redhat.com>
17690
17691         * dhcpcd/buildmsg.c
17692                 - (fill_host_and_class_id): only fill in client and class IDs if
17693                         they are set by callers.
17694
17695         * dhcpcd/client.c
17696                 - (class_id_setup): don't autogenerate a class ID, only use one
17697                         we're given, if any.
17698                 - (client_id_setup): don't autogenerate a client ID, only use one
17699                         we're given, if any.
17700
17701         * dhcpcd/dhcpcd.c
17702                 - (dhcp_interface_init): ensure that client options are correctly
17703                         NULL terminated
17704
17705         * src/NetworkManagerDHCP.c
17706                 - (nm_device_dhcp_request): pass hostname to dhcp library
17707
17708 2005-02-10  Dan Williams  <dcbw@redhat.com>
17709
17710         * dhcpcd/client.c
17711                 - #rh147661# Don't send kernel version in DHCP requests
17712
17713         * src/NetworkManagerSystem.h
17714           src/backends/NetworkManagerDebian.c
17715           src/backends/NetworkManagerGentoo.c
17716           src/backends/NetworkManagerRedHat.c
17717           src/backends/NetworkManagerSlackware.c
17718                 - Remove the nm_system_device_run_dhcp() and nm_system_device_stop_dhcp()
17719                         functions, they are no longer used anyway
17720
17721         * src/backends/NetworkManagerRedHat.c
17722                 - (nm_system_device_flush_addresses): only flush "scope global" and "scope site"
17723                         addresses in an attempt to keep IPv6 local-scope addresses around
17724
17725 2005-02-10  Dan Williams  <dcbw@redhat.com>
17726
17727         * src/NetworkManager.c
17728                 - (nm_create_device_and_add_to_list): change the add message slightly
17729
17730         * src/NetworkManagerUtils.c
17731                 - (nm_get_wireless_driver_support_level, nm_get_wired_driver_support_level):
17732                         Return driver name to calling function
17733                 - (nm_get_driver_support_level): print out the driver a device is using
17734                         during the support check
17735
17736         Patch from Dave Woodhouse:
17737         * dhcpcd/udpipgen.c
17738                 - (in_cksum): copy last byte of odd-sized packets into a
17739                         'u_short' rather than a 'u_char', should fix wrong checksums
17740                         on big-endian platforms
17741
17742 2005-02-09  Dan Williams  <dcbw@redhat.com>
17743
17744         * Clean up usage of GSList objects and looping through their members
17745         * Clean up DHCP rebind/renew timeouts, hopefully they will work correctly
17746                 now.
17747         * Fix problem where even if scanning was turned off, card would still
17748                 cycle through frequencies.
17749
17750 2005-02-08  Dan Williams  <dcbw@redhat.com>
17751
17752         * panel-applet/NMWirelessApplet.c
17753                 - Fix for gtk 2.4
17754
17755 2005-02-08  Dan Williams  <dcbw@redhat.com>
17756
17757         Patch from Bill Moss
17758         * panel-applet/NMWirelessApplet.c
17759                 - Restore correct ESSID in tooltips
17760
17761 2005-02-07  Dan Williams  <dcbw@redhat.com>
17762
17763         * panel-applet/NMWirelessApplet.[ch]
17764                 - Add a context menu that contains:
17765                         Pause/Resume Wireless Scanning
17766                         Stop/Start All Wireless Devices
17767                         About...
17768                 - Grab active device strength off active device,
17769                         not its network
17770
17771         * panel-applet/NMWirelessAppletDbus.[ch]
17772                 - Add DBUS accessors for "getSupportsCarrierDetect", "setScanningEnabled",
17773                         "getScanningEnabled", "setWirelessEnabled", and "getWirelessEnabled"
17774                 - Update active device strength every 2 seconds, not every 1 second
17775
17776         * panel-applet/menu-info.c
17777                 - Only disable wired devices in the menu when they support carrier detection,
17778                         and don't currently have a link.  Non-carrier-detect devices will always
17779                         remain choosable
17780
17781         * src/Makefile.am
17782           src/NetworkManagerDbusUtils.[ch]
17783                 - Add new new dbus utils sources
17784
17785         * src/NetworkManager.c
17786                 - Fixes for new link detection, we no longer need to call nm_device_update_link_active()
17787                         with the boolean parameter
17788                 - Set scanning_enabled & wireless_enabled to TRUE
17789
17790         * src/NetworkManagerDbus.c
17791                 - Use new dbus util method dispatcher functions for org.freedesktop.NetworkManager methods
17792                 - Implement scanning & wireless enable/disable calls
17793                 - Remove the dbus vtable unregister handlers, weren't doing anything with them anyway
17794
17795         * src/NetworkManagerDevice.c
17796                 - New link detection stuff again...
17797                         o  Create device's mainloop earlier (but don't run it earlier)
17798                         o  Hook up new carrier-detect support stuff
17799                         o  Add in the ethtool & mii support detection code
17800                 - Don't scan if scanning is disabled
17801
17802         * src/NetworkManagerPolicy.c
17803                 - Never automatically choose a device that doesn't support carrier detection
17804                 - Don't automatically choose a wireless device if wireless is disabled
17805
17806 2005-02-07  Dan Williams  <dcbw@redhat.com>
17807
17808         * libnm_glib/libnm_glib.c
17809                 - Small cleanup in element list iteration
17810
17811 2005-02-07  Dan Williams  <dcbw@redhat.com>
17812
17813         * src/NetworkManagerWireless.c
17814                 - (nm_wireless_qual_to_percent): Fix up wireless quality calculations
17815                         to be in line with the WEXT quality specification
17816
17817 2005-02-02  Dan Williams  <dcbw@redhat.com>
17818
17819         Patch from Nathan Fredrickson <nathan@silverorange.com>
17820         * Fix up compile for deprecation of libgnomeui
17821                 - Switch to <glib/gi18n.h> from <libintl.h>
17822                 - Remove <libgnomeui/libgnomeui.h> includes
17823                 - Use gtk_window_set_default_icon_from_file() rather than
17824                         gnome_window_set_default_icon_from_file()
17825
17826         * named/nm-named-manager.c
17827                 - (generate_named_conf): Fix return-nothing in non-void
17828                         function
17829
17830 2005-02-02  Dan Williams  <dcbw@redhat.com>
17831
17832         * Clean up unused variables and the like
17833
17834 2005-02-02  Dan Williams  <dcbw@redhat.com>
17835
17836         * src/NetworkManagerAPList.c
17837                 - (nm_ap_list_merge_scanned_ap): merge strength too
17838
17839         * src/NetworkManagerUtils.c
17840                 - (nm_lock_mutex, nm_register_mutex_desc): new calls to facilitate debugging
17841                         of locking issues by printing out prettier information than g_mutex_lock
17842                 - Print out names of mutexes registered with nm_register_mutex_desc()
17843                 - (nm_try_lock_mutex): don't do the waiting thing when trying to lock, causes
17844                         us to seemingly block here for too long
17845
17846         * src/NetworkManager.c
17847           src/NetworkManagerAPList.c
17848           src/NetworkManagerDevice.c
17849                 - Convert to using nm_lock_mutex/nm_unlock_mutex rather than the glib variants
17850                         so we get better debug information printed
17851
17852         * src/NetworkManagerDbus.c
17853                 - (nm_dbus_devices_handle_request): reduce usage of nm_device_need_ap_switch()
17854                         since it sometimes has locking side effects
17855                 - (nm_device_get_association_pause_value): Reduce 802.11a card pause value to 8s
17856                         from 10s
17857                 - (nm_device_need_ap_switch): If we can't acquire the scan lock, return saying
17858                         we don't need a switch.  This gets called often enough that we can't block
17859                         until the scan mutex is acquired, because we'll block on device activation
17860                         and a few other things, which hangs main thread for too long.
17861
17862         * src/NetworkManagerPolicy.c
17863                 - (nm_policy_auto_get_best_device): reduce the possiblity that
17864                         nm_device_need_ap_switch() will be called               
17865
17866 2005-02-02  Dan Williams  <dcbw@redhat.com>
17867
17868         * panel-applet/NMWirelessApplet.c
17869                 - Display name of wireless network we are connecting to or connected to
17870                         in the tooltip of the applet
17871
17872 2005-02-02  Dan Williams  <dcbw@redhat.com>
17873
17874         * src/NetworkManagerDHCP.c
17875                 - Hopefully fix double-default-route problem by cleaning up the default
17876                         route added by DHCP code right before the DHCP transaction begins
17877
17878 2005-02-02  Dan Williams  <dcbw@redhat.com>
17879
17880         * named/nm-named-manager.c
17881                 - Write out valid resolv.conf when we exit
17882
17883 2005-02-01  Dan Williams  <dcbw@redhat.com>
17884
17885         Patch from Colin Walters:
17886         * named/nm-named-manager.c
17887                 - Make multi-domain search options work
17888
17889 2005-01-31  Dan Williams  <dcbw@redhat.com>
17890
17891         * info-daemon/NetworkManagerInfoDbus.c
17892                 - (nmi_dbus_nmi_message_handler): make sure 'dialog' exists before using it
17893
17894         * src/NetworkManagerDevice.c
17895                 - (nm_device_new): Don't store the entire range struct, use only what we need
17896                         (which is currently avg_quality, max_quality, and frequencies).  Also
17897                         zero device structure when we've free'd it to maybe expose errors down
17898                         the line.
17899                 - (nm_device_update_signal_strength): grab the scan mutex before getting
17900                         quality data from the card since quality will be useless during a scan.
17901                         Call updated wireless qual-to-percent function with values stored in
17902                         nm_device_new() earlier.
17903                 - Remove some unused functions (nm_device_get_max_quality(), nm_device_get_noise(),
17904                         nm_device_get_bad_crypt_packets())
17905                 - (nm_device_activate_wireless_adhoc): use new frequency values we go in
17906                         nm_device_new()
17907                 - (get_initial_auth_method): always use the Auth method that's in the allowed
17908                         list if available.  Problem was this: when the WEP key is wrong, NM will
17909                         try OS then SK modes, and then get stuck in SK mode after that.  This
17910                         should reset it.
17911                 - (nm_device_wireless_process_scan_results): work with new qual-to-percent
17912                         function
17913
17914         * src/NetworkManagerWireless.c
17915                 - (nm_wireless_qual_to_percent): try to make this function actually work and
17916                         mimic iwlib behavior.  Use card's idea of quality divided by max_qual
17917                         if that's all present, otherwise fall back to signal-to-noise ratios.
17918
17919 2005-01-29  Dan Williams  <dcbw@redhat.com>
17920
17921         * initscript/RedHat/NetworkManager
17922                 - Don't spit out sysctl stuff to console
17923
17924         * libnm_glib/libnm_glib.c
17925                 - (libnm_glib_init): call dbus_g_thread_init()
17926
17927         * panel-applet/NMWirelessAppletDbus.c
17928                 - (nmwa_dbus_worker): call dbus_g_thread_init()
17929
17930         * src/NetworkManager.c
17931                 - (main): call dbus_g_thread_init()
17932
17933         * src/NetworkManagerAPList.c
17934                 - (nm_ap_list_print_members): use LOG_ERR instead of LOG_DEBUG
17935                         so we can actually see what's there in a normal syslog
17936
17937         * src/NetworkManagerDevice.c
17938                 - (nm_device_activate_wireless): print out the "waiting for access point"
17939                         message only once, then say what access point we actually got after
17940                         the wait.
17941                 - (nm_device_need_ap_switch): If a scan is in progress when we're in this
17942                         function, wait until the scan is done.  Scans may change the ESSID of
17943                         the card, making this function think we need to switch access points
17944                 - (nm_device_wireless_process_scan_results): for artificial access points
17945                         don't check against the card's ESSID, but the best_ap's ESSID.  This
17946                         prevents collisions with the scanning code, which may change the card's
17947                         ESSID and cause the access point to get dropped from the device's AP
17948                         list.  Also increase the keep-around time to 2m from 60s since the max
17949                         scan interval could be 60s in some cases.
17950
17951         * src/NetworkManagerPolicy.c
17952                 - (nm_policy_activation_finish): Don't add invalid MAC addresses to GConf
17953                 - (nm_policy_allowed_ap_list_update): When we update, make sure we copy over
17954                         the new properties and ESSIDs to the device's AP list.  Fixes some races
17955                         between NM and NMI.
17956
17957 2005-01-27  Dan Williams  <dcbw@redhat.com>
17958
17959         * info-daemon/NetworkManagerInfoDbus.c
17960                 - (nmi_dbus_add_network_address): if the network doesn't yet exist in
17961                         GConf, make a minimal entry for it (essid & timestamp)
17962
17963         * src/NetworkManagerAPList.c
17964                 - (nm_ap_list_populate_from_nmi): Don't try to grab network data if
17965                         NetworkManagerInfo isn't running
17966
17967         * src/NetworkManagerDbus.[ch]
17968                 - (nm_dbus_nmi_is_running): new function
17969
17970         * src/NetworkManagerDevice.c
17971                 - (nm_device_wireless_force_use): Don't set the created AP's MAC
17972                         address to garbage.
17973
17974         * src/NetworkManagerPolicy.c
17975                 - (nm_policy_activation_finish): On successful activation, make sure
17976                         the "best" AP has a MAC address, and don't tell NMI to add the
17977                         current AP's MAC address to GConf if the AP is an Ad-hoc AP.
17978                 - (nm_policy_allowed_ap_list_update): Update a wireless card's "best"
17979                         access point after refreshing our allowed list if it doesn't already
17980                         have a "best" access point.
17981
17982 2005-01-25  Dan Williams  <dcbw@redhat.com>
17983
17984         * panel-applet/NMWirelessAppletDbus.c
17985                 - (nmwa_dbus_filter): Fix dbus 0.23 ServiceOwnerChanged checks
17986                         so we check for NM_DBUS_SERVICE rather than not for it
17987
17988         * libnm_glib/libnm_glib.c
17989                 - (libnm_glib_dbus_filter): Fix for dbus 0.23, trapping
17990                         ServiceOwnerChanged signal
17991
17992 2005-01-25  Dan Williams  <dcbw@redhat.com>
17993
17994         * configure.in
17995                 - Check DBUS version in configure, and set the C macros
17996                         DBUS_VERSION_[MAJOR,MINOR,MICRO]
17997
17998         * info-daemon/NetworkManagerInfoDbus.c
17999                 - Remove #if 0-d section of code that quit NMI if NM went away.
18000
18001         * panel-applet/NMWirelessAppletDbus.c
18002                 - Trap the "ServiceOwnerChanged" signal that's new in dbus-0.23
18003
18004         * src/NetworkManager.c
18005           src/NetworkManagerMain.h
18006           src/NetworkManagerDbus.c
18007                 - Trap the "ServiceOwnerChanged" signal that's new in dbus-0.23
18008                 - Make updating of our Allowed Wireless Network lists from NMI
18009                         an idle function in the main thread now, with a high priority.
18010
18011 2005-01-24  Dan Williams  <dcbw@redhat.com>
18012
18013         * panel-applet/gtkcellview.[ch]
18014           panel-applet/menu-info.c
18015                 - Fix GTK version checks to be <= rather than <
18016
18017         * test/Makefile.am
18018                 - Include the libtool archive of libnm_glib rather than
18019                         trying to pull in the .so
18020
18021 2005-01-24  Dan Williams  <dcbw@redhat.com>
18022
18023         * src/NetworkManagerDevice.c
18024           src/NetworkManagerDevicePrivate.h
18025                 - Block nm_device_new() until our device's worker thread has had a
18026                         chance to start up.  Fixes a race between main thread and worker
18027                         thread starting that caused activation requests to get lost.
18028
18029 2005-01-24  Dan Williams  <dcbw@redhat.com>
18030
18031         * initscript/RedHat/NetworkManager
18032                 - Remove the ### BEGIN INIT INFO section, which caused chkconfig
18033                         to add the NM startup script at priority 50, which was
18034                         way too early
18035
18036 2005-01-24  Colin Walters  <walters@redhat.com>
18037
18038         * named/named.conf: Use any port for query source instead of
18039         restricting to port 53.
18040
18041 2005-01-24  Dan Williams  <dcbw@redhat.com>
18042
18043         * initscript/RedHat/NetworkManager
18044                 - Remove the ### BEGIN INIT INFO section, which caused chkconfig
18045                         to add the NM startup script at priority 50, which was
18046                         way too early
18047
18048 2005-01-24  Dan Williams  <dcbw@redhat.com>
18049
18050         Patch from Tom Parker <palfrey@tevp.net>
18051         * Fix up compile warnings & errors in the wireless applet
18052
18053 2005-01-24  Dan Williams  <dcbw@redhat.com>
18054
18055         * panel-applet/NMWirelessApplet.c
18056                 - Convert 24x24 icons back to 22x22 and use the 22x22 ones
18057
18058 2005-01-24  Dan Williams  <dcbw@redhat.com>
18059
18060         * panel-applet/gtkcellview.[ch]
18061                 - Only compile these files for GTK 2.4 or lower, since 
18062                         GtkCellView is now public in GTK 2.6.  Fixes crasher
18063                         when choosing "Other Wireless Networks" from the panel
18064                         applet menu
18065
18066 2005-01-21  Dan Williams  <dcbw@redhat.com>
18067
18068         * src/NetworkManager.c
18069                 - Daemonize earlier so that glib doesn't get confused (?)
18070
18071 2005-01-21  Dan Williams  <dcbw@redhat.com>
18072
18073         * panel-applet/NMWirelessApplet.[ch]
18074           panel-applet/NMWirelessAppletDbus.c
18075           panel-applet/menu-info.c
18076           src/NetworkManagerDevice.c
18077                 - Disable wired devices in the menu when they have no link.
18078
18079 2005-01-21  Dan Williams  <dcbw@redhat.com>
18080
18081         * Cache last-known-good wireless authentication method in
18082                 NetworkManagerInfo, and use that method first during
18083                 wireless device activation.  Should speed up devices that
18084                 need Shared Key authentication method since Open System is
18085                 now the default.
18086
18087         * Remove the hack to not do full activation on wired connections
18088                 that are active when we launch, it causes too many problems
18089                 with name resolution and was a hack in the first place.
18090
18091         * Re-work wireless device activation again somewhat to have a
18092                 clearer chain of events and to use last-known-good
18093                 authentication method of the access point.  Also provide
18094                 better status throughout activation to ensure the applet
18095                 can tell the user exactly what's going on.
18096
18097         * Remove the "find wireless network" code and now simply attempt
18098                 to activate with that access point.  This reduces the delay
18099                 between selecting "Other wireless Network" and actually
18100                 connecting to that network.
18101
18102         * Correctly stop the device's worker thread when its removed.
18103
18104 2005-01-21  Dan Williams  <dcbw@redhat.com>
18105
18106         * dhcpcd/client.c
18107                 - Clean up some of the debug messages
18108
18109 2005-01-21  Dan Williams  <dcbw@redhat.com>
18110
18111         * Add new icons, more frames of animation
18112         * Remove some hacks to get the panel applet to display correct
18113                 status, an NM update will soon follow that will fix the
18114                 real issue.
18115
18116 2005-01-19  Kjartan Maraas  <kmaraas@gnome.org>
18117
18118         * panel-applet/NMWirelessApplet.c: #include <config.h> must be
18119         the first include for working i18n. Also, don't include it in .h files
18120         * panel-applet/NMWirelessApplet.h: Same
18121         * panel-applet/NMWirelessAppletOtherNetworkDialog.c: Same
18122         * panel-applet/menu-info.c: Same
18123
18124 2005-01-18  Dan Williams <dcbw@redhat.com>
18125
18126         * dhcpcd/client.c
18127                 - Remove some debug messages
18128                 - Wrap others in #ifdef DEBUG/#endif
18129
18130         * src/NetworkManager.c
18131                 - Remove some debug messages
18132                 - Clarify some debug messages
18133                 - Remove code related to old single-thread wireless scanning
18134
18135         * src/NetworkManagerAP.[ch]
18136                 - New AP property "last_seen" to track how recently an AP was
18137                         found in a scan
18138                 - Start using 'const' more in function arguments
18139
18140         * src/NetworkManagerAPList.[ch]
18141                 - (nm_ap_list_merge_scanned_ap): new, selectively update attributes
18142                         of an AP found in an AP list from a source AP, or if not found
18143                         in the list add the source AP
18144                 - (nm_ap_list_combine): remove, no longer needed
18145
18146         * src/NetworkManagerDevice.c
18147                 - Each device now has a "worker" thread from start to end of its life.
18148                         Scanning for wireless devices now happens in that thread,
18149                         not in a single "wireless scanning thread" for all devices as
18150                         previously.  Activation consists of adding an idle handler to the
18151                         thread's main loop/context, which gets run at the next available
18152                         opportunity.
18153                 - Wireless scanning is also simplified, there is now only one list of
18154                         access points per wireless device, and APs older than 60s are
18155                         removed from the list.  Previously, we kept results for the last
18156                         3 scans and merged whole lists, which was complicated.
18157                 - Cleaned up activation debug messages.
18158                 - Wireless activation and access-point search routines now use Open System
18159                         authentication before trying Shared Key.
18160                 - Removed some code in nm_device_update_best_ap() that could cause cards
18161                         to loose their link to the access point.
18162                 - Scanning now uses a backoff algorithm, where the inverval becomes
18163                         progressively longer between scans when the list of scanned access
18164                         points doesn't change.  A change will revert to the shortest scan
18165                         interval (20s).
18166
18167         * src/NetworkManagerWireless.[ch]
18168                 - Remove code related to old single-thread wireless scanning
18169
18170 2005-01-18  Colin Walters  <walters@redhat.com>
18171
18172         * src/NetworkManagerDHCP.c (set_nameservers): Free and clear list
18173         of older nameservers.
18174
18175 2005-01-18  Colin Walters  <walters@redhat.com>
18176
18177         * named/nm-named-manager.c (generate_named_conf): Many fixes
18178         to config file generation.
18179         (safer_kill): Remove, was too much trouble for little gain.
18180         (nm_named_manager_start): Run named as NM_NAMED_USER.
18181
18182         * configure.in: Add option --with-named-user.
18183
18184 2005-01-14  Colin Walters  <walters@redhat.com>
18185
18186         Patch from ed@catmur.co.uk (Ed Catmur)
18187
18188         * named/nm-named-manager.c: Add "context" property.
18189         Use it to add child watch source in specific GMainContext.
18190
18191         * src/NetworkManager.c (nm_data_new): Initialize
18192         named with correct main context.  Start named only
18193         after forking.
18194
18195 2005-01-14  Colin Walters  <walters@redhat.com>
18196
18197         * named/nm-named-manager.c (generate_named_conf): Write config
18198         and pid files into NM_NAMED_DATA_DIR; this allows things to
18199         work better with FC3 named SELinux policy.  Also fix up silly
18200         format error.
18201
18202         * configure.in: Add --with-named-dir option.
18203
18204 2005-01-14  Colin Walters  <walters@redhat.com>
18205
18206         * configure.in: Make named support require passing --with-named.
18207
18208         * named/nm-named-manager.c: Support writing resolv.conf directly
18209         without running named.
18210
18211 2005-01-13  Dan Williams <dcbw@redhat.com>
18212
18213         * named/nm-named-manager.c
18214                 - Use syslog(LOG_WARNING) rather than g_warning() (gnome.org #163961)
18215
18216         * src/NetworkManagerDevice.c
18217                 - Rework wireless link detection code to be more reliable
18218
18219 2005-01-12  Dan Williams <dcbw@redhat.com>
18220
18221         * initscripts/RedHat/NetworkManager
18222                 - Change initial level to "-" rather than "345" so that
18223                         we don't activate ourselves by default on install
18224
18225 2005-01-12  Dan Williams <dcbw@redhat.com>
18226
18227         * libnm_glib/
18228                 - Client library for applications using glib
18229
18230         * configure.in
18231           various Makefiles
18232                 - Split NM_CFLAGS and NM_LIBS into separate variables
18233                         like DBUS_*, HAL_* and GLIB_*
18234
18235         * src/NetworkManager.c
18236           src/NetworkManagerMain.h
18237                 - (nm_schedule_status_signal_broadcast): at the earliest convenience,
18238                         broadcast a status changed signal over DBUS from the main thread.
18239                         Still unused anywhere for the moment.
18240
18241         Patch from j@bootlab.org
18242         * panel_applet/NMWirelessAppletDbus.c
18243           src/NetworkManagerDbus.c
18244                 - Correct INT32->UINT32 mistmatch between NM and the panel applet
18245                         for the "getMode" method call
18246
18247 2005-01-10  Dan Williams <dcbw@redhat.com>
18248
18249         * src/NetworkManagerDevice.c
18250                 - Minor fixups & corrections to "auto" frequency mode, make it
18251                         less chatty with syslog
18252
18253 2005-01-10  Dan Williams <dcbw@redhat.com>
18254
18255         * src/NetworkManagerDevice.c
18256                 - Implement "auto" frequency/channel support, since cards like Atheros
18257                         can't use other frequencies at all when you've told it to use a
18258                         specific one, even for scanning.
18259                 - Grab the scan mutex around places where we can't tolerate wireless
18260                         settings changing underneath us, like nm_device_wireless_network_exists()
18261                         and nm_device_activate_wireless()
18262
18263         * src/NetworkManagerWireless.c
18264                 - Back scan interval off to 20s instead of 14s
18265
18266 2005-01-09  Dan Williams <dcbw@redhat.com>
18267
18268         * src/NetworkManagerDevice.c
18269                 - Don't set mode/freq/bitrate if that mode/freq/bitrate is
18270                         already set.  Stops some drivers like Atmel from continually
18271                         reloading the firmware, which they do upon every configuration
18272                         change.
18273
18274 2005-01-09  Dan Williams <dcbw@redhat.com>
18275
18276         * dhcpcd/client.c
18277                 - Use correct timeout value
18278
18279         * info-daemon/NetworkManagerInfoDbus.c
18280           src/NetworkManagerDbus.c
18281                 - Consolidate communication between NM and NMI by doing only 1 dbus
18282                         method call to get Wireless Network info from NMI instead of 6
18283
18284         * src/NetworkManager.c
18285                 - Make sure to cancel activation when we receive a SIGTERM, otherwise
18286                         when we didn't have an AP to use, we'd wait for one forever without
18287                         quitting
18288
18289         * src/NetworkManagerDevice.c
18290                 - nm_device_activation_cancel(): Fix a race between dhcp and quitting
18291                         activation, dhcp might not have started yet but we don't quit activation
18292                         before starting it, so the quit signal gets lost
18293
18294 2005-01-07  Dan Williams <dcbw@redhat.com>
18295
18296         * dhcpcd/client.c
18297                 - Rework the DHCP client code to be much less chatty when
18298                         it receives non-DHCP UDP packets during the DHCP run
18299                         (reported by and preliminary patches from Bill Moss)
18300
18301         * Move wireless scanning to a separate thread.  This thread forwards the
18302                 results to the main thread when done where they are integrated into
18303                 the device's access point lists.  This keeps the main thread (which
18304                 does all the DBUS communication) from being blocked for long periods
18305                 of time by wireless scanning.
18306
18307         * Make state modification an idle routine in the main loop, and trigger
18308                 state changes rather than polling for them.
18309
18310         * src/backends/NetworkManagerGentoo.c
18311                 - Fix up invalid C90 code (reported by Christoph Ruessler)
18312
18313         * src/NetworkManagerDevice.c
18314                 - Revert IPv6 patch for wired devices from 2004-12-22 for
18315                         router advertisements, causing problems and infinite loop
18316                         during "best" device determination due to link going up/down
18317                         (reported by Bill Moss)
18318
18319         Apply patch from Peter Jones
18320         * src/NetworkManagerDevice.c
18321                 - Shortcut for link-checking for ipw2x00 cards
18322                 - Split out association check into separate routine
18323
18324 2004-01-05  Colin Walters  <walters@redhat.com>
18325
18326         * named/named.conf: Add PID_FILE.
18327
18328         * named/nm-named-manager.c: Always generate a pid
18329         file, since older BIND versions don't support
18330         "pid-file none".
18331
18332 2005-01-01  Satoru SATOH <ss@gnome.gr.jp>
18333
18334         * configure.in (ALL_LINGUAS): Added ja (Japanese).
18335
18336 2004-12-22  Dan Williams <dcbw@redhat.com>
18337
18338         * src/NetworkManagerDevice.c
18339                 - Silently fail when setting bitrate doesn't work
18340
18341
18342         Patches from j@bootlab.org:
18343         * src/backends/NetworkManagerDebian
18344                 - Update backend to match functionality in RedHat backend
18345         * src/NetworkManagerDevice.c
18346                 - Take down then bring up wired devices after connection so
18347                 they send out ipv6 router advertisements
18348
18349 2004-12-21  Colin Walters  <walters@verbum.org>
18350
18351         * panel-applet/NMWirelessAppletDbus.c (nmwa_dbus_update_devices): Correctly
18352         test for NETWORK_MODE_ADHOC; spotted by: Greg <gonufer@gmail.com>.
18353
18354 2004-12-21  Colin Walters  <walters@redhat.com>
18355
18356         * configure.in: Correct named detection.
18357
18358 2004-12-21  Colin Walters  <walters@redhat.com>
18359
18360         * src/NetworkManager.c (nm_data_new): Initialize named.
18361         Also, set up a signal handler for SIGINT/SIGTERM, and exit
18362         the mainloop when these signals are received.
18363         (nm_data_free): Unref named.
18364         (sigterm_handler, sigterm_pipe_handler): New functions for
18365         exiting mainloop.
18366         
18367         * src/NetworkManagerMain.h (NMData): Add signal handling and
18368         nameserver bits.
18369
18370         * src/NetworkManager.c (nm_device_unref): Quit device mainloop on
18371         unref.
18372
18373         * src/NetworkManagerDHCP.c (set_nameservers): New function;
18374         set nameservers from DHCP response data.
18375         (set_domain_search): Set domain search from DHCP response.
18376         (nm_device_dhcp_configure): Invoke them.
18377
18378         * src/NetworkManagerSystem.c
18379         (nm_system_device_update_resolv_conf): Delete.  Deleting
18380         code is totally sweet.
18381
18382         * src/Makefile.am (NetworkManager_LDADD): Add libnamed.
18383
18384         * named/nm-named-manager.h, named/nm-named-manager.c: New files;
18385         implements an object which controls a nameserver.  Currently
18386         uses bind 9.
18387
18388         * configure.in: Check for named.
18389
18390         * Makefile.am (SUBDIRS): Add named dir.
18391
18392         * named/named.conf: New template config file.
18393
18394 2004-12-20  Colin Walters  <walters@redhat.com>
18395
18396         * src/NetworkManagerPolicy.c (nm_policy_get_best_device): Fix usage of '=='
18397         instead of '='.
18398
18399 2004-12-17  Dan Williams  <dcbw@redhat.com>
18400
18401         * Ad Ad-Hoc networking mode support.  In Ad-Hoc mode, we only try to get
18402                 link-local addresses instead of doing DHCP.
18403
18404         * In the panel applet, there's a new "Create new Wireless Network..." item
18405
18406         * The panel applet also sticks around now even if NetworkManager dies, but
18407                 it doesn't hide its icon when NM isn't around.  Not hiding the icon is
18408                 a bug, I'll fix that later.
18409
18410         * We also don't use 'nscd' anymore in the RH backend, it was impeding name
18411                 lookups after a switch rather than actually doing them.
18412
18413         * Clean up some of those warnings in nm_ap_list_* functions
18414
18415         * Delay between scans changed to 15s instead of 10s
18416
18417 2004-12-15  Dan Williams  <dcbw@redhat.com>
18418
18419         Patch from Tom Parker
18420         * Add autoip/Link Local Addressing support when we fail to get a DHCP
18421                 address
18422
18423         * Longer pause after setting ESSID on cards that support a larger number
18424                 of channels to give the card time to find the right channel
18425
18426         * Add system hook to restart mDNSResponder (or whatever the local implementation
18427                 of Multicast DNS is) when we activate interfaces
18428
18429 2004-12-15  Dan Williams  <dcbw@redhat.com>
18430
18431         * Rework the DHCP code again to revert to sending full ethernet frames
18432                 rather then relying on the kernel to do the right thing with our
18433                 packets.
18434
18435 2004-12-06  Dan Williams  <dcbw@redhat.com>
18436
18437         * dhcpcd/client.c
18438                 - Fix some minor errors in dhcp_handle_transaction() that caused
18439                         unexpected early timeouts of DHCP transactions
18440
18441         * dhcpcd/client.h
18442                 - DHCP retransmit time from 4s -> 5s
18443
18444 2004-12-05  Dan Williams  <dcbw@redhat.com>
18445
18446         * Major rework of the DHCP code, taking some cues from pump.  We don't
18447                 write raw Ethernet packets anymore, which simplifies the code quite
18448                 a bit.  The new code should be more robust, not hang in recvfrom()
18449                 as much, and generally work better.  This also means that we need
18450                 to force HAL/dbus to use a created GMainContext rather than the
18451                 default context, since having the DHCP renew/rebind thread using
18452                 its own GMainContext seemed to give dbus a fit.  There is also more
18453                 debugging information printed from the DHCP loop to help with future
18454                 problems.
18455
18456         * Also, if the DHCP server doesn't give us the "routersOnSubnet" option,
18457                 assume that the default gateway should be the DHCP server.
18458
18459         Patch from Matthew Schick <matt oss-institute org>
18460         * src/backends/NetworkManagerGentoo.c
18461                 - Fix compilation error due to missing "ip4_broadcast"
18462
18463 2004-12-03  Dan Williams  <dcbw@redhat.com>
18464
18465         * initscript/Makefile.am
18466         * initscript/Debian/NetworkManager
18467         * initscript/Gentoo/NetworkManager
18468         * initscript/RedHat/NetworkManager
18469         * initscript/NMLaunchHelper.c
18470                 - Remove NMLaunchHelper, if you need to wait until the network
18471                         comes up, use the dead code from CVS.
18472
18473 2004-12-01  Colin Walters  <walters@redhat.com>
18474         
18475         * configure.in: Suck in gcc warnings code from Rhythmbox,
18476         but use fewer default flags, and in particular add -Wno-unused,
18477         since the codebase has a lot of unused variables.
18478
18479         * test/nmtestdevices.c (create_device): 
18480         * test/nminfotest.c (get_network_string_property) 
18481         (get_networks_of_type): 
18482         * test/nmclienttest.c (main): 
18483         * src/NetworkManagerDbus.c (nm_dbus_create_error_message): 
18484         * initscript/NMLaunchHelper.c (get_nm_status): 
18485         * info-daemon/NetworkManagerInfoPassphraseDialog.c (update_button_cb): 
18486         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_create_error_message): 
18487         Fix declarations after statements.
18488
18489 2004-12-01  Colin Walters  <walters@redhat.com>
18490
18491         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_return_vpn_password): New method.
18492         (nmi_dbus_get_vpn_userpass): New method.
18493         (nmi_dbus_nmi_message_handler): Invoke it.
18494
18495         * info-daemon/NetworkManagerInfoDbus.h (nmi_dbus_return_vpn_password): Prototype.
18496
18497         * info-daemon/NetworkManagerInfoVPN.h,
18498         info-daemon/NetworkManagerInfoVPN.c: New files; responds
18499         to requests for VPN passwords.
18500
18501         * configure.in (GNOME_KEYRING_LIBS): Check for gnome-keyring.
18502
18503 2004-12-01  Colin Walters  <walters@redhat.com>
18504
18505         * test/nmtestdevices.c, test/nmclienttest.c: Add missing
18506         includes.
18507
18508 2004-12-01  Colin Walters  <walters@redhat.com>
18509
18510         * panel-applet/NMWirelessAppletDbus.c
18511         (nmwa_dbus_update_active_device_strength): Fix missing
18512         return value.
18513
18514 2004-12-01  Colin Walters  <walters@redhat.com>
18515
18516         * panel-applet/NMWirelessApplet.c: Add missing include.
18517
18518 2004-12-01  Colin Walters  <walters@redhat.com>
18519
18520         * src/NetworkManagerWireless.c (nm_wireless_qual_to_percent):
18521         Remove useless CLAMP (); the value is unsigned, and the case tests
18522         qual->qual < 100, so the value must always be between 0 and 100.
18523
18524 2004-12-01  Colin Walters  <walters@redhat.com>
18525
18526         * dhcpcd/buildmsg.c, dhcpcd/dhcp_test.c: Add missing includes.
18527
18528 2004-11-22  Colin Walters  <walters@verbum.org>
18529
18530         * src/backends/NetworkManagerRedHat.c (nm_system_update_dns): Run
18531         "nscd -i hosts" to invalidate the host cache instead of restarting nscd,
18532         which is essentially a noop since nscd caches hosts on disk too.
18533         
18534 2004-11-22  Colin Walters  <walters@redhat.com>
18535
18536         * src/Makefile.am (NetworkManager_SOURCES): Add
18537         NetworkManagerDevicePrivate.h.
18538
18539 2004-11-22  Dan Williams <dcbw@redhat.com>
18540
18541         * src/NetworkManagerDevicePrivate.h
18542                 - Split out the NMDevice struct to a different file so that stuff like
18543                         NetworkManagerDHCP.c and NetworkManagerSystem.c can use it
18544
18545         * dhcpcd/client.c
18546                 - fprintf->syslog
18547                 - (dhcpSendAndRecv): do non-blocking sends and receives, and check to see if we
18548                         need to cancel the dhcp request during the send and recv
18549
18550         * dhcpcd/client.h
18551                 - Move the DHCP option enum to dhcpcd.h
18552
18553         * src/NetworkManagerDHCP.c
18554                 - Split out the actual IP/netmask/etc setting code
18555                 - New Renew/Rebind functions
18556                 - New timer setup function for renew/rebind operations
18557
18558         * src/NetworkManagerDevice.c
18559                 - For device activation, if we are using DHCP then keep the activation thread
18560                         alive until device deactivation.  We need to renew/rebind the DHCP address
18561                         after the T1 (renew) and T2 (rebind) times have expired.
18562                 - Increase some timeouts after bringing wireless cards up/down
18563
18564 2004-11-17  Dan Williams <dcbw@redhat.com>
18565
18566         * Cache access point MAC addresses in NetworkManagerInfo after you've explicitly
18567                 connected to them.  Then, after a scan, match up non-ESSID-broadcasting access
18568                 points with any cached MAC addresses from NetworkManagerInfo.  Allows us to
18569                 show known access points that don't broadcast their ESSID in the menus without
18570                 any user intervention whatsoever.
18571
18572         * info-daemon/NetworkManagerInfoDbus.c
18573                 - (nmi_dbus_get_network_addresses, nmi_dbus_add_network_address): new functions
18574                         for dbus method calls "getNetworkAddresses" and "addNetworkAddress"
18575
18576         * src/NetworkManagerAP.[ch]
18577                 - Add a "user_addresses" data member to the NMAccessPoint structure
18578                 - (nm_ap_get_user_addresses, nm_ap_set_user_addresses): new functions for accessing
18579                         the user_addresses data member
18580
18581         * src/NetworkManagerAPList.c
18582                 - (nm_ap_list_get_ap_by_address): check user_addresses list too, instead of just
18583                         the AP's reported address
18584                 - (nm_ap_list_update_network): grab the user_addresses list from NetworkManagerInfo
18585
18586         * src/NetworkManagerDHCP.c
18587                 - Increase DHCP timeout from 25s -> 30s
18588
18589         * src/NetworkManagerDbus.[ch]
18590                 - (nm_dbus_get_network_addresses, nm_dbus_add_network_address): have NMI get/set
18591                         user addresses
18592
18593         * src/NetworkManagerDevice.c
18594                 - (nm_device_set_wireless_config): bring down the interface, wait 4s, bring it up,
18595                         wait 2s, then configure it.  Sometimes Prism54 cards will freeze up with
18596                         "mgnt tx queue full", seemingly in response to NM controlling the card too much.
18597                         So, we take the card down to clear it out.
18598                 - (nm_device_do_normal_scan): Copy over AP ESSIDs from the allowed access point list
18599                         too, since that's where the user_addresses are
18600
18601         * src/NetworkManagerPolicy.c
18602                 - (nm_state_modification_monitor): Tell NMI to add an AP's hardware address to
18603                         that wireless networks' user_addresses list upon successful activation
18604
18605 2004-11-16  Dan Williams <dcbw@redhat.com>
18606
18607         * src/NetworkManagerDevice.[ch]
18608                 - (nm_device_clear_activation_fail): new function
18609
18610         * src/NetworkManagerPolicy.c
18611                 - (nm_state_modification_monitor): clear the activation_failed flag on devices
18612                         when we've dealt with the failure so the user doesn't get failure-dialog-spammed
18613
18614 2004-11-16  Dan Williams <dcbw@redhat.com>
18615
18616         * src/NetworkManagerDevice.c
18617                 - (nm_device_activate_wireless): Unref best_ap upon success so we don't
18618                         leak the structure, better updating of now_scanning status
18619                 - (nm_device_wireless_network_exists): Rewrite for better/faster checking
18620
18621 2004-11-15  Dan Williams <dcbw@redhat.com>
18622
18623         Major rework of link detection code.  We now use DHCP
18624         as part of the link detection which proves to be much more robust,
18625         and also supports Open System authentication for wireless networks.
18626
18627         We no longer use external DHCP client programs.  Instead, we use 
18628         our own DHCP client, based on substantially reworked bits of 'dhcpcd'
18629         which was written by:
18630                 Yoichi Hariguchi <yoichi@fore.com>
18631                 Sergei Viznyuk <sv@phystech.com>
18632                 http://www.phystech.com/download/
18633         It resides in the "dhcpcd" directory and was refactored into a general
18634         purpose DHCP client library by me.
18635
18636         Also misc fixes (CPPFLAGS->AM_CPPFLAGS, move some stuff around),
18637         move src/backends/NetworkManagerSystem.h -> src/NetworkManagerSystem.h
18638
18639 2004-11-15  Dan Williams <dcbw@redhat.com>
18640
18641         Patch from Tom Parker <palfrey@tevp.net>:
18642
18643         * src/NetworkManagerDevice.c
18644                 - Less output to console when no access
18645                         points are found during a scan
18646
18647 2004-11-15  Dan Williams <dcbw@redhat.com>
18648
18649         Patch from Tom Parker <palfrey@tevp.net>:
18650
18651         * src/backends/interface_parser.c
18652                 - Use g_strdup ()
18653                 - Check for inp == NULL
18654                 - use syslog ()
18655
18656 2004-11-13  Colin Walters  <walters@redhat.com>
18657
18658         Patch from Tom Parker <palfrey@tevp.net>:
18659
18660         * src/Makefile.am (CPPFLAGS): Switch to AM_CPPFLAGS.
18661         
18662         * src/backends/NetworkManagerRedHat.c: Switch to
18663         including shvar.h instead of shvar.c.
18664
18665         * src/backends/NetworkManagerDebian.c: Don't include
18666         interface_parser.c in source file.
18667
18668         (libnmbackend_la_SOURCES): Don't include shvar.[ch]
18669         and interface_parser.[ch].
18670         * src/Makefile.am (libnmbackend_la_SOURCES) <TARGET_REDHAT>:
18671         Include shvar.c and shvar.h here.
18672         (libnmbackend_la_SOURCES) <TARGET_DEBIAN>: Include
18673         interface_parser.c and interface_parser.h here.
18674
18675 2004-11-12  Colin Walters  <walters@redhat.com>
18676
18677         * configure.in: Strip out TARGET_DISTRO and
18678         SYSTEM_BACKEND_FILE variables.  Switch to Automake
18679         conditionals.
18680
18681         * src/Makefile.am (noinst_LTLIBRARIES): Add libnmbackend.la.
18682         (libnmbackend_la_SOURCES): Use Automake conditionals
18683         to add distro-specific files.
18684
18685         * initscript/Makefile.am (SUBDIRS): Update to
18686         use conditionals.
18687
18688 2004-11-12  Colin Walters  <walters@redhat.com>
18689
18690         Patches from j bootlab org
18691
18692         * src/Makefile.am (EXTRA_NetworkManager_SOURCES): 
18693         Add interface_parser.[ch].
18694
18695         * src/backends/NetworkManagerDebian.c (nm_system_device_run_dhcp): Invoke
18696         dhclient with "-lf /var/lib/dhcp/dhclient-%s.leases".
18697
18698 2004-11-12  Colin Walters  <walters@redhat.com>
18699
18700         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_service_init): Delete
18701         call to nmi_dbus_is_running too, not necessary anymore.
18702         * info-daemon/NetworkManagerInfoDbus.c: Include stdlib.h to
18703         pick up exit().
18704
18705 2004-11-11  Colin Walters  <walters@verbum.org>
18706
18707         * info-daemon/NetworkManagerInfoDbus.c (nmi_dbus_is_running):
18708         Delete.
18709         (nmi_dbus_service_init): Call dbus_bus_acquire_service with
18710         the DBUS_SERVICE_FLAG_PROHIBIT_REPLACEMENT flag, and
18711         then check the result for DBUS_SERVICE_REPLY_SERVICE_EXISTS.
18712         This avoids a race condition that made it pretty easily
18713         possible to get two NetworkManagerInfo daemons running.
18714
18715 2004-11-11  Colin Walters  <walters@verbum.org>
18716         
18717         * src/NetworkManager.c (main): Use daemon(3).
18718
18719         * info-daemon/NetworkManagerInfo.c (main): Ditto.
18720
18721         * dispatcher-daemon/NetworkManagerDispatcher.c (main): Ditto.
18722
18723 2004-11-10 Dan Williams <dcbw@redhat.com>
18724
18725         Patches from j bootlab org
18726         * src/NetworkManagerDevice.c
18727                 - (nm_device_activate_wireless): wait 5 seconds before attempting to detect
18728                         whether the card has a link or not, some cards are slow
18729                 - (nm_device_activation_configure_ip): make ipv6 work a bit better
18730
18731         * info-daemon/NetworkManagerInfoPassphraseDialog.c
18732                 - Disable the "Login" button on the passphrase dialog until the user
18733                         enters a valid passphrase or key
18734
18735         Patches from Tom Parker <palfrey tevp net>
18736         * src/backends/NetworkManagerDebian.c
18737                 - Add static IP support to the debian backend
18738
18739         * src/backends/interface_parser.[ch]
18740                 - Parse debian interface config files
18741
18742 2004-11-08 Dan Williams <dcbw@redhat.com>
18743
18744         * src/NetworkManagerDevice.c
18745                 - Some random fprintf->syslog conversions
18746                 - (nm_device_wireless_network_exists): double-check for network
18747                 - (nm_device_find_and_use_essid): Copy over encryption key no matter what
18748
18749         * src/NetworkManagerWireless.[ch]
18750                 - (nm_wireless_[128|64]bit_ascii_to_hex): make "ascii" argument unsigned again
18751                         so that the binary->ascii conversion works (if unsigned, the bitshift
18752                         will fill with zeros, which is what's required).  Also mask bitshift
18753                         result with 0xF for futher assurance.
18754
18755 2004-11-06 Dan Williams <dcbw@redhat.com>
18756
18757         * src/NetworkManagerUtils.c
18758                 - (nm_get_wireless_driver_support_level): default to
18759                         FULLY_SUPPORTED rather than UNSUPPORTED, forgot to
18760                         flip this when changing from whitelist->blacklist of
18761                         wireless drivers
18762
18763 2004-11-05 Dan Williams <dcbw@redhat.com>
18764
18765         Patch from Robert Paskowitz:
18766         * src/backends/NetworkManagerGentoo.c
18767                 - Update static IP config code
18768
18769 2004-11-05 Dan Williams <dcbw@redhat.com>
18770
18771         * info-daemon/NetworkManagerInfoDbus.c
18772           src/NetworkManagerDbus.[ch]
18773           src/NetworkManagerDevice.c
18774                 - Keep track of the # of attempts to get the WEP key
18775                         from the user and pass that along to the info daemon
18776
18777 2004-11-05 Dan Williams <dcbw@redhat.com>
18778
18779         * src/NetworkManagerUtils.c
18780                 - Blacklist wireless cards rather than whitelisting them.
18781                 - Grab driver name from HAL rather than trying to find it
18782                         ourselves.
18783
18784 2004-11-03 Dan Williams <dcbw@redhat.com>
18785
18786         * panel-applet/NMWirelessAppletOtherNetworkDialog.c,
18787                 - Disable OK button until valid data is entered
18788                         for encryption stuff too
18789
18790         * panel-applet/NMWirelessApplet.c
18791                 - Report card strength for current AP if the card
18792                         doesn't report strength data for scanned access
18793                         points
18794
18795         * src/NetworkManagerDevice.c
18796                 - Smooth out cards reported quality, Atmel card was
18797                         intermittently reporting no quality data but soon
18798                         recovers
18799
18800         * src/NetworkManagerWireless.c
18801                 - Better quality data percentage calculation.  Atmel
18802                         cards (mine at least) seem to report the quality
18803                         in percentage format already, so honor that
18804
18805         Patch from <j@bootlab.org>
18806         * NetworkManager.h
18807           info-daemon/NetworkManagerInfoPassphraseDialog.c
18808           info-daemon/passphrase.glade
18809           panel-applet/NMWirelessAppletOtherNetworkDialog.c
18810           panel-applet/essid.glade
18811           src/NetworkManagerAP.c
18812           src/NetworkManagerDevice.c
18813           src/NetworkManagerWireless.[ch]
18814                 - Support ASCII WEP keys, in both 40/64 bit and 104/128 bit
18815
18816 2004-11-03 Dan Williams <dcbw@redhat.com>
18817
18818         * src/NetworkManagerDevice.[ch]
18819                 - (nm_device_set_enc_key): Add parameter to set Authentication
18820                         Mode (Open System, Shared Key, or None).  We're still using
18821                         Shared Key for now though.
18822
18823 2004-11-02  Bryan Clark  <clarkbw@cvs.gnome.org>
18824
18825         * panel-applet/menu-info.c: change from bold text to light
18826         colored, may cause problems with some themes, i've tested a lot
18827         and they seem fine. 
18828
18829         * panel-applet/NMWirelessApplet.c: fix strength tooltip
18830
18831 2004-11-01  Colin Walters  <walters@verbum.org>
18832
18833         * src/NetworkManagerWireless.h, src/NetworkManagerWireless.c
18834         (nm_wireless_128bit_key_from_passphrase): Add const.
18835
18836         * src/NetworkManagerAP.h, src/NetworkManagerAP.c
18837         (nm_ap_set_enc_key_source): Add const.
18838         
18839 2004-11-01  Colin Walters  <walters@verbum.org>
18840
18841         * .cvsignore: Update.
18842
18843 2004-10-29 Dan Williams <dcbw@redhat.com>
18844
18845         * src/NetworkManagerDevice.c
18846                 - (nm_device_wireless_network_exists): Actually use the encryption
18847                         key we got from the applet when attempting to find a wireless network
18848                 - Don't bring devices down so much since on some cards it triggers
18849                         firmware hotplugs each time
18850
18851         * src/NetworkManagerDbus.c
18852                 - (nm_dbus_nm_set_active_device): free the passphrase we may have gotten
18853                         from the caller
18854
18855 2004-10-29 Dan Williams <dcbw@redhat.com>
18856
18857         * src/NetworkManager.c
18858                 - (nm_hal_device_property_modified): unlock a locked active
18859                         wireless device when a wired connection gets a link.
18860                         (Means you'll switch to wired whenever you plug in no
18861                         matter what).
18862
18863 2004-10-29 Dan Williams <dcbw@redhat.com>
18864
18865         * panel-applet/NMWirelessAppletOtherNetworksDialog.[ch]
18866                 - New files, implement the "Other wireless network" dialog
18867
18868         * panel-applet/NMWirelessApplet.c
18869                 - Move "other wireless network" dialog to separate file
18870
18871         * panel-applet/NMWirelessAppletDbus.[ch]
18872                 - Take key and key_type paramaters for the set_device function
18873
18874         * panel-applet/essid.glade
18875                 - Add UI bits for encryption settings
18876
18877         * src/NetworkManagerDbus.c
18878                 - Retrieve key and key_type params for "setActiveDevice" method call
18879                         and pass them on
18880                 - unref AP returned from nm_device_get_best_ap() when needed
18881
18882         * src/NetworkManagerDevice.c
18883                 - (nm_device_get_best_ap): ref the ap before returning it
18884                 - unref AP returned from nm_device_get_best_ap() when needed
18885                 - (nm_device_activate_wireless): add "ap" parameter so we don't
18886                         need to call nm_device_get_best_ap() here, it was pretty much
18887                         redundant anyway
18888                 - (AP_NEED_KEY): break second link check condition out into separate
18889                         function, and fix segfault when ap->enc_key_source was NULL
18890                 - (nm_device_find_and_use_essid): take key and key_type parameters and
18891                         pass them along to nm_device_wireless_network_exists().  If the
18892                         network does exist, set the passed-in key+key_type on the AP
18893
18894         * src/NetworkManagerPolicy.c
18895                 - unref AP returned from nm_device_get_best_ap() when needed
18896
18897 2004-10-28 Dan Williams <dcbw@redhat.com>
18898
18899         * src/NetworkManagerUtils.c
18900                 - (nm_spawn_process): Fix a potential dereference of NULL
18901
18902         Patches from Peter Jones:
18903
18904         * src/NetworkManagerDevice.c
18905                 - (nm_device_test_wireless_extensions): Better check for
18906                         wireless devices
18907
18908         * src/NetworkManagerUtils.c
18909                 - (nm_spawn_process): Pass in valid stdout and stderr so
18910                         executed programs don't randomly SIGPIPE and fail
18911                 - (nm_get_wired_driver_support_level): quash hal warning
18912                         when checking for USB ethernet device
18913
18914 2004-10-27 Dan Williams <dcbw@redhat.com>
18915
18916         * info-daemon/NetworkManagerInfo.c
18917           info-daemon/NetworkManagerInfoDbus.c
18918           info-daemon/NetworkManagerInfoPassphraseDialog.c
18919           panel-applet/NMWirelessApplet.c
18920                 - Properly escape gconf keys
18921
18922         * src/NetworkManager.c
18923                 - remove unused variables
18924
18925         * src/NetworkManagerAP.c
18926                 - (nm_ap_new_from_ap): Don't redundantly set new APs
18927                         refcount since it got set in nm_ap_new()
18928
18929         * src/NetworkManagerAPList.c
18930                 - (nm_ap_list_combine): Give up ownership of newly created
18931                         access points to the ap list, fixes memleak
18932
18933         * src/NetworkManagerDevice.c
18934                 - Remove cached_ap_list4 member since its not really needed
18935                 - (nm_device_wireless_network_exists): Try to get correct
18936                         encryption status of a found AP if its already in our
18937                         device list
18938                 - (nm_device_do_normal_scan): Clean up scanning a bit, make
18939                         memory allocs/deallocs a bit clearer and shorter-lived
18940
18941 2004-10-26 Ray Strode <rstrode@redhat.com>
18942
18943         * panel-applet/NMWirelessApplet.c:
18944           (custom_essid_item_selected):  kill some compiler
18945         warnings 
18946
18947 2004-10-26 John (J5) Palmieri <johnp@redhat.com>
18948
18949         * info-daemon/NetworkManagerInfoDbus.c
18950                 - (nmi_dbus_is_running): New function for determining if nmi is already running
18951                 - (nmi_dbus_service_init): exit if another instance of nmi is already running
18952
18953 2004-10-23 Dan Williams <dcbw@redhat.com>
18954
18955         * info-daemon/NetworkManagerInfoDbus.c
18956                 - Trap the "DeviceActivationFailed" signal
18957
18958         * docs/NetworkManager DBUS API.txt
18959                 - Add "DeviceActivationFailed" signal
18960
18961         * panel-applet/NMWirelessAppletDbus.c
18962                 - Quash the "NetworkManager service not available" message
18963
18964         * src/NetworkManagerDbus.[ch]
18965                 - Add the "DeviceActivationFailed" signal
18966
18967         * src/NetworkManagerDevice.c
18968                 - Add support for activation_failed flag
18969                 - Fix deadlock where activation thread didn't clean itself up, making
18970                         main thread still believe it was alive forever (didn't reset activation
18971                         flags like activating, just_activated, etc when IP configuration
18972                         failed)
18973
18974         * src/NetworkManagerPolicy.c
18975                 - Implement logic for DeviceActivationFailed signal, and when activation fails
18976                         for wireless networks, try to fall back to some other access point
18977
18978 2004-10-23 Dan Williams <dcbw@redhat.com>
18979
18980         * panel-applet/NMWirelessApplet.[ch]
18981                 - Place the GtkMenuBar inside a GtkEventBox, and add the Event Box
18982                         to the applet object, so we can get tooltips
18983                 - Add tooltips (RH #136866)
18984
18985         * src/NetworkManagerDevice.c
18986                 - When trying to find a wireless network, try to connect with encryption
18987                         turned on first, so that we can more accurately detect whether or not
18988                         we need to use encryption for the actual association later on
18989
18990 2004-10-21 Dan Williams <dcbw@redhat.com>
18991
18992         * Add some support for telling NetworkManagerInfo to tell the user
18993                 that they are using a device that's not fully supported
18994
18995         * Fix some assertions in debug messages due to null access point args
18996
18997 2004-10-21 Dan Williams <dcbw@redhat.com>
18998
18999         * src/NetworkManagerDevice.c
19000                 - Don't try to activate/bring up/down unsupported
19001                         devices
19002
19003         * src/NetworkManagerUtils.c
19004                 - Fix case of PCI ID checks for driver support levels
19005
19006 2004-10-21 Dan Williams <dcbw@redhat.com>
19007
19008         * NetworkManager.h
19009                 - New file, now contains commonly used structures and bits
19010                         for the dbus API of NetworkManager
19011
19012         * Makefile.am
19013                 - Deliver NetworkManager.h to ${includedir}/NetworkManager
19014
19015         * src/NetworkManager.h
19016                 - Rename -> src/NetworkManagerMain.c
19017
19018         * Various fixups all around to use NetworkManager.h and new
19019                 src/NetworkManagerMain.h, remove redundant bits that got
19020                 moved into NetworkManager.h
19021
19022         * src/NetworkManagerDevice.[ch]
19023           src/NetworkManagerUtils.[ch]
19024           src/NetworkManagerPolicy.c
19025           src/NetworkManagerDbus.c
19026                 - Whitelist wireless drivers, and blacklist some wired
19027                         drivers.  Also blacklist cipsec and ethernet-over-usb
19028                         devices at this time (RH #135722, RH #135648)
19029                 - Don't leak unsupported devices out over dbus, or allow
19030                         them to be set as the active device.  Skip over them
19031                         during automatic device picking
19032
19033         * test/nmclienttest.c
19034                 - Clean up the dbus code a lot
19035
19036 Tue Oct 19 14:20:29 2004  Jonathan Blandford  <jrb@redhat.com>
19037
19038         * configure.in: post release bump.
19039
19040 Tue Oct 19 14:19:24 2004  Jonathan Blandford  <jrb@redhat.com>
19041
19042         * configure.in:
19043         * NEWS: Released NetworkManager-0.3.1
19044
19045 2004-10-18 Dan Williams <dcbw@redhat.com>
19046
19047         Patches from Thom May:
19048         * test/nmtestdevices.c
19049                 - Include <string.h>
19050         * src/backends/NetworkManagerDebian.c:
19051                 - (nm_system_device_run_dhcp, nm_system_device_stop_dhcp)
19052                         (nm_system_device_flush_routes, nm_system_device_flush_addresses)
19053                         Move to using g_strdup_printf rather than arbitrary buffers
19054                 - (nm_system_device_setup_static_ip4_config) Implement function.
19055                 - (nm_system_kill_all_dhcp_daemons) Use killall -q rather than killall
19056
19057 2004-10-17 Dan Williams <dcbw@redhat.com>
19058
19059         * info-daemon/NetworkManagerInfoDbus.c
19060                 - Display name of network in the "network not found" dialog
19061
19062         * panel-applet/NMWirelessAppletDbus.c
19063                 - (nmwa_dbus_call_nm_method): new function replaces all other
19064                         nmwa_dbus_get_[string|string_array|int|boolean] methods
19065                 - nmwa_dbus_get_network_name() and nmwa_dbus_get_device_name()
19066                         consolidated into nmwa_dbus_get_object_name()
19067
19068 2004-10-15 Dan Williams <dcbw@redhat.com>
19069
19070         * src/NetworkManagerDbus.c
19071           info-daemon/NetworkManagerInfoDbus.c
19072                 - Display an error dialog when the user tries to use an
19073                         "Other wireless network" that's not found.
19074
19075 2004-10-15 Dan Williams <dcbw@redhat.com>
19076
19077         * panel-applet/NMWirelessApplet.[ch]
19078                 - Fix up corner cases in applet state, making it
19079                         look more responsive.  Change state to "connecting" when
19080                         the user is forcing a device too.
19081
19082 2004-10-15 Dan Williams <dcbw@redhat.com>
19083
19084         * src/NetworkManagerAPList.c
19085                 - (nm_ap_list_update_network): Disown AP after the list takes ownership
19086
19087         * src/NetworkManagerDbus.c
19088                 - (nm_dbus_nm_set_active_device): Simplify the device setting logic
19089
19090         * src/NetworkManagerDevice.c
19091                 - Disown APs after the device's AP list takes ownership
19092
19093 2004-10-15 Dan Williams <dcbw@redhat.com>
19094
19095         * panel-applet/NMWirelessApplet.c
19096                 - Update our applet state from the GUI thread
19097
19098         * panel-applet/NMWirelessAppletDbus.c
19099                 - Greatly simplify the locking to make the GUI thread
19100                         smoother.  Update a private copy of the device list
19101                         and active device and only when done talking to
19102                         NetworkManager turn it over to the GUI thread.
19103
19104 2004-10-15 Dan Williams <dcbw@redhat.com>
19105
19106         * src/NetworkManagerAP.[ch]
19107                 - Add "artificial" get/set functions, set for APs that
19108                         aren't discovered as part of a scan but instead
19109                         discovered by force-setting the ESSID
19110
19111         * src/NetworkManagerDevice.[ch]
19112                 - (nm_device_wireless_network_exists): pass back whether
19113                         or not the discovered AP was encrypted.  Also, try
19114                         falling back to encrypted mode on the card if unencrypted
19115                         association doesn't work
19116                 - (nm_device_find_and_use_essid): If the network requested
19117                         did in fact exists, but it wasn't in our scan list, add
19118                         an "artificial" entry for it.  Some Cisco cards don't
19119                         see non-ESSID-broadcasting APs in their scan but can still
19120                         associate with them if you know the ESSID, this works around
19121                         that behavior
19122                 - (nm_device_do_normal_scan): Carry "artificial" APs over from scan
19123                         to scan if the card is currently associated with that AP
19124
19125 2004-10-15 Dan Williams <dcbw@redhat.com>
19126
19127         ---- We have a website ----
19128         http://people.redhat.com/dcbw/NetworkManager
19129
19130         Patch from Robert Paskowitz:
19131         * src/NetworkManager.c
19132                 - (main): Make sure we are run as root
19133         * src/NetworkManagerDevice.c
19134                 - Fix type in ad-hoc setting function
19135
19136         Patch from Thom May:
19137         * src/backends/NetworkManagerDebian.c
19138                 - Make Debian backend compile again
19139
19140 2004-10-14 Dan Williams <dcbw@redhat.com>
19141
19142         * Tagged NetworkManager-0_3
19143
19144 2004-10-14 Dan Williams <dcbw@redhat.com>
19145
19146         Patch from Robert Paskowitz:
19147         * NEWS
19148           src/NetworkManagerDevice.[ch]
19149           src/backends/NetworkManagerDebian.c
19150           src/backends/NetworkManagerGentoo.c
19151           src/backends/NetworkManagerRedHat.c
19152           src/backends/NetworkManagerSlackware.c
19153                 - Add support for grabbing and using a broadcast address
19154                         from system config files
19155                 - Some Gentoo backend fixes for grabbing network config
19156                 - Fix LOG_WARN->LOG_WARNING
19157
19158 2004-10-14 Dan Williams <dcbw@redhat.com>
19159
19160         * NEWS: a few small fixes in the credits
19161
19162 Thu Oct 14 19:12:58 2004  Jonathan Blandford  <jrb@redhat.com>
19163
19164         * NEWS: prep for release.
19165
19166 Thu Oct 14 16:47:12 2004  Jonathan Blandford  <jrb@redhat.com>
19167
19168         * panel-applet/NMWirelessAppletDbus.c
19169         (nmwa_dbus_update_device_wireless_networks): remove warnings.
19170
19171 Thu Oct 14 16:40:39 2004  Jonathan Blandford  <jrb@redhat.com>
19172
19173         * panel-applet/NMWirelessApplet.c (animation_timeout): Make
19174         applet->state == APPLET_STATE_NO_NM animation.
19175
19176         * panel-applet/NMWirelessApplet.c (custom_essid_item_selected):
19177         set the text correctly.
19178
19179 2004-10-14 Dan Williams <dcbw@redhat.com>
19180
19181         * src/NetworkManager.c
19182                 - Only accept and manager 802.3 and 802.11 devices
19183
19184         * src/NetworkManagerDbus.[ch]
19185                 - (nm_dbus_nm_set_active_device): move most of the actual activation
19186                         logic into NetworkManagerDevice.c
19187                 - (nm_dbus_network_status_from_data): new function
19188                 - (nm_dbus_signal_network_status_change): new function, unused for now
19189                 - (nm_dbus_nm_message_handler): use nm_dbus_network_status_from_data () now
19190
19191         * src/NetworkManagerDevice.[ch]
19192                 - (nm_device_find_and_use_essid): new function.  Search for, and if found use,
19193                         a random ESSID.
19194
19195 2004-10-14 John (J5) Palmieri <johnp@redhat.com>
19196
19197         * info-daemon/NetworkManagerInfo.c 
19198                 - (main): Added session management
19199
19200 2004-10-14 Dan Williams <dcbw@redhat.com>
19201
19202         * panel-applet/NMWirelessAppletDbus.[ch]
19203                 - Expose network_device_[un]ref()
19204                 - Expose wireless_network_[un]ref()
19205                 - (wireless_network_new_with_essid): new function, create and return
19206                         a wireless network with a particular essid
19207
19208         * panel-applet/NMWirelessApplet.c
19209                 - Hook up the "other network" dialog to do something
19210
19211 Wed Oct 13 19:31:53 2004  Jonathan Blandford  <jrb@redhat.com>
19212
19213         * panel-applet/NMWirelessApplet.c: Add an essid dialog.  It
19214         doesn't work yet, but it looks okay.
19215
19216         * panel-applet/icons/*png: Resize to 22x22 and install in the
19217         right place.
19218
19219 2004-10-13 Dan Williams <dcbw@redhat.com>
19220
19221         * panel-applet/NMWirelessApplet.c
19222                 - Add function to print out applet_state in a readable
19223                         manner
19224
19225         * src/NetworkManager.c
19226                 - (main): Don't segfault when nm_dbus_init() fails, we had
19227                         a left-over call to hal_shutdown() into which we passed NULL
19228
19229         * src/NetworkManagerAP.c
19230                 - (nm_ap_set_essid): Allow NULL essids
19231
19232         * src/NetworkManagerAPList.[ch]
19233                 - More use of nm_ap_list_[un]lock ()
19234                 - (nm_ap_list_get_ap_by_essid): don't warn when looking for a NULL
19235                         network/essid, just return nothing.  Also skip over NULL
19236                         essid access points in the list when searching
19237                 - (nm_ap_list_get_ap_by_address): new function
19238                 - (nm_ap_list_update_network): set the access point's key source to
19239                         NULL when the key returned from NetworkManagerInfo is NULL or
19240                         of 0 length
19241                 - nm_ap_list_update_keys() -> nm_ap_list_update_properties(), and
19242                         copy timestamp over too
19243                 - (nm_ap_list_copy_essids_by_address): new function, attempt to
19244                         find the correct ESSID for a blank-essid access point by searching
19245                         through another list and matching access point MAC addresses
19246                 - (nm_ap_list_diff): exclude blank-essid access points from the diffs
19247
19248         * src/NetworkManagerDbus.c
19249                 - (nm_dbus_nm_set_active_device): deal with random networks the user
19250                         may specify.  This is mainly for access points that don't
19251                         broadcast their essid.  So if the user tells us to associate with
19252                         some random ESSID that's not in our access point list, we find
19253                         out if the access point does in fact exist (by attempting association
19254                         and then matching that access point's MAC address with the essid the
19255                         user gave us) and then we switch to it.
19256                 - (nm_dbus_devices_handle_request): don't add blank-essid access points
19257                         to the returned list of networks for the "getNetworks" method
19258
19259         * src/NetworkManagerDevice.[ch]
19260                 - Extra debugging info for link detection
19261                 - (nm_device_ap_list_get_ap_by_address): new function, return an AP
19262                         based on MAC address
19263                 - (nm_device_get_path_for_ap): ignore blank-essid access points
19264                 - (nm_device_wireless_network_exists): new function, find out whether
19265                         a random ESSID exists by attempting to associate with it
19266                 - (nm_device_do_normal_scan): allow blank-essid access points in our
19267                         device list as long as they have an AP MAC address we can use.
19268                         Also send WirelessNetwork[Dis]Appeared signals for non-active
19269                         devices too.  Lets the applet update more frequently.
19270
19271         * src/backends/NetworkManagerGentoo.c
19272                 - Patch from: Robert Paskowitz
19273                         - Update backend code for Gentoo
19274                         - Implement nm_system_device_update_config_info ()
19275
19276         * test/nmclienttest.c
19277                 - (set_network_device): new function, takes a command-line argument
19278                         and tells NetworkManager to use that wireless network
19279
19280 Wed Oct 13 John (J5) Palmieri <johnp@redhat.com>
19281
19282         * info-daemon/NetworkManagerInfo.c (nmi_spawn_notification_icon): Stop respawning
19283         if the notification icon crashes 5 times within 5 seconds of each respawn 
19284
19285 Tue Oct 12 22:53:04 2004  Jonathan Blandford  <jrb@redhat.com>
19286
19287         * panel-applet/NMWirelessApplet.c (nmwa_update_state): remove
19288         g_print.
19289
19290 Tue Oct 12 22:44:15 2004  Jonathan Blandford  <jrb@redhat.com>
19291
19292         * panel-applet/NMWirelessApplet.h: Change the name of the icons.
19293
19294         * panel-applet/NMWirelessApplet.c: (animation_timeout),
19295         (nmwa_update_state), (nmwa_destroy), (nmwa_setup_widgets),
19296         (nmwa_icons_free), (nmwa_icons_load_from_disk), (nmwa_icons_init):
19297         Change the name of the icons.
19298
19299         * panel-applet/menu-info.c: (nm_menu_wired_class_init),
19300         (nm_menu_wired_expose_event), (nm_menu_network_class_init),
19301         (nm_menu_wireless_class_init), (nm_menu_wireless_new),
19302         (nm_menu_wireless_expose_event): Really bad hack to get the style
19303         to draw in the right color.
19304
19305 Tue Oct 12 John (J5) Palmieri <johnp@redhat.com>
19306
19307         * info-daemon/NetworkManagerInfo.c (main):  Add child watch to respawn
19308         Notification if it crashes
19309
19310 Fri Oct  8 07:19:55 2004  Jonathan Blandford  <jrb@redhat.com>
19311
19312         * panel-applet/NMWirelessAppletDbus.c (nmwa_dbus_get_double): 
19313         (nmwa_dbus_get_string): remove unused functions
19314
19315         * panel-applet/NMWirelessApplet.c (nmwa_about_cb):
19316         (nmwa_cancel_timeout), (nmwa_get_menu_pos), (nmwa_factory):
19317         remove unused functions
19318
19319         * panel-applet/NMWirelessApplet.c: Rewrite icon code.
19320
19321 2004-10-12 Dan Williams <dcbw@redhat.com>
19322
19323         * panel-applet/NMWirelessAppletDbus.c
19324                 - New functions:
19325                         wireless_network_new
19326                         wireless_network_copy
19327                         network_device_new
19328                         network_device_copy
19329
19330         * src/NetworkManagerDevice.[ch]
19331                 - New functions:
19332                         nm_device_set_mode_managed
19333                         nm_device_set_mode_adhoc
19334                 - Use these functions where appropriate
19335                 - When creating a new wireless device, force the card
19336                         to managed/Infrastructure mode as soon as possible
19337
19338 2004-10-12 Dan Williams <dcbw@redhat.com>
19339
19340         * src/NetworkManagerDevice.c
19341                 - Force wireless cards into Infrastructure mode before we use them
19342
19343 2004-10-12 Dan Williams <dcbw@redhat.com>
19344
19345         * TODO
19346                 - Remove bit about static IP address support
19347
19348         * src/NetworkManagerUtils.c
19349                 - (nm_spawn_process): Add some error reporting
19350
19351         * src/NetworkManagerDevice.c
19352                 - (nm_device_activation_configure_ip): hook up to the static config
19353                         routines in the backends
19354
19355         * src/backends/NetworkManagerRedHat.c
19356                 - (nm_system_device_update_config_info): use shvar.c routines to
19357                         parse the config file iformation, not our own
19358                 - (nm_system_device_setup_static_ip4_config): new function, based
19359                         heavily on 'ifup' script and 'ipcalc' tool code.  Set up a device
19360                         with a static IP address and gateway
19361
19362         * src/backends/shvar.[ch]
19363                 - Parser (filched from initscripts package) for ifcfg-* files
19364
19365         * src/backends/NetworkManagerSystem.h
19366           src/backends/NetworkManagerGentoo.c
19367           src/backends/NetworkManagerDebian.c
19368           src/backends/NetworkManagerSlackware.c
19369                 - Stub nm_system_device_update_config_info() and nm_system_device_setup_static_ip4_config()
19370
19371 2004-10-11 Dan Williams <dcbw@redhat.com>
19372
19373         * TODO
19374                 - Remove bit about more robust AP diffing since I just implemented it
19375
19376 2004-10-11 Dan Williams <dcbw@redhat.com>
19377
19378         * src/NetworkManagerAP.c
19379                 - (nm_ap_new, nm_ap_new_from_ap): Don't crash when we don't have
19380                         enough RAM to allocate new AP structures, but return NULL instead
19381
19382         * src/NetworkManagerAPList.[ch]
19383                 - (nm_ap_list_is_empty): new function
19384                 - (nm_ap_list_combine): new function, combine two access point lists
19385                 - (nm_ap_list_copy_keys): new function, copy keys from one list
19386                         into another
19387
19388         * src/NetworkManagerDevice.[ch]
19389                 - Rename some functions to be clearer:
19390                         nm_device_get_best_ap_frozen -> nm_device_is_best_ap_frozen
19391                         nm_device_just_activated     -> nm_device_is_just_activated
19392                         nm_device_activating         -> nm_device_is_activating
19393                         nm_device_now_scanning       -> nm_device_is_scanning
19394                 - Cache the last 4 scans so that the access point list is more stable.
19395                         We combine the lastest two scans and use that as the AP list,
19396                         and diff that combined list against the combination of the earliest
19397                         two cached scans for the WirelessNetworkAppeared/Dissappeared signals
19398
19399 2004-10-08 John (J5) Palmieri <johnp@redhat.com>
19400
19401         * info-daemon/NWManagerInfo.h
19402                 - (struct NetworkManagerInfo): add shutdown_timeout GSource
19403
19404         * info-daemon/NWManagerInfoDbus.c
19405                 - (shutdown_callback): new function
19406                 - (nmi_dbus_filter): Create a 30 second timeout until shutdown
19407                         if NetworkManager goes away.  Kill the timeout
19408                         if NetworkManager restarts before the 30 seconds
19409                         are up.
19410                 - (nmi_dbus_service_init): 
19411                         - call gtk_main_quit if NetworkManager is not running
19412                         - add filters to monitor dbus service creations and
19413                                 deletions
19414         
19415 2004-10-08 John (J5) Palmieri <johnp@redhat.com>
19416
19417         * panel-applet/NMWirelessApplet.c
19418                 - (nmwa_update_state): Hide notification icon if we are only
19419                         showing one wired card and no wireless interfaces 
19420                         (Red Hat Bug #134895)
19421
19422         * panel-applet/NMWirelessAppletDbus.c
19423                 - (nmwa_dbus_filter): changed exit to gtk_main_quit ()
19424
19425         * info-daemon/NWManagerInfo.c
19426                 - (main): Terminated the notification_icon_cmd array with a NULL
19427
19428 2004-10-08  Hendrik Brandt  <hebra@cvs.gnome.org>
19429
19430         * configure.in (ALL_LINGUAS): Added de (German).
19431
19432 2004-10-08 Dan Williams <dcbw@redaht.com>
19433
19434         * src/NetworkManagerDevice.c
19435                 - Be a bit more robust about link checking, ie make sure that
19436                         the WEP key we were given actually has some data in it
19437
19438 2004-10-08 Dan Williams <dcbw@redhat.com>
19439
19440         * info-daemon/NetworkManagerInfo.c (main):
19441                 - Initialize GError object to NULL
19442
19443 2004-10-08 Dan Williams <dcbw@redhat.com>
19444
19445         * panel-applet/NMWirelessAppletDbus.c
19446                 - Die if NetworkManagerInfo dies, since it manages our lifetime
19447
19448 2004-10-08 Dan Williams <dcbw@redhat.com>
19449
19450         * info-daemon/NetworkManagerInfo.[ch]
19451           info-dameon/NetworkManagerInfoDbus.[ch]
19452           info-daemon/NetworkManagerInfoPassphraseDialog.[ch]
19453                 - Preserve original label text in the passphrase dialog so that
19454                         it actually gets updated with the new network name the next
19455                         time around.  Previously, we were overwriting it so you'd get
19456                         the wrong network name to enter a key for
19457                 - Add a "Key Type" combo to the passphrase dialog, user selects
19458                         encryption key type now, type is stored in GConf too
19459                 - Adjust NM<->NMI DBUS protocol to pass the key type back to NM too
19460
19461         * src/NetworkManagerAP.[ch]
19462                 - Remove all the encyption method magic.  It's now set by the user
19463                         and NetworkManager retrieves the type of encryption key from
19464                         NetworkManagerInfo
19465
19466         * src/NetworkManagerAPList.[ch]
19467           src/NetworkManagerDbus.[ch]
19468                 - Adjust to new way of setting encryption key and method
19469                 - Pull encryption method down from NMI along with key
19470
19471         * src/NetworkManagerDevice.[ch]
19472                 - Removed encryption method fallback magic as the method is now
19473                         determined by the user.  This greatly simplifies the connection
19474                         logic.
19475                 - More robust connection/link logic.  Besides removing the encryption
19476                         method fallback magic, check whether or not the card is receiving
19477                         invalidly encrypted packets, which usually indicates that we have
19478                         a bad WEP key set.
19479                 - Don't blindly forge ahead when DHCP fails (still not completely fixed)
19480
19481         * test/nminfotest.c
19482                 - Test out new "Key Type" stuff in the NMI passphrase dialog
19483
19484 2004-10-07 Dan Williams <dcbw@redhat.com>
19485
19486         * info-daemon/NetworkManagerInfo.conf
19487                 - Allow root user to run NMI too
19488
19489 2004-10-06 Dan Williams <dcbw@redhat.com>
19490
19491         * src/NetworkManagerDevice.[ch]
19492           src/NetworkManagerDbus.c
19493           doc/NetworkManager DBUS API.txt
19494                 - Add a new status tag "scanning", which is set when there
19495                         is no active network connection, but NetworkManager is
19496                         looking for an access point to associate with
19497
19498         * panel-applet/main.c
19499                 - Cast the applet appropriately for gtk_widget_show_all ()
19500
19501 Mon Oct  4 12:55:41 2004  Jonathan Blandford  <jrb@redhat.com>
19502
19503         * panel-applet/eggtrayicon.[ch]:
19504         * panel-applet/main.c: Add missing file
19505
19506 2004-10-04 Dan Williams <dcbw@redhat.com>
19507
19508         * src/NetworkManagerDevice.[ch]
19509                 - Add a slightly more robust method of determining if the WEP key
19510                         is correct or not, by checking the WEP-discarded packet count
19511                         on the card
19512
19513         * info-daemon/NetworkManagerInfo.c
19514                 - (nmi_gconf_notify_callback): Fix GConf essid escaping, should
19515                         un-escape values we pull out rather than escaping them
19516
19517 2004-10-03  Marcel Telka  <marcel@telka.sk>
19518
19519         * configure.in (ALL_LINGUAS): Added sk.
19520
19521 Fri Oct  1 18:26:03 2004  Jonathan Blandford  <jrb@redhat.com>
19522
19523         * panel-applet/menu-info.c (nm_menu_wired_class_init): update look
19524         and feel.  We should be back to working, and have a good, clean
19525         look.
19526
19527 2004-09-30 Dan Williams <dcbw@redhat.com>
19528
19529         * info-daemon/NetworkManagerInfo.c
19530           info-daemon/NetworkManagerInfoDbus.c
19531           test/nminfotest.c
19532                 - Escape ESSIDs in gconf
19533
19534         * src/NetworkManagerDevice.c
19535                 - Fix pseudo-scanning to use netowrk list from info daemon
19536
19537 Wed Sep 29 18:18:24 2004  Jonathan Blandford  <jrb@redhat.com>
19538
19539         * configure.in: Add a temporary --enable-notification-icon.  This
19540         will prolly go away.
19541
19542         * info-daemon/Makefile.am:
19543         * info-daemon/NetworkManagerInfo.c:
19544         * info-daemon/NetworkManagerInfo.h: Use a notification icon.
19545
19546         * panel-applet/Makefile.am:
19547         * panel-applet/NMWirelessApplet.c: Turn into a notification icon
19548         * panel-applet/NMWirelessApplet.h:
19549
19550 Tue Sep 28 16:35:20 2004  Jonathan Blandford  <jrb@redhat.com>
19551
19552         * panel-applet/NMWirelessApplet.c: Fix deadlock.  Add a separator
19553         before 'select custom ESSID'.
19554
19555         * panel-applet/menu-info.c: Start rewrite for better headers.  Not
19556         fully complete, but syncing in prep for merge.
19557
19558         * panel-applet/icons/*png: New images
19559
19560 2004-09-28 Dan Williams <dcbw@redhat.com>
19561
19562         * src/NetworkManager.c
19563           src/NetworkManagerDevice.c
19564           src/NetworkManagerPolicy.c
19565                 - Don't blow away an active wired connection on startup
19566
19567 2004-09-28  Bryan Clark  <clarkbw@cvs.gnome.org>
19568
19569         Changes from J5
19570         
19571         * info-daemon/NetworkManagerInfo.conf: fixed own permissions
19572
19573         * info-daemon/NetworkManagerInfoDbus.c: added service name to
19574         syslog output
19575
19576 Wed Sep 22 14:19:48 2004  Jonathan Blandford  <jrb@redhat.com>
19577
19578         * panel-applet/NMWirelessApplet.c: Only add essid's if we actually
19579         have a wireless card.
19580
19581 Wed Sep 22 14:05:48 2004  Jonathan Blandford  <jrb@redhat.com>
19582
19583         * panel-applet/NMWirelessApplet.c: move the custom essid item.
19584         Also, get the right device strings.
19585
19586 Wed Sep 22 13:51:45 2004  Jonathan Blandford  <jrb@redhat.com>
19587
19588         * panel-applet/menu-info.c (nm_menu_network_draw_indicator): Flip
19589         the logic to make this right.
19590
19591         * panel-applet/NMWirelessApplet.c (sort_networks_function): sort
19592         devices so that wired networks are always first.
19593
19594 2004-09-22    <clarkbw@cvs.gnome.org>
19595
19596         * initscript/Debian/.cvsignore:
19597         * initscript/Slackware/.cvsignore:
19598         Added new cvsignores for Makefile, Makefile.in
19599         
19600         * test/.cvsignore:
19601         Added nmtestdevices
19602         
19603         * src/NetworkManagerDevice.c: 
19604         * src/NetworkManager.c: 
19605         Updated the wireless/wired HAL device strings from net.ethernet to
19606         net.80203 or net.80211 depending on wired or wireless respectively
19607         
19608         * examples/python/NetworkManager.py: 
19609         s/Quality/Strength/
19610
19611         * examples/python/systray/network_tray.py:
19612         Lots of little changes and fixes.  been rotting for a while so I
19613         figured I'd finally sync them all with CVS
19614
19615 Tue Sep 21 18:05:34 2004  Jonathan Blandford  <jrb@redhat.com>
19616
19617         * configure.in: Add graphics
19618
19619         * panel-applet/Makefile.am: Add graphics
19620
19621         * panel-applet/icons/*: Add graphics
19622
19623         * panel-applet/NMWirelessApplet.c: Use new menu times to display
19624         the icons fully lined up.
19625
19626         * panel-applet/menu-info.c: 
19627         * panel-applet/menu-info.h: Add another menu type.
19628
19629 Fri Sep 17 14:04:34 2004  Jonathan Blandford  <jrb@redhat.com>
19630
19631         * panel-applet/NMWirelessApplet.c: Redo the menu item code.
19632
19633         * panel-applet/menu-item.[ch]: Wireless menu item.
19634
19635 2004-09-15  John (J5) Palmieri <johnp@redhat.com>
19636
19637         * info-daemon/NetworkManagerInfo.conf
19638                 - Created a more robust security policy for the DBus service
19639                         - everything is denied by default
19640                         - root can own and send to the service
19641                         - users logged in at the console can send to the service
19642
19643 2004-09-13  Dan Williams <dcbw@redhat.com>
19644
19645         * src/NetworkManagerDevice.c
19646                 - (nm_device_get_essid): use iw_get_basic_config() rather than
19647                         iw_get_ext (SIOCGIWESSID) since prism54 cards don't like
19648                         the latter
19649
19650 2004-09-13  Dan Williams <dcbw@redhat.com>
19651
19652         * TODO: fix typo
19653
19654         * docs/NetworkManager DBUS API.txt
19655                 - Update for new signal strength changes
19656
19657         * panel-applet/NMWirelessApplet.c
19658                 - Make panel icon show strength of the current connection
19659                 - Cleanups and memleak fixes
19660
19661         * panel-applet/NMWirelessApplet.h
19662                 - Add data members for signal strength on devices and networks
19663
19664         * panel-applet/NMWirelessAppletDbus.c
19665                 - Free more DBusErrors
19666                 - Update for new signal strength changes
19667                 - Make devices and networks more like real objects, use ref/unref methods
19668                 - Actually unlock the mutex when updating the active device
19669
19670         * src/NetworkManagerAP.c
19671                 - Change AP functions and data members from "quality"->"strength"
19672
19673         * src/NetworkManagerDbus.c
19674                 - Kill "getMaxQuality" and "getQuality" methods
19675                 - Add "getStrength" methods for Networks and Devices
19676
19677         * src/NetworkManagerDevice.[ch]
19678                 - Add accessors for device strength
19679                 - Add functions to update strength for a device.  Note that not all drivers
19680                         actually support signal strength for scanned access points (Atmel drivers
19681                         being one)
19682                 - Calculate signal strength for each AP during scan
19683
19684         * src/NetworkManagerWireless.[ch]
19685                 - Add function to return signal strength % from a device and a raw quality struct
19686
19687         * test/nmclienttest.c
19688                 - Update for new signal strength changes
19689
19690 2004-09-11  Dan Williams <dcbw@redhat.com>
19691
19692         * src/NetworkManager.c
19693                 - Fix race condition between initscripts and NM on card insertion
19694                         which could cause a card to keep an IP address and routes around
19695                         even when it was not the active device
19696
19697         * src/NetworkManagerDbus.c
19698                 - Fix compile errors, free more DBusErrors
19699
19700 2004-09-11  Dan Williams <dcbw@redhat.com>
19701
19702         * docs/NetworkManager DBUS API.txt
19703                 - Add an explanation of NM's API
19704
19705         * src/NetworkManagerDbus.c
19706                 - Free some more DBusErrors if needed
19707
19708 2004-09-11  Dan Williams <dcbw@redhat.com>
19709
19710         * panel-applet/NMWirelessApplet.c
19711           panel-applet/NMWirelessAppletDbus.c
19712                 - Start using NetworkDevice/WirelessNetwork structures in more places
19713                 - Update for unified device/network forcing in NetworkManager
19714
19715         * src/NetworkManager.c
19716                 - some code consolidation
19717
19718         * src/NetworkManagerDbus.c
19719                 - (nm_dbus_nm_set_active_device): "setActiveDevice" now takes either one
19720                         or two arguments:  the first is the NM ID of the device to switch to,
19721                         and the second (optional) argument is the ESSID of a wireless network
19722                         to use as well.
19723                 - Get rid of "setNetwork" method due to above change
19724
19725         * src/NetworkManagerDevice.c
19726                 - (nm_device_new): perform scan and update best AP on device creation
19727                 - nm_device_activation_cancel_if_needed()->nm_device_activation_should_cancel()
19728                 - nm_device_activation_signal_cancel()->nm_device_activation_cancel(), and
19729                         spin waiting for cancellation to finish before returning
19730
19731         * src/NetworkManagerPolicy.c
19732                 - Changes here clarify the situations in which a device switch occurs, and 
19733                         make sure to keep using a forced device and network if the user gives
19734                         us one
19735                 - Remove old unused code
19736
19737 2004-09-11  Martin Willemoes Hansen  <mwh@sysrq.dk>
19738
19739         * configure.in: Added Danish (da) to ALL_LINGUAS.
19740
19741 2004-09-09  Dan Williams <dcbw@redhat.com>
19742
19743         * panel-applet/NMWirelessAppletDbus.c
19744                 - Pull fresh devices and networks from NM when wireless networks
19745                         change.  Provides faster feedback of a forced wireless network
19746
19747         * src/NetworkManagerDbus.c
19748                 - Return error when "getMaxQuality" is called on a wired device
19749                 - Make best_ap freezing actually work again, and signal cancellation
19750                         of activation if there's already a device activation when the user
19751                         freezes the best_ap
19752
19753         * src/NetworkManagerDevice.c
19754                 - Don't clear out the best_ap for wireless devices when the link goes
19755                         down, that's done elsewhere
19756                 - Kill any dhcp daemons when cancelling device activation since they
19757                         may be stuck waiting for a DHCP address, and since we're cancelling
19758                         activation we don't care about that anymore
19759
19760         * src/NetworkManagerPolicy.c
19761                 - Make sure to unref the device we ref earlier (we refed it to make sure
19762                         it stuck around during device activation and such)
19763                 - If we were going to change the best device, but its activating currently
19764                         (and therefore the change didn't occur due to the check earlier)
19765                         we mark the state changed to we come back to it later when device
19766                         activation has canceled and its no longer activating
19767
19768         * src/backends/NetworkManagerRedHat.c
19769                 - SIGKILL dhcp daemons rather than SIGTERM-ing them
19770
19771 2004-09-09  Bryan Clark  <clarkbw@cvs.gnome.org>
19772
19773         * info-daemon/passphrase.glade: 
19774         set passphrase input to activates_default : True
19775
19776         * examples/python/systray/network_tray.py
19777         (network_tray.sort_networks):
19778
19779         Added support for having wireless always scanning
19780
19781 2004-09-09  Dan Williams <dcbw@redhat.com>
19782
19783         NOTE: this commit changes the behavior of wireless devices in
19784         NetworkManager.  They are now up all the time, scanning all
19785         the time.  Only the active device has an IP address and routing
19786         information set up however.  Also, NetworkManager will no longer
19787         opportunistically switch wireless networks when a better one
19788         comes in range, it will remain associated with one wireless network
19789         until that one drops out.
19790
19791         * panel-applet/NMWirelessApplet.c
19792           panel-applet/NMWirelessAppletDbus.c
19793                 - List all wireless cards and their respective networks
19794
19795         * src/NMLoadModules
19796                 - Use full path to /sbin/ip
19797
19798         * src/NetworkManager.c
19799                 - Keep wireless devices up all the time so they can scan
19800
19801         * src/NetworkManagerDbus.c
19802                 - On a WirelessNetworkUpdate signal from NMI, don't update
19803                         the "best" AP
19804
19805         * src/NetworkManagerDevice.c
19806                 - (nm_device_set_link_active): clear out the best ap for
19807                         wireless devices when the link is set to FALSE
19808                 - Scan on all wireless cards, all the time
19809                 - (nm_device_activation_worker): split out the wireless card
19810                         link-waiting code to a separate function
19811                 - Keep wireless cards up even if device activation fails
19812                 - Don't update the "best" ap as much
19813
19814         * src/NetworkManagerPolicy.c
19815                 - Don't update the best ap when checking if its frozen,
19816                         let link checking clear out a frozen best ap for us
19817
19818         * src/NetworkManagerWireless.c
19819                 - Scan on all wireless cards, all the time
19820
19821 2004-09-09  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>
19822
19823         * configure.in: Added 'es' (Spanish) to ALL_LINGUAS.
19824
19825 2004-09-09  Ankit Patel <ankit@redhat.com>
19826
19827         * configure.in: Added 'gu' (Gujarati) to ALL_LINGUAS.
19828
19829 2004-09-09  Pablo Saratxaga  <pablo@mandrakesoft.com>
19830
19831         * configure.in: Added Walloon (wa) to ALL_LINGUAS.
19832
19833 2004-09-08  Bryan Clark  <clarkbw@cvs.gnome.org>
19834
19835         * examples/python/NetworkManager.py: 
19836         added CONNECTED, CONNECTING, and DISCONNECTED states
19837         added methods to return number of devices of a single type
19838
19839         * examples/python/systray/network_tray.py: 
19840         did some tweaks to get the menu looking near what it is supposed
19841         to look like.  Also did a Airo card hack to make it show the
19842         correct AP quality
19843
19844 2004-09-08  Dan Williams <dcbw@redhat.com>
19845
19846         * panel-applet/no-networkmanager.png
19847           panel-applet/Makefile.am
19848           panel-applet/NMWirelessApplet.c
19849                 - Add a "NetworkManager not running" icon and use it
19850                 - Use new consolidated GConf keys rather than Preferred/Trusted
19851
19852         * TODO: update
19853
19854         * info-daemon/NetworkManagerInfo.c
19855           info-daemon/NetworkManagerInfoDbus.[ch]
19856           info-daemon/NetworkManagerInfoPassphraseDialog.c
19857                 - There are now no longer two separate lists of wireless networks,
19858                         but one list where each network is "trusted" or not trusted
19859                 - Add a "getNetworkTrusted" dbus method
19860                 - "WirelessNetworkUpdate" signal now sent rather than
19861                         "PreferredNetworkUpdate/TrustedNetworkUpdate" signals
19862                 - Start freeing some dbus errors (not completed yet)
19863
19864         * info-daemon/passphrase.glade
19865                 - Remove the "don't show" hints for pager and taskbar
19866                 - Add a title since its going to be in the taskbar
19867
19868         * src/NetworkManager.[ch]
19869           src/NetworkManagerAPList.[ch]
19870                 - There are now no longer two separate lists of wireless networks,
19871                         but one list where each network is "trusted" or not trusted
19872
19873         * src/NetworkManagerAP.[ch]
19874                 - Add get/set "trusted" accessors and data bit
19875
19876         * src/NetworkManagerDbus.[ch]
19877                 - Add function to get "trusted" status of a network from NetworkManagerInfo
19878                 - Trap new WirelessNetworkUpdate signal rather than old separate signals
19879
19880         * src/NetworkManagerDevice.[ch]
19881                 - Add per-device config data (ip4 addr, gateway, netmask) and accessors
19882                 - (nm_device_new): Get device config from backend when initializing devices
19883                 - (nm_device_activation_worker): Split out device configuration on
19884                         activation to deal with static/dynamic IP differences, and try encryption
19885                         fallbacks on a device if the encryption method for the best AP is not good
19886                 - (nm_device_update_best_ap): convert to new consolidated access point lists from
19887                         NetworkManagerInfo, and copy over latest NMI info to best_ap when setting it
19888
19889         * src/NetworkManagerWireless.c
19890                 - libgcrypt code wasn't converting the MD5 digest to an ascii string, fix it
19891
19892         * src/backends/NetworkManagerRedHat.c
19893           src/backends/NetworkManagerSystem.h
19894                 - (nm_system_device_update_config_info): Add function to get device configuration
19895                         from system data in ifcfg-* files
19896
19897         * src/backends/NetworkManagerDebian.c
19898           src/backends/NetworkManagerGentoo.c
19899           src/backends/NetworkManagerSlackware.c
19900                 - Add stub functions for getting device configuration
19901
19902 2004-09-07  Dan Williams <dcbw@redhat.com>
19903
19904         * src/backends/NetworkManagerRedhat.c
19905           src/backends/NetworkManagerSlackware.c
19906                 - Use full path to /sbin/ip everywhere
19907
19908 2004-09-07  Dan Williams <dcbw@redhat.com>
19909
19910         Patch from: Narayan Newton <narayan_newton@yahoo.com>
19911
19912         * configure.in
19913           initscript/Makefile.am
19914           initscript/Slackware/Makfile.am
19915           initscript/Slackware/rc.networkmanager
19916           src/Makefile.am
19917           src/backends/NetworkManagerSlackware.c
19918                 - Add Slackware support
19919
19920 2004-09-07  Dan Williams <dcbw@redhat.com>
19921
19922         Patches below from:
19923                 <j@bootlab.org>
19924                 Mark Roach <mrroach@okmaybe.com>
19925                 Thom May <thom@debian.org>
19926
19927         * configure.in
19928           initscript/Debian/NetworkManager
19929           initscript/Debian/Makefile.am
19930                 - Initscript for Debian
19931
19932         * src/backends/NetworkManagerDebian.c
19933                 - Add missing system init function to allow compilation
19934                         on Debian
19935
19936 2004-09-03  Raphael Higino <raphaelh@cvs.gnome.org>
19937
19938         * configure.in: Added 'pt_BR' to ALL_LINGUAS.
19939
19940 2004-09-03  Akagic Amila <bono@linux.org.ba>
19941
19942         * configure.in: Added 'bs' to ALL_LINGUAS.
19943
19944 2004-09-02  Colin Walters  <walters@verbum.org>
19945
19946         * src/backends/NetworkManagerRedHat.c (nm_system_device_run_dhcp)
19947         (nm_system_device_stop_dhcp, nm_system_device_flush_routes): Use
19948         g_strdup_printf instead of arbitrarily sized buffers.
19949
19950 2004-09-01  Colin Walters  <walters@verbum.org>
19951
19952         * NetworkManager.pc.in: New file.
19953
19954         * Makefile.am, .cvsignore, configure.in: Add NetworkManager.pc.
19955
19956 2004-09-01  Amanpreet Singh Alam  <aalam@redhat.com>
19957         
19958         * configure.in: Punjabi(pa) is added to po/.
19959
19960 2004-08-31  Dan Williams <dcbw@redhat.com>
19961
19962         * Remove 'debug' extern global from all files since we now
19963                 use syslog()
19964
19965         * src/NetworkManager.[ch]
19966                 - Break out routine that get the net.interface property from HAL,
19967                         removing that logic from nm_create_device_and_add_to_list()
19968                 - (nm_create_device_and_add_to_list): make this a bit more general so
19969                         it doesn't do the talking to HAL.  Also add arguments to facilitate
19970                         the create of test devices.
19971                 - (nm_data_mark_state_changed): rename from nm_data_set_state_modified()
19972                 - (nm_data_new, main, nm_print_usage): add new argument "--enable-test-devices"
19973                         which makes NetworkManager listen for dbus commands to create test
19974                         devices, which have no backing hardware.  Use when you're on a plane
19975                         for example, and/or forgot your wireless card at home.  Test devices
19976                         _cannot_ be created unless NM is started with --enable-test-devices.
19977
19978         * src/NetworkManagerDbus.[ch]
19979                 - New "getLinkActive" method for devices
19980                 - New "setLinkActive" method for devices (only works on test devices)
19981                 - New "createTestDevice" method on NetworkManager object to create a test
19982                         device of a specified type (ie wired, wireless).  UDI is created from
19983                         scratch, as is the interface name.  Only works when NM is started with
19984                         --enable-test-devices switch.
19985                 - New "removeTestDevice" method on NetworkManager object which removes a
19986                         test device.  Only works when NM is started with --enable-test-devices
19987
19988         * src/NetworkManagerDevice.[ch]
19989                 - Logic to facilitate test devices.  Add variables to NMDevice struct to indicate
19990                         whether a device is a test device or not, and what its link status is.
19991                 - Deal with test devices in most functions.  For those that work directly on hardware
19992                         special-case test devices.
19993                 - (nm_device_new): don't create a test device if test devices weren't enabled on the
19994                         command-line.
19995                 - (nm_device_update_link_active): split out logic for wired and wireless device link
19996                         checking to separate functions to facilitate test device link checking.
19997                 - (nm_device_set_enc_key): Since some drivers for wireless cards are daft and
19998                         don't make a distinction between System Authentication and Encryption
19999                         (namely Cisco aironet), we use Open System auth when setting a WEP key
20000                         on the card.  We don't deal with Shared Key auth yet.
20001                 - (nm_device_activation_worker): split the activation cancel check logic out into
20002                         a separate routine nm_device_activation_cancel_if_needed()
20003                 - (nm_device_activation_signal_cancel): rename from nm_device_activation_cancel()
20004                 - (nm_device_fake_ap_list): Test wireless devices obviously cannot scan, so create
20005                         a list of fake access points that they can "see"
20006                 - (nm_device_is_test_device): return whether or not a device is a test device
20007
20008         * src/NetworkManagerPolicy.c
20009                 - (nm_policy_get_best_device): attempt to deal with wireless network selection,
20010                         previously if you "locked"/forced NM to use a wireless device but then
20011                         selected a wireless network for NM to use, it would switch to a wired device.
20012                         So, if the active device is wireless and it has a "forced" best AP, use it
20013                         if the "forced" best AP is still valid
20014                 - (nm_state_modification_monitor): deal with NULL best devices, for example
20015                         there were no usable network devices, or the last one was removed
20016
20017         * src/backends/NetworkManager*.c
20018                 - Deal with test devices, mostly just return success for operations like getting
20019                         a DHCP address
20020
20021         * test/nmtestdevices.c
20022                 - Test tool to create/remove/link-switch test devices
20023
20024 2004-08-30  Bryan Clark  <clarkbw@cvs.gnome.org>
20025
20026         * examples/python/NetworkManager.py: 
20027         added convience functions has_wired_device and has_wireless_device
20028
20029         * examples/python/systray/network_tray.py: 
20030         cleaned up a bunch of cruft, added support for listing wireless
20031         networks just like the real applet.  This is probably all I'm
20032         going to work on this applet from now on.
20033         TODO: add support for actually changing networks and devices
20034
20035         * examples/python/NetworkManager.py (NetworkManager.get_device): 
20036         changed "nm.networks" into a dict from a list so I can store all
20037         the cool information about networks in there
20038
20039         * examples/python/systray/network_tray.py: 
20040         Added nice message when you try to run without running make first
20041
20042         * examples/python/NetworkManager.py: 
20043         Bug fixes to the code so we get all the device information
20044         that we need in get_device()
20045         
20046         * examples/python/NMTester.py: 
20047         Fixed _print_device_list to print_device_list
20048
20049 2004-08-29  Seth Nickell  <seth@gnome.org>
20050
20051         * configure.in:
20052
20053         Actually properly setup the Debian backend in configure.
20054         
20055 2004-08-29  Colin Walters  <walters@verbum.org>
20056
20057         * test/nminfotest.c: Include string.h and stdlib.h.
20058         (get_network_string_property, get_networks_of_type): Return NULL.
20059
20060         * test/nmclienttest.c (get_device_name, get_active_device): Return
20061         NULL.
20062
20063         * src/backends/NetworkManagerRedHat.c (nm_system_device_stop_dhcp): Just
20064         use strlen, fgets always NULL-terminates the string.
20065
20066         * src/NetworkManagerDbus.c (nm_dbus_nmi_filter,
20067         dbus_message_get_member): Remove /* in comment.
20068
20069         * src/NetworkManagerUtils.c (LOCKING_DEBUG): Ditto.
20070
20071         * src/NetworkManager.c (quit): Unused, delete.
20072         (nm_data_free): Cast arg to GFunc.
20073
20074         * panel-applet/NMWirelessAppletDbus.c: Need to include
20075         string.h, and dbus-glib-lowlevel.h (the latter is needed
20076         for dbus_connection_setup_with_g_main at present).
20077         (nmwa_dbus_update_wireless_network_list): Parenthesize
20078         assignment in conditional.
20079         (nmwa_dbus_worker): Return NULL.
20080
20081         * panel-applet/NMWirelessApplet.c (nmwa_redraw)
20082         (nmwa_get_menu_pos, nmwa_toplevel_menu_activate)
20083         (nmwa_menu_add_text_item, nmwa_setup_widgets): Kill unused variables.
20084         (nmwa_populate_menu): Return NULL on failure, instead of just
20085         return;
20086
20087         * initscript/NMLaunchHelper.c (g_timeout_add): Cast arg to GSourceFunc.
20088
20089         * info-daemon/NetworkManagerInfoNetworksDialog.c (nmi_networks_dialog_init): Kill unused
20090         variables.
20091
20092         * info-daemon/NetworkManagerInfo.c (nmi_print_usage): Unused,
20093         delete.
20094         
20095 2004-08-29  Colin Walters  <walters@verbum.org>
20096
20097         * src/NetworkManagerDbus.c (nm_dbus_get_network_timestamp): Return
20098         a GTimeVal instead of time_t.  This is easier to work with,
20099         since time_t may be a long or double, we don't know.
20100
20101         * src/NetworkManagerDbus.h: Update prototype.
20102         
20103         * src/NetworkManagerAP.c (struct NMAccessPoint): Store a GTimeVal
20104         instead of time_t.
20105         (nm_ap_get_timestamp): Update to return GTimeVal.
20106         (nm_ap_set_timestamp): Update to take GTimeVal.
20107         
20108         * src/NetworkManagerDevice.c (nm_device_update_best_ap): Update
20109         to handle GTimeVal.
20110
20111         * src/NetworkManagerAPList.c (nm_ap_list_update_network): Handle
20112         GTimeVal change.
20113         (nm_ap_list_print_members): Fix warnings in printf format.
20114
20115 2004-08-29  Colin Walters  <walters@verbum.org>
20116         
20117         * panel-applet/NMWirelessApplet.c: Include config.h.
20118
20119 2004-08-29  Colin Walters  <walters@verbum.org>
20120
20121         * configure.in: Generate config.h.
20122
20123         * configure.in: Dump dependency on OpenSSL; we can't
20124         use it since this package is GPL:
20125         http://www.gnome.org/~markmc/openssl-and-the-gpl.html
20126         Instead, check for libgcrypt, use it if available,
20127         otherwise use included MD5 code.
20128
20129         * src/gnome-keyring-md5.h, src/gnome-keyring-md5.c:
20130         Suck in from gnome-keyring, munge a bit.
20131         
20132         * src/Makefile.am (NetworkManager_SOURCES) <!WITH_GCRYPT>: Include
20133         gnome-keyring-md5.h gnome-keyring-md5.c.
20134         (NetworkManager_LDADD) <WITH_GCRYPT>: Add dep on LIBGCRYPT_LIBS.
20135
20136         * src/NetworkManagerWireless.c (nm_md5): New function, uses
20137         libgcrypt or included gnome-keyring md5 bits.
20138         (nm_wireless_128bit_key_from_passphrase): Use nm_md5.
20139
20140 2004-08-28  Kjartan Maraas  <kmaraas@gnome.org>
20141
20142         * configure.in: Add «nb» and «no» to ALL_LINGUAS.
20143
20144 2004-08-27  Bryan Clark  <bclark@redhat.com>
20145
20146         * examples/python/systray/Makefile: 
20147
20148         Updated the clean section
20149         
20150         * examples/python/systray/trayiconmodule.c: 
20151         * examples/python/systray/trayicon.override: 
20152         * examples/python/systray/network_tray.py: 
20153         * examples/python/systray/eggtrayicon.h: 
20154         * examples/python/systray/eggtrayicon.c: 
20155         * examples/python/systray/Makefile: 
20156         * examples/python/README: 
20157         * examples/python/NetworkManager.py: 
20158         * examples/python/NMTester.py: 
20159
20160         Initial commit of these python example files
20161
20162 Fri Aug 28 2004 Dan Williams <dcbw@redhat.com>
20163
20164         * panel-applet/NMWirelessApplet.c
20165                 - Make current device bold
20166                 - Show more user-friendly device name if we got one from hal
20167
20168         * panel-applet/NMWirelessAppletDbus.c
20169                 - Grab "info.product" key from hal for network devices
20170                 - Cache the current active device
20171
20172 2004-08-27  Adam Weinberger  <adamw@gnome.org>
20173
20174         * configure.in: Added en_CA to ALL_LINGUAS.
20175
20176 2004-08-27  Christian Rose  <menthos@menthos.com>
20177
20178         * configure.in: Added "sv" to ALL_LINGUAS.
20179
20180 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20181
20182         * Tag NetworkManager-0.2
20183
20184 Thu Aug 26 17:23:16 2004  Jonathan Blandford  <jrb@redhat.com>
20185
20186         * initscripts/Makefile.am
20187         * configure.in: Make pass distcheck
20188
20189         * po/ChangeLog: added
20190
20191 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20192
20193         * panel-applet/NMWirelessApplet.c
20194                 - Remove debugging code
20195                 - Enable device switching from menus
20196
20197         * panel-applet/NMWirelessAppletDbus.[ch]
20198                 - Method for asking NM to switch devices
20199
20200         * src/NetworkManagerDevice.c
20201                 - Set dev->activating earlier, avoids race between
20202                         the dbus signal of "DeviceActivating" and setting
20203                         dev->activating (which is what NM's "status" method call
20204                         looks at)
20205
20206 Thu Aug 26 2004 Dan Williams <dcbw@redhat.com>
20207
20208         * panel-applet/NMWirelessApplet.[ch]
20209                 - Rework menu code to add devices to menu, and to show
20210                         signal strength for each access point.  Code cleanups
20211                         too.
20212
20213         * panel-applet/NMWirelessAppletDbus.c
20214                 - Grab network devices from NetworkManager too
20215                 - Grab quality information from NM for wireless networks
20216
20217         * src/NetworkManagerDbus.[ch]
20218                 - Add dbus methods for getting the HAL UDI from a device and
20219                         for getting its base quality, if its wireless
20220                 - Consolidate some functions (wireless network notifications,
20221                         device notifications)
20222                 - Add method for requesting NM to use a particular device
20223
20224         * src/NetworkManager.c
20225                 - Change for function consolidations from NetworkManagerDbus.c
20226                 - Implement active device locking and user-requested devices
20227                         (ie, tell NM to use a particular device instead of the one
20228                         it autochose)
20229
20230         * src/NetworkManagerDevice.c
20231                 - Add method for getting the base quality of a device, if its
20232                         wireless
20233                 - Grab device base quailty info from iwlib during scans
20234
20235         * src/NetworkManagerPolicy.c
20236                 - Use a user-requested device rather than the auto-chosen device
20237                         if we are told to
20238
20239 Thu Aug 26 15:12:36 2004  Jonathan Blandford  <jrb@redhat.com>
20240
20241         * Makefile.am: add po as a supdir
20242
20243         * autogen.sh: use gnome-autogen.sh
20244
20245         * initscript/Gentoo/.cvsignore:
20246         * initscript/RedHat/.cvsignore: Shut up cvs
20247
20248         * panel-applet/Makefile.am: Define GNOMELOCALEDIR for bonobo.
20249
20250         * panel-applet/NMWirelessApplet.c: (nmwa_populate_menu),
20251         (nmwa_fill): Use gettext.
20252
20253         * configure.in: add gettext support
20254         * po/.cvsignore:
20255         * po/NetworkManager.pot:
20256         * po/POTFILES.in:
20257
20258 2004-08-26  Seth Nickell  <seth@gnome.org>
20259
20260         * panel-applet/NMWirelessApplet.c: (nmwa_destroy),
20261         (nmwa_menu_item_activate), (nmwa_toplevel_menu_activate),
20262         (nmwa_add_menu_item), (nmwa_menu_item_data_free),
20263         (nmwa_dispose_menu_items), (nmwa_populate_menu),
20264         (nmwa_setup_widgets), (do_not_eat_button_press), (nmwa_new):
20265         * panel-applet/NMWirelessApplet.h:
20266
20267         Use a menu bar instead of a button for the main clickable
20268         thingy.
20269         
20270 2004-08-25  Dan Williams <dcbw@redhat.com>
20271
20272         * src/NetworkManagerDevice.c
20273                 - (nm_device_set_enc_key): always set device to "open" mode instead of
20274                         turning encryption off, because the Cisco driver doesn't associate
20275                         with WEP-enabled access points unless we are in "open"
20276
20277 2004-08-25  Dan Williams <dcbw@redhat.com>
20278
20279         * src/NetworkManagerWireless.c
20280                 - Don't try to defererence blank passphrases
20281
20282 2004-08-25  Dan Williams <dcbw@redhat.com>
20283
20284         * panel-applet/NMWirelessApplet.c
20285                 - Rebuild the menu whenever a user clicks
20286
20287 2004-08-25  Dan Williams <dcbw@redhat.com>
20288
20289         * panel-applet/NMWirelessApplet.c
20290                 - (nmwa_udpate_state): Set panel icon to "wired" (for lack of better ones)
20291                         when NM isn't around or when its not connected
20292
20293         * src/NetworkManagerDevice.c
20294                 - (nm_device_activation_worker): Make sure to reset dev->activating if we get
20295                         canceled.
20296
20297 2004-08-25  Dan Williams <dcbw@redhat.com>
20298
20299         * panel-applet/NMWirelessAppletDbus.c
20300                 - (nmwa_dbus_get_bool, nmwa_dbus_get_network_encrypted): correct method name
20301                         for getting encryption, and don't stop on "val" once we've gotten it
20302                         from NetworkManager.  Short form:  encryption should now show up.
20303
20304 2004-08-25  Dan Williams <dcbw@redhat.com>
20305
20306         * panel-applet/NMWirelessApplet.c
20307                 - Set ESSID on a gconf trusted network too when force-setting the wireless
20308                         network to associate with
20309
20310 2004-08-25  Dan Williams <dcbw@redhat.com>
20311
20312         * panel-applet/*
20313                 - Rework the panel applet to do all DBUS communication in a separate
20314                         thread
20315
20316 2004-08-25  Dan Williams <dcbw@redhat.com>
20317
20318         * info-daemon/NetworkManagerInfo.[ch]
20319                 - Remove "get_next_priority" function
20320
20321         * info-daemon/NetworkManagerInfoDbus.[ch]
20322                 - Convert "priority" functions to "timestamp"
20323
20324 2004-08-25  Dan Williams <dcbw@redhat.com>
20325
20326         * src/NetworkManagerAP.[ch]
20327                 - Add a "enc_method_good" member and accessors to an Access Point
20328                         to signal when we've found the correct encryption method
20329                         for an access point
20330                 - Add a "timestamp" member and accessors, remove "priority" member
20331                         and accessors (use timestamps instead)
20332                 - Rename "wep_key"->"enc_key"
20333                 - (nm_ap_get_enc_key_hashed): new, return the correct mangled key
20334                         for a specified encryption method using the access points
20335                         source encryption key/passphrase
20336
20337         * src/NetworkManagerAPList.c
20338                 - When updating a network with dbus, grab timestamp now instead of
20339                         priority
20340
20341         * src/NetworkManagerDBus.[ch]
20342                 - Add signal for "DeviceActivating"
20343                 - Switch priority->timestamp
20344
20345         * src/NetworkManagerDevice.c
20346                 - Change references of "wep_key" -> "enc_key" or "key"
20347                 - Signal DeviceActivating when starting activation
20348                 - When activating a wireless device, if the access point we are connecting
20349                         to is encrypted, and we have a source key, try to generate a mangled
20350                         key and use that (ie, generate real WEP key from a passphrase)
20351                 - Rework device activation to fallback to other encryption methods if
20352                         a previous one didn't work (ie, try mangling a key as a 104-bit passphrase
20353                         first, then if that doesn't work fall back to direct hex key).
20354                 - (nm_device_update_best_ap): fix a deadlock, and use timestamps instead of
20355                         priority.  We now prefer the latest access point used, rather than using
20356                         a priority scheme
20357                 - (nm_device_do_normal_scan): make the encryption method "unknown" on access
20358                         points we've just discovered, and merge in correct info from the global
20359                         access point lists
20360
20361 2004-08-25  Seth Nickell  <seth@gnome.org>
20362
20363         Patch from Matthew Garrett <mjg59@srcf.ucam.org> for adding
20364         Debian support.
20365         
20366         * src/Makefile.am:
20367         * src/backends/NetworkManagerDebian.c: (nm_system_device_run_dhcp),
20368         (nm_system_device_stop_dhcp), (nm_system_device_flush_routes),
20369         (nm_system_device_flush_addresses), (nm_system_enable_loopback),
20370         (nm_system_delete_default_route),
20371         (nm_system_kill_all_dhcp_daemons), (nm_system_update_dns),
20372         (nm_system_load_device_modules):
20373
20374 2004-08-24  Dan Willemsen <dan@willemsen.us>
20375
20376         * src/NetworkManager.c
20377           src/backends/NetworkManagerGentoo.c
20378           src/backends/NetworkManagerRedHat.c
20379           src/backends/NetworkManagerSystem.h
20380                 - Implement preliminary Gentoo support, adding a
20381                         nm_system_init function to the backend specification
20382
20383         * configure.in
20384                 - Distribution auto-detection, lowercase any user-fed
20385                         distribution names
20386
20387         * initscript/.cvsignore
20388           initscript/Makefile.am
20389           initscript/RedHat/Makefile.am
20390           initscript/RedHat/NetworkManager
20391           initscript/Gentoo/Makefile.am
20392           initscript/Gentoo/NetworkManager
20393                 - Refactored initscript code separately for each
20394                         distribution
20395
20396 2004-08-23  Dan Williams <dcbw@redhat.com>
20397
20398         * configure.in
20399           src/Makefile.am
20400           src/NetworkManagerDevice.c
20401           src/NetworkManager.c
20402           src/NetworkManagerUtils.[ch]
20403           src/backends/NetworkManagerSystem.h
20404           src/backends/NetworkManagerRedHat.c
20405           src/backends/NetworkManagerGentoo.c
20406                 - Refactor system-specific code into separate backends for
20407                         each distribution
20408
20409 2004-08-23  Dan Willemsen <dan@willemsen.us>
20410
20411         * dispatcher-daemon/NetworkManagerDispatcher.c
20412           info-daemon/NetworkManagerInfo.[ch]
20413           info-daemon/NetworkManagerInfoDbus.c
20414           info-daemon/NetworkManagerInfoPassphraseDialog.c
20415           src/NetworkManager.c
20416           src/NetworkManagerAP.c
20417           src/NetworkManagerAPList.c
20418           src/NetworkManagerDbus.c
20419           src/NetworkManagerDevice.c
20420           src/NetworkManagerPolicy.c
20421           src/NetworkManagerUtils.[ch]
20422           src/NetworkManagerWireless.c
20423                 - Used syslog functions for logging instead of NM_DEBUG_DISPLAY & fprintf
20424
20425         * src/NetworkManager.c
20426                 - Fixed usage wording for --no-daemon
20427
20428 2004-08-23  Dan Williams <dcbw@redhat.com>
20429
20430         * panel-applet/NMWirelessApplet.c
20431                 - Update our state every second to get more responsive panel icon
20432                 - (nmwa_update_state): remove bogus applet->pix_state = PIX_WIRED that
20433                         was causing our marching ants status blips to never move when
20434                         looking for a wireless network
20435
20436         * src/NetworkManagerDevice.c
20437                 - (nm_device_activation_begin): return if activation has already begun
20438                 - (nm_device_do_normal_scan): merge WEP key and priority from the
20439                         trusted/preferred network into the device's access point when the
20440                         scan list is processed
20441
20442 2004-08-23  Dan Williams <dcbw@redhat.com>
20443
20444         * initscript/NetworkManager
20445                 - Use NMLaunchHelper rather than sleeping
20446
20447         * initscript/NMLaunchHelper.c
20448           Makefile.am
20449                 - Add helper program that exits only when NM activates a device,
20450                         or 10 seconds have passed, whichever happens first.  This
20451                         stops the boot processes until we have a network connection,
20452                         which NM can't do because it daemonizes and brings the connection
20453                         up in the background.  Allows stuff like NFS to not die.
20454
20455 2004-08-20  Dan Williams <dcbw@redhat.com>
20456
20457         * info-daemon/NetworkManagerInfoPassphraseDialog.c
20458                 - (nmi_passphrase_dialog_ok_clicked): when updating the wep key
20459                         for a network, set the essid as well since it may not exist yet
20460                 - (nmi_passphrase_dialog_init): don't star out the passphrase field,
20461                         since WEP keys/passphrases are long and prone to entry-error
20462
20463         * panel-applet/Makefile.am
20464           panel-applet/wired.png
20465                 - Add (pulled from system-config-network temporarily)
20466
20467         * panel-applet/NMWirelessApplet.[ch]
20468                 - Show wired picture when a wired connection is used
20469                 - Rename wireless icon enums, adding WIRELESS
20470
20471         * src/NetworkManagerDevice.c
20472                 - (nm_device_activate_wireless): unset encryption before bringing
20473                         down the card and setting the essid
20474                 - (nm_device_activatin_worker): request a key from the user if the
20475                         AP we are connecting to is encrypted but we don't have a key
20476                         for it yet
20477                 - (nm_device_set_user_key_for_network): fix missing '== 0' for a
20478                         strcmp() that prevented a user-entered key from actually getting
20479                         used
20480
20481 2004-08-16  Dan Williams <dcbw@redhat.com>
20482
20483         * initscript/NetworkManager
20484                 - Check for /sbin/ip
20485                 - Do sysctl magic that network service does
20486                 - sleep 4s after start to allow network time to come up [hack]
20487
20488         * src/Makefile.am
20489           src/NMLoadModules
20490                 - Load all network device kernel modules (hal doesn't know devices
20491                         are ethernet until the module is loaded, and therefore we don't know)
20492
20493         * src/NetworkManager.c
20494                 - (main): daemonize later, launch NMLoadModules to alert HAL of our
20495                         network devices, and bring up the loopback device explicitly
20496
20497         * src/NetworkManagerUtils.[ch]
20498                 - (nm_enable_loopback): new function
20499
20500 2004-08-13  Dan Williams <dcbw@redhat.com>
20501
20502         * configure.in
20503           panel-applet/Makefile.am
20504                 - Fix up cleanfiles and server_DATA/server_in_files
20505
20506         * README
20507                 - Update with some comments on theory of operation
20508
20509         * CONTRIBUTING
20510           Makefile.am
20511                 - Add CONTRIBUTING
20512
20513 2004-08-12  Dan Williams <dcbw@redhat.com>
20514
20515         * info-daemon/passphrase.glade
20516                 - Set window title to " "
20517
20518         * panel-applet/Makefile.am
20519           panel-applet/keyring.png
20520                 - Deliver to correct place
20521
20522         * panel-applet/NMWirelessApplet.[ch]
20523                 - Add comments
20524                 - Remove applet->have_active_device as its no longer used
20525                 - (nmwa_load_theme): load keyring.png too
20526                 - (error_dialog): remove
20527                 - (show_warning_dialog): subsume functionality of error dialog too
20528                 - (nmwa_destroy, nmwa_new): create and dispose of an application-wide GConfClient
20529                 - (nmwa_handle_network_choice): add to deal with user clicking on an item from
20530                         the networks menu
20531                 - (nmwa_menu_item_activated): GtkMenuItem "activate" signal handler
20532                 - (nmwa_button_clicked, nmwa_setup_widgets): create and populate the menu on startup
20533                         and when we get broadcasts of changed wireless access points only, not when the
20534                         user clicks on the button to display the menu (too long of a wait)
20535                 - (nmwa_add_menu_item): Make active network bold, and place a keyring icon beside
20536                         networks that are encrypted
20537                 - (nmwa_dispose_menu, nmwa_menu_item_data_free): dispose of the data we place on each
20538                         menu item with g_object_set_data()
20539
20540         * panel-applet/NMWirelessAppletDbus.[ch]
20541                 - (nmwa_dbus_get_bool): add method to return boolean value from dbus message
20542                 - (nmwa_dbus_get_active_network): add (nmwa_dbus_get_string() wrapper to get active network)
20543                 - (nmwa_dbus_add_networks_to_menu): clean up, only show one instance of each ESSID in the menu
20544                 - (nmwa_dbus_set_network): force NetworkManager to use a particular network for wireless cards
20545                 - (nmwa_dbus_init, nmwa_dbus_filter): Trap network appear/disappear and device
20546                         activation/deactivation signals and rebuild the menu when they happen
20547
20548         * src/NetworkManager.c
20549                 - (main): use new nm_spawn_process() rather than system()
20550
20551         * src/NetworkManagerDbus.c
20552                 - (nm_dbus_devices_handle_request): don't compare AP structure addresses directly, but essids
20553                         instead.  Since we can now force best_aps to stick around, the AP structure to which
20554                         dev->options.wireless.best_ap points to won't necessarily be in the device's device list
20555                         if a scan has happened since the best_ap was frozen.  Also add "setNetwork" method
20556                         to freeze the best_ap.
20557
20558         * src/NetworkManagerDevice.[ch]
20559                 - (nm_device_activation_worker): Use new nm_spawn_process() call rather than system()
20560                 - (nm_device_*_best_ap): add freeze/unfreeze/get_frozen functions, and don't really update
20561                         the best_ap in nm_device_update_best_ap() if the best_ap is frozen AND in the device's
20562                         ap list
20563
20564         * src/NetworkManagerUtils.[ch]
20565                 - (nm_spawn_process): add replacement for system() usage
20566
20567 2004-08-11  Dan Williams <dcbw@redhat.com>
20568
20569         * panel-applet/NMWirelessApplet.[ch]
20570                 - Fix up copyright and credits to include Bastien and Eskil,
20571                         who created the gnome-applets wireless applet, from whose
20572                         skeleton this one was created
20573                 - Rework nmwa_update_state()/nmwa_draw() so that state and which
20574                         pixmap to draw is computed during nmwa_update_state()
20575                 - Applet now shows itself all the time due to panel packing issues
20576                         which caused the applet to previously never come back after hiding.
20577                         When a wired device is the active device, the applet shows "not connected"
20578
20579         * panel-applet/NMWirelessAppletDbus.[ch]
20580                 - Clean up error messages and show what function they are from
20581                 - nmwa_dbus_get_active_wireless_device()->nmwa_dbus_get_active_device()
20582                 - Add new device type getters, and a status getter
20583
20584         * src/NetworkManagerDbus.c
20585                 - (nm_dbus_devices_handle_request): Don't return an active network unless that
20586                         network is actually in the device's ap list
20587                 - (nm_dbus_nm_message_handler): Fix silly mistake returning status
20588
20589         * src/NetworkManagerDevice.c
20590                 - (nm_device_update_best_ap): If the best AP is NULL, clear out the ESSID of the
20591                         card
20592
20593         * test/nmclienttest.c
20594                 - Report status of NetworkManager too
20595
20596 2004-08-11  Dan Williams <dcbw@redhat.com>
20597
20598         * info-daemon/NetworkManagerInfo.c:
20599                 - (main): clean up Seth's code style
20600
20601         * info-daemon/NetworkManagerInfoDbus.c:
20602                 - Use the more aptly-named path/service/interface constants from NetworkManager
20603                 - Don't return empty strings ("") as object paths ever, instead return errors
20604
20605         * panel-applet/NMWirelessApplet.c:
20606                 - Clean up Seth's code style
20607
20608         * src/NetworkManager.[ch]
20609                 - (nm_remove_device_from_list): remove anything having to do with pending_device
20610                 - (main, nm_print_usage): change --daemon=[yes|no] -> --no-daemon
20611
20612         * src/NetworkManagerAPList.[ch]
20613                 - Move Iter struct right above the iter functions to preserve opacity
20614                 - (nm_ap_list_remove_ap): implement
20615                 - (nm_ap_list_update_network): deal with errors returned from nm_dbus_get_network_priority(),
20616                         remove AP if NetworkManagerInfo doesn't know anything about it
20617                 - (nm_ap_list_diff): user NMAPList iterators
20618                 - (nm_ap_list_print_members): implement debugging function
20619
20620         * src/NetworkManagerDbus.[ch]
20621                 - (nm_dbus_nm_get_active_device): remove anything to do with pending_device
20622                 - (nm_dbus_get_user_key_for_network): remove DBusPendingCall stuff (unused),
20623                         and move the actual key setting stuff into NetworkManagerDevice.c
20624                 - (nm_dbus_get_network_priority): return -1 now on errors
20625                 - (nm_dbus_nmi_filter): fix strcmp() error that caused PreferredNetworkUpdate signals to
20626                         get lost, and force the active device to update its "best" ap when AP lists change
20627                 - (nm_dbus_nm_message_handler): Update conditions for returning "connecting" for a "status"
20628                         method call due to pending_device member removal
20629
20630         * src/NetworkManagerDevice.[ch]
20631                 - Move NMDevice structure to the top
20632                 - Add a wireless scan mutex and a best_ap mutex to the Wireless Options structure
20633                 - Remove Pending Action stuff from everywhere
20634                 - (nm_device_activation_*): We now "begin" activation and start a thread to do the
20635                         activation for us.  This thread blocks until all conditions for activation have
20636                         been met (ie for wireless devices, we need a valid WEP key and a "best" ap), and
20637                         then setup up the interface and runs dhclient.  We have to do this because there
20638                         is no guaruntee how long dhclient takes, and while we are blocking on it, we cannot
20639                         run our main loop and respond to dbus method calls or HAL device removals/inserts
20640                 - (nm_device_set_user_key_for_network): Move logic here from NetworkManagerDbus.c so we
20641                         can tell nm_device_activation_worker() that we've got a key
20642                 - (nm_device_*_best_ap): lock access to best_ap member of Wireless Options structure
20643                 - (nm_device_get_path_for_ap): dumb it down so the list doesn't lock against itself when
20644                         diffing (AP appear/disappear signal functions make sure the AP is actually in the device's list)
20645                 - (nm_device_update_best_ap): move logic from nm_wireless_is_ap_better() here
20646
20647         * src/NetworkManagerPolicy.c
20648                 - Remove anything to do with pending_device
20649                 - Adjust device activation to deal with activation-in-worker-thread
20650
20651         * src/NetworkManagerUtils.c
20652                 - Clean up locking debugging a bit
20653
20654         * src/NetworkManagerWireless.[ch]
20655                 - (nm_wireless_is_ap_better): remove, stick logic in nm_device_update_best_ap().  This function
20656                         was badly named and is better as a device function
20657
20658         * panel-applet/.cvsignore: add
20659
20660 2004-08-09  Seth Nickell  <seth@gnome.org>
20661
20662         * panel-applet/NMWirelessApplet.c: (nmwa_timeout_handler),
20663         (nmwa_button_clicked), (nmwa_populate_menu), (nmwa_setup_widgets),
20664         (nmwa_new):
20665         * src/NetworkManagerDbus.c: (nm_dbus_nmi_filter):
20666
20667         Don't load the menus until clicked on (also removes a call outside
20668         normal code paths at first load).
20669
20670         Hide applet when NM is not present.
20671         
20672         Improve printf debugging stuff.
20673         
20674 2004-08-09  Dan Williams <dcbw@redhat.com>
20675
20676         * dispatcher-daemon/NetworkManagerDispatcher.c:
20677                 - Covert uses of dbus_message_iter_* over to dbus_message_get_args
20678                 - Use constants for NetworkManager interface, service, and path
20679
20680 2004-08-09  Dan Williams <dcbw@redhat.com>
20681
20682         * src/NetworkManagerDbus.c:
20683                 - (nm_dbus_nm_get_active_device, nm_dbus_nm_get_devices): Never return an empty object path,
20684                         instead return an error message
20685                 - (nm_dbus_devices_handle_request): Return error when getActiveNetwork/getNetworks is called
20686                         on a wired device.  Also never return an empty object path, instead return an error message
20687
20688 2004-08-06  Seth Nickell  <seth@gnome.org>
20689
20690         * panel-applet/NMWirelessApplet.c: (nmwa_new):
20691
20692         Check the error code when getting a connection.
20693         
20694         * panel-applet/NMWirelessAppletDbus.c: (nmwa_dbus_init):
20695
20696         Check if the NM service exists when initializing (rather than
20697         assuming it does not).
20698         
20699         * src/NetworkManagerDbus.c: (nm_dbus_init):
20700
20701         Don't acquire the well-known service name until we have
20702         registered object/path handlers and can actually receive
20703         calls.
20704         
20705 2004-08-06  Dan Williams <dcbw@redhat.com>
20706
20707         * panel-applet/*
20708                 - Add panel applet
20709
20710         * src/NetworkManagerPolicy.c
20711           src/NetworkManager.c
20712                 - Get access point lists from NetworkManagerInfo on-demand,
20713                         and look for ServiceCreate/ServiceDeleted signals to see when
20714                         we should query NMI for lists
20715         * src/NetworkManagerAPList.c
20716                 - Make sure to init the list's mutex
20717                 - Convert traversals of the list over to the list iter functions
20718
20719         * src/NetworkManagerDbus.[ch]
20720                 - Use more aptly-named path/service/interface constants
20721                 - Treat both active and pending devices the same for "getActiveDevice"
20722                 - Add a "status" method returning "connected", "connecting", or "disconnected"
20723
20724         * src/NetworkManagerDevice.c
20725                 - Honor "ignored" network list when picking best ap to use
20726
20727 2004-08-06  Seth Nickell  <seth@gnome.org>
20728
20729         * aclocal.m4:
20730
20731         Autogenerated, remove from CVS.
20732         
20733         * autogen.sh:
20734
20735         Don't hardcode automake version.
20736         
20737         * configure.in:
20738         * info-daemon/Makefile.am:
20739         * info-daemon/NetworkManagerInfo.c: (main):
20740
20741         Use GnomeProgram et al. for doing session management.
20742         Use popt stuff for argument parsing rather than doing
20743         it manugally.
20744         
20745 2004-08-05  Dan Williams <dcbw@redhat.com>
20746
20747         * test/nminfotest.c
20748                 - Update to new NMI dbus API, check different network types
20749
20750         * info-daemon/NetworkManagerInfoDbus.c
20751                 - Update to new NM dbus API, ie network type sent in query message
20752
20753 2004-08-05  Dan Williams <dcbw@redhat.com>
20754
20755         * An assload of changes
20756
20757 2004-08-02  Dan Williams <dcbw@redhat.com>
20758
20759         * TODO
20760                 - new task: proper logging support
20761
20762         * info-daemon/NetworkManagerInfo.c
20763                 - Correct spelling of "canceled"
20764                 - Correct casting of objects for g_signal_connect()
20765
20766         * info-daemon/NetworkManagerInfoDbus.c
20767                 - Add defines for NetworkManager namespace and object path, and use them
20768                 - Add filter function to trap new signals from NetworkManager:
20769                         WirelessNetworkAppeared, WirelessNetworkDisappeared
20770
20771         * info-daemon/passphrase.glade
20772                 - Change name of "ok" button to "Login to Network..."
20773                 - Mark invisible
20774
20775         * src/NetworkManager.c
20776                 - Code and debug message cleanups
20777                 - Rename "nm_add_current_devices"->"nm_add_initial_devices"
20778                 - (nm_add_initial_devices) Check returned string array of devices
20779                         and don't try to add devices if array is NULL
20780                 - (main) Initialize libhal a bit later, make code a bit clearer
20781
20782         * src/NetworkManagerAP.[ch]
20783                 - New accessor and data member "matched": used to speed up AP list
20784                         diffing
20785                 - New accessor and data member "enc_method": will be used during key
20786                         fallback to cache which passphrase->key conversion actually works
20787                         so we don't have to do it every time
20788
20789         * src/NetworkManagerAPList.[ch]
20790                 - (nm_ap_list_find_ap_in_list) New: find an AP by essid in an AP list
20791                 - (nm_ap_list_diff) New: given two lists of access points, find the differences
20792                         between them, and send WirelessNetworkAppeared/Disappeared signals over
20793                         dbus in response to those differences
20794
20795         * src/NetworkManagerDbus.[ch]
20796                 - (nm_dbus_get_object_path_from_ap) New: given a device and an access point,
20797                         make an object path for that access point (NOTE that we don't yet check to
20798                         make sure that access point is actually in the device's AP list yet)
20799                 - (nm_dbus_get_ap_from_object_path) Renamed from nm_dbus_get_network_from_object_path
20800                 - (nm_dbus_signal_wireless_network_appeared, nm_dbus_signal_wireless_network_disappeared)
20801                         New: signal appearance/disappearance of wireless networks
20802                 - (nm_dbus_set_user_key_for_network) Mark the network/ap as invalid if the user cancelled
20803                         key entry
20804
20805         * src/NetworkManagerDevice.[ch]
20806                 - (nm_device_ap_list_clear) Use nm_ap_list_free rather than doing it ourselves
20807                 - (nm_device_ap_list_get) New: return the AP list (static function)
20808                 - (nm_device_do_normal_scan) Destroy old AP list later, so that we can diff the
20809                         new one resulting from the scan with the old one
20810
20811         * src/NetworkManagerWireless.c
20812                 - (nm_wireless_is_most_prefered_ap) "invalid" access points cannot be "best" access points
20813
20814         * test/nminfotest.c
20815                 - #define object paths and namespaces and use the #defines rather than static strings
20816                 - Test out user-key functionality of NetworkManagerInfo too
20817
20818 2004-07-29  Dan Williams <dcbw@redhat.com>
20819
20820         * info-daemon/NetworkManagerInfoDbus.c
20821           src/NetworkManagerDbus.c
20822                 - Update to current DBus (ie don't use decomposed paths when registering
20823                         object paths/fallbacks)
20824
20825 2004-07-27  Dan Williams <dcbw@redhat.com>
20826
20827         * Remove various Makefile.in files
20828
20829         * TODO
20830                 - Add some more items
20831
20832         * configure.in
20833                 - Add checks for OpenSSL/md5 headers and libs
20834
20835         * src/Makefile.am
20836                 - Use OpenSSL CFLAGS
20837
20838         * src/NetworkManagerAP.[ch]
20839                 - Remove 'stamp' functions, replace with 'invalid' functions
20840                         to support user cancelling WEP key entry
20841
20842         * src/NetworkManagerDbus.c
20843                 - Remove 'stamp' return functions
20844                 - Treat returned user key as a passphrase and convert to a WEP key,
20845                         but don't actually use the WEP key yet.  We use the returned user
20846                         key as a hexadecimal WEP key until we can figure out a UI for
20847                         passphrase-vs-hex key
20848
20849         * src/NetworkManagerWireless.[ch]
20850                 - Add passphrase-to-128bit-key function
20851
20852 2004-07-27  Dan Williams <dcbw@redhat.com>
20853
20854         * TODO
20855                 - Add a couple of items
20856
20857 2004-07-27  Dan Williams <dcbw@redhat.com>
20858
20859         * info-daemon/NetworkManagerInfo.c
20860                 - Update allowed network's GConf key when user enters a WEP key explicitly
20861
20862         * info-daemon/NetworkManagerDbus.c
20863                 - Fix some comments
20864                 - nmi_dbus_get_allowed_networks(): kill warning
20865
20866 2004-07-27  Dan Williams <dcbw@redhat.com>
20867
20868         * initscript/Makefile.in
20869                 - Remove
20870
20871         * initscript/Makefile.am
20872                 - Add correct rules to install the init.d initscript
20873
20874         * info-daemon/NetworkManagerInfoDbus.c
20875                 - Remove debug fprintf
20876
20877         * src/NetworkManagerDbus.[ch]
20878                 - Remove debug fprintfs
20879                 - Add macros for NetworkManagerInfo object path/namespace
20880                 - Use said macros instead of constant strings
20881
20882 2004-07-27  Dan Williams <dcbw@redhat.com>
20883
20884         * initscript/.cvsignore
20885                 - Add
20886
20887         * info-daemon/Makefile.am
20888                 - Install .glade files and keyring.png
20889                 - Fix stupid omission of a \ that caused half the flags not to be
20890                         passed to gcc
20891
20892         * info-daemon/NetworkManagerInfo.c
20893                 - gtk_signal_connect->g_signal_connect
20894                 - Alert NetworkManagerInfo to new glade file location
20895
20896 2004-07-27  Dan Williams <dcbw@redhat.com>
20897
20898         * test/nmclienttest.c
20899           test/nminfotest.c
20900                 - Add missing <dbus/dbus.h> headers
20901                 - Add GPL message at top
20902
20903 2004-07-27  Dan Williams <dcbw@redhat.com>
20904
20905         * src/NetworkManagerAPList.[ch]
20906           src/Makefile.am
20907                 - Add.  Deal with allowed network list additions, deletions, and updates
20908
20909         * dispatcher-daemon/NetworkManagerDispatcher.c
20910                 - Add missing <dbus/dbus.h> header
20911
20912         * info-daemon/NetworkManagerInfo.[ch]
20913                 - Add missing <dbus/dbus.h> header
20914                 - Implement the GConf notify callback to signal NetworkManager of an allowed
20915                         network change
20916                 - Better error checking
20917
20918         * info-daemon/NetworkManagerInfoDbus.[ch]
20919                 - Add missing <dbus/dbus.h> header
20920                 - Convert to using dbus_message_append_args/dbus_message_get_args
20921                 - Implement nmi_dbus_signal_update_allowed_network() to signal NetworkManager
20922                         that an allowed network changed.  We don't want to signal on individual
20923                         keys _inside_ an allowed network really, just want NM to query the info
20924                         daemon for updated info on all keys.
20925                 - Better error checking
20926
20927         * src/NetworkManager.[ch]
20928                 - Add missing <dbus/dbus.h> header
20929                 - Move allowed_ap_list free functions to NetworkManagerAPList.[ch]
20930                 - Zero out NMData structure on free
20931                 - No longer use a thread for allowed_ap_list updating, instead its now done
20932                         through dbus queries against NetworkManagerInfo
20933                 - Populate allowed_ap_list initially before adding existing network devices
20934                         to the device list, so wireless devices can get their "best" AP
20935
20936         * src/NetworkManagerDbus.[ch]
20937                 - Convert to using dbus_message_append_args/dbus_message_get_args
20938                 - Better error checking
20939                 - Implement Allowed Network info functions to request allowed network
20940                         info from NetworkManagerInfo
20941                 - Implement the filter function to process signals from NetworkManagerInfo
20942                         about changing allowed networks
20943
20944         * src/NetworkManagerDevice.c
20945                 - Fix file descriptor leak in nm_device_update_ip4_address()
20946
20947 2004-07-27  Dan Williams <dcbw@redhat.com>
20948
20949         * .cvsignore
20950           src/.cvsignore
20951           test/.cvsignore
20952           dispatcher-daemon/.cvsignore
20953           info-daemon/.cvsignore
20954                 - Add .cvsignore files to reduce noise when diffing
20955
20956 2004-07-24  Dan Williams <dcbw@redhat.com>
20957
20958         * src/NetworkManager.[ch]
20959           src/NetworkManagerDbus.[ch]
20960           src/NetworkManagerDevice.[ch]
20961           src/NetworkManagerPolicy.c
20962           src/NetworkManagerWireless.[ch]
20963                 - Add many more g_return_if_fail()/g_return_val_if_fail() checks
20964                 - Pass the NMData application data structure through all calls
20965                         that need it so we can get rid of nm_get_global_data()
20966                 - Change deallocation of the allowed_ap_list GSList in preparation
20967                         for not completely clearing it every time we get an update,
20968                         but instead getting incremental updates via GConf/dbus
20969
20970 2004-07-22  Dan Williams <dcbw@redhat.com>
20971
20972         * configure.in
20973                 - Add checks for GConf libs & headers & flags
20974
20975         * info-daemon/Makefile.am
20976                 - Add GConf flags & libs to compile/link stages of NetworkManagerInfo
20977
20978         * info-daemon/NetworkManagerInfo.[ch]
20979                 - Don't use gquarks for data storage, just use normal data storage
20980                 - Add gconf bits to watch /system/networking/wireless/allowed_networks
20981
20982         * info-daemon/NetworkManagerDbus.[ch]
20983                 - Add method call for getting allowed networks
20984                 - Add method calls for getting an allowed network's essid, priority, and key
20985                 - Hook the method calls up to GConf
20986                 - Split user key dialog code into separate function (nmi_dbus_get_key_for_network)
20987                 - nmi_dbus_nmi_message_handler(): make sure to unref the reply message after sending
20988                 
20989         * src/NetworkManagerDbus.[ch]
20990                 - Switch for enumeration of networks to using essid instead
20991
20992         * test/Makefile.am
20993           test/nminfotest.c
20994                 - Add test program for NetworkManagerInfo
20995
20996 2004-07-19  Dan Williams <dcbw@redhat.com>
20997
20998         * src/NetworkManagerDbus.c
20999                 - Switch from indexed device paths to names.  Less code, more efficient.
21000                         ie "/org/freedesktop/NetworkManager/0" -> "/org/freedesktop/NetworkManager/eth0"
21001
21002 2004-07-19  Dan Williams <dcbw@redhat.com>
21003
21004         * dispatcher-daemon/NetworkManagerDispatcher.c
21005                 - (nm_dbus_filter): Remove obsolete response to NeedKeyForNetwork signal
21006
21007 2004-07-19  Dan Williams <dcbw@redhat.com>
21008
21009         * Makefile.am
21010                 - Add info-daemon directory
21011
21012         * configure.in
21013                 - Check for glade libs and headers
21014                 - Add info-daemon directory
21015
21016         * src/NetworkManagerAP.c
21017                 - nm_ap_new_from_ap(): Fix bug that resulted in an APs encryption status not getting
21018                         copied over to the new AP.
21019
21020         * src/NetworkManagerDbus.c
21021           src/NetworkManagerDbus.h
21022                 - Deal with nm_device_ap_list_get_ap()->nm_device_ap_list_get_ap_by_index() change
21023                 - Remove nm_dbus_signal_need_key_for_network()
21024                 - Add disabled code for asynchronous user wep key callbacks
21025                 - Add functions for getting, setting, and cancelling user key operations
21026                 - Remove "setKeyForNetwork" device dbus method call, its on NetworkManager object instead
21027                 - Add "setKeyForNetwork" dbus method call on NetworkManager object
21028
21029         * src/NetworkManagerDevice.c
21030           src/NetworkManagerDevice.h
21031                 - nm_device_update_link_active(): revert changes for wireless link detection, the WEP-key-is-wrong
21032                         logic is in device activation now
21033                 - nm_device_activate(): for wireless devices, if we can't associate with access point (perhaps
21034                         key is wrong) trigger get-user-key pending action
21035                 - Implement get-user-key pending action stuff, tie to dbus messages
21036                 - Rename nm_device_ap_list_get_ap() -> nm_device_ap_list_get_ap_by_index()
21037                 - Add nm_device_ap_list_get_ap_by_essid()
21038                 - Instead of copying "best" access points, ref them instead so that the key we set
21039                         sticks around
21040
21041         * src/NetworkManagerPolicy.c
21042                 - Deal with wrong WEP key, but right access point (and if so, return link_active = TRUE)
21043                 - Don't cancel pending actions on a device if its the same device as last iteration
21044                 - Only promote pending_device->active_device if activation was successfull
21045
21046         * src/Makefile.am
21047                 - Rename nmclienttest->nmtest
21048
21049         * info-daemon/Makefile.am
21050           info-daemon/NetworkManagerInfo.c
21051           info-daemon/NetworkManagerInfo.h
21052           info-daemon/NetworkManagerInfoDbus.c
21053           info-daemon/NetworkManagerInfoDbus.h
21054           info-daemon/passphrase.glade
21055           info-daemon/NetworkManagerInfo.conf
21056           info-daemon/keyring.png
21057                 - Import sources for info-daemon, which pops up dialog for passphrase/key when
21058                         NetworkManager asks for it, and also will (soon) provide "allowed" access point
21059                         lists to NetworkManager by proxying user's GConf
21060           
21061
21062 2004-07-15  Dan Williams <dcbw@redhat.com>
21063
21064         * src/Makefile.am
21065                 - Turn on warnings
21066
21067         * src/NetworkManager.c
21068                 - nm_create_device_and_add_to_list(): call nm_device_deactivate() rather
21069                         that doing the deactivation ourselves
21070                 - Cancel an pending actions on a device if its being removed
21071                 - Break up link state checking a bit, make non-active wireless cards
21072                         deactivated to save power
21073                 - Remove unused variables
21074
21075         * src/NetworkManager.h
21076                 - Add support for "pending" device
21077
21078         * src/NetworkManagerAP.h
21079           src/NetworkManagerAP.c
21080                 - Add support for determining whether and AP has encryption enabled or not
21081                 - AP address is now "struct ether_addr" rather than a string
21082
21083         * src/NetworkManagerDbus.h
21084           src/NetworkManagerDbus.c
21085                 - Add signal NeedKeyForNetwork, method SetKeyForNetwork (testing only)
21086                 - Changes for AP address from struct ether_addr->string
21087
21088         * src/NetworkManagerDevice.h
21089           src/NetworkManagerDevice.c
21090                 - Remove unused variables, fix warnings
21091                 - Add support for Pending Actions (things that block a device from being "active"
21092                         until they are completed).
21093                 - First pending action:  Get a WEP key from the user
21094                 - Add nm_device_is_wire[d|less](), rename nm_device_is_wireless()
21095                 - Clean up explicit testing of dev->iface_type to use nm_device_is_wireless()
21096                 - Update wireless link checking to try to determine if the AP we are associated
21097                         with is correct, but the WEP key we are using is just wrong.  If its wrong,
21098                         trigger the GetUserKey pending action on the device
21099                 - If dhclient can't get an IP address, it brings the device down.  Bring it back
21100                         up in that case, otherwise we can't scan or link-check on it
21101                 - Add IP address change notifications at appropriate points (still needs some work)
21102                 - Add nm_device_need_ap_switch(), checks whether we need to switch access points or not
21103
21104         * src/NetworkManagerPolicy.h
21105           src/NetworkManagerPolicy.c
21106                 - Split out "best" access point determiniation into separate function
21107                 - Make device activation 2-stage:  first the device is pending, then
21108                         in the next iteration through it becomes "active" unless it has
21109                         pending actions
21110
21111         * src/NetworkManagerUtils.h
21112           src/NetworkManagerUtils.c
21113                 - Clean up unused variables and warnings
21114                 - Wrap our debug macros in {} to prevent possible confusion
21115
21116         * src/NetworkManagerWireless.c
21117                 - Forgot to return current best priority, which lead to last available AP always
21118                         being chosen no matter what its priority was.  Corrected.
21119
21120 2004-07-15  Dan Williams <dcbw@redhat.com>
21121
21122         * dispatcher-daemon/Makefile.am
21123                 - Turn on warnings
21124
21125         * dispatcher-daemon/NetworkManagerDispatcher.c
21126                 - Remove unused variables due to warnings
21127                 - Fix some comments
21128                 - Print message on receipt of NeedKeyForNetwork signal (testing only)
21129
21130 2004-07-06  Dan Williams <dcbw@redhat.com>
21131
21132         * src/NetworkManager.c
21133                 - Add IPv4 address update for active device during link state check
21134                 - Don't allow wireless cards to be powered up when they are not the
21135                         active device
21136
21137         * src/NetworkManagerDbus.c
21138           src/NetworkManagerDbus.h
21139                 - Add DBUS IPv4 address change signal
21140                 - Add DBUS IPv4 address get method for devices
21141
21142         * src/NetworkManagerDevice.c
21143                 - Make setting the WEP key actually work
21144                 - Move IP address get/set/update stuff here, per-device
21145                 - Power down/bring down wireless device when deactivated
21146                 - For scanning wireless devices, if first scan returned ENODATA, try again
21147
21148         * src/NetworkManagerPolicy.c
21149                 - Only set the WEP key for an allowed access point if there is one.
21150                         We were setting it to be blank if one wasn't specified.
21151
21152         * src/NetworkManagerUtils.h
21153           src/NetworkManagerUtils.c
21154                 - Move the IP address stuff to NetworkManagerDevice.c
21155
21156         * dispatcher-daemon/NetworkManagerDispatcher.c
21157                 - Add device IPv4 address change notification stuff
21158
21159 2004-07-05  Dan Williams <dcbw@redhat.com>
21160
21161         * dispatcher-daemon/NetworkManagerDispatcher.c
21162                 - A bit more descriptive state message
21163                 - Don't segfault when reading directory
21164
21165         * src/NetworkManager.h
21166                 - Remove NMData desired_ap member, its now
21167                         per-device rather than global
21168
21169         * src/NetworkManager.c
21170                 - Remove references to desired_ap
21171                 - Move the allowed AP list refresh stuff into a thread
21172
21173         * src/NetworkManagerDevice.c
21174           src/NetworkManagerDevice.h
21175                 - Each wireless device now has a "best ap"
21176                 - Make device activate/deactivate functions per-device
21177                 - Make wireless scanning per-device
21178                 - Add IPv4 address discover functions, stub IPv6 ones
21179                 - Move ethernet address validation functions to NetworkManagerUtils.c
21180                 - Add wireless access point accessor function
21181                 - Get/Set functions for "best ap"
21182
21183         * src/NetworkManagerPolicy.c
21184                 - Move activate/deactivate stuff into NetworkManagerDevice.c, per-device
21185                 - Deal with per-device "best ap" rather than data->desired_apa
21186                 - Implement allowed access point worker thread
21187                 - Add nm_policy_essid_is_allowed() function
21188
21189         * src/NetworkManagerUtils.c
21190           src/NetworkManagerUtils.h
21191                 - Add nm_ethernet_address_is_valid() function
21192                 - Add IPv4/IPv6 address get functions
21193
21194         * src/NetworkManagerWireless.c
21195           src/NetworkManagerWireless.h
21196                 - Move scanning stuff into NetworkManagerDevice.c, per-device
21197
21198 2004-06-29  Dan Williams <dcbw@redhat.com>
21199
21200         * dispatcher-daemon/NetworkManagerDispatcher.c
21201                 - Implement script callout functionality
21202
21203 2004-06-24  Dan Williams <dcbw@redhat.com>
21204
21205         * NetworkManager.c
21206             - Spacing cleanups
21207             - Flush device routes and ip addresses when added to the device list
21208
21209         * NetworkManagerDbus.c
21210             - Spacing cleanups
21211             - Add missing returns in the two signal functions
21212         
21213         * NetworkManagerPolicy.c
21214             - Spacing and variable cleanups
21215
21216 2004-06-24  Dan Williams <dcbw@redhat.com>
21217
21218         * Makefile.am
21219           Makefile.in
21220           configure.in
21221           dispatcher-daemon/Makefile.am
21222           dispatcher-daemon/Makefile.in
21223           dispatcher-daemon/NetworkManagerDispatcher.c
21224             - Add a daemon that receives signals from NetworkManager
21225                         and will (eventually) call scripts in /etc/somewhere
21226                         when devices go up or down.
21227         
21228         * NetworkManager.c
21229             - Spacing cleanups
21230             - Flush device routes and ip addresses when added to the device list
21231
21232         * NetworkManagerDbus.c
21233             - Spacing cleanups
21234             - Add missing returns in the two signal functions
21235         
21236         * NetworkManagerPolicy.c
21237             - Spacing and variable cleanups
21238             - Rename nm_policy_switch_interface->nm_policy_switch_device
21239             - nm_policy_switch_device():
21240                                 Use kill (pid) instead of system ("kill <pid>")
21241             - nm_state_modification_monitor():
21242                                 Add wireless essid to output of debug statements
21243                                 Correct typo in device compare to switch or not (should be !=)
21244                                 Don't sleep after sending "no longer active" signal, was useless
21245
21246 2004-06-24  Dan Williams <dcbw@redhat.com>
21247
21248         * Initial import