diff options
| author | Eli Zaretskii | 2013-10-16 18:44:02 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-10-16 18:44:02 +0300 |
| commit | 3dffe395916c0c075c1609c41e553d9f8e3690ea (patch) | |
| tree | eeaa2e377b897148fee2ed764c9e0fbb786dc9e1 /src/ChangeLog | |
| parent | b911a94d7993508f8a53360a4be4651de30ea301 (diff) | |
| download | emacs-3dffe395916c0c075c1609c41e553d9f8e3690ea.tar.gz emacs-3dffe395916c0c075c1609c41e553d9f8e3690ea.zip | |
Implement network-interface-* functions for MS-Windows (bug #15610).
src/w32.c (network_interface_get_info, network_interface_list)
(network_interface_info): New functions.
(GetAdaptersInfo_Proc): New typedef.
(get_adapters_info): New wrapper function.
(globals_of_w32): Initialize g_b_init_get_adapters_info.
src/process.h (network_interface_list, network_interface_info): New
prototypes.
src/process.c (conv_sockaddr_to_lisp): Now externally-visible.
(Fnetwork_interface_list, Fnetwork_interface_info): Define for
all systems. Return non-nil for systems that HAVE_NET_IF_H and
for WINDOWSNT. Doc fix.
(syms_of_process): Defsubr Snetwork_interface_list and
Snetwork_interface_info unconditionally.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 4874187b3c0..3b419af9e32 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,21 @@ | |||
| 1 | 2013-10-16 Eli Zaretskii <eliz@gnu.org> | 1 | 2013-10-16 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | * w32.c (network_interface_get_info, network_interface_list) | ||
| 4 | (network_interface_info): New functions. (Bug#15610) | ||
| 5 | (GetAdaptersInfo_Proc): New typedef. | ||
| 6 | (get_adapters_info): New wrapper function. | ||
| 7 | (globals_of_w32): Initialize g_b_init_get_adapters_info. | ||
| 8 | |||
| 9 | * process.h (network_interface_list, network_interface_info): New | ||
| 10 | prototypes. | ||
| 11 | |||
| 12 | * process.c (conv_sockaddr_to_lisp): Now externally-visible. | ||
| 13 | (Fnetwork_interface_list, Fnetwork_interface_info): Define for | ||
| 14 | all systems. Return non-nil for systems that HAVE_NET_IF_H and | ||
| 15 | for WINDOWSNT. Doc fix. | ||
| 16 | (syms_of_process): Defsubr Snetwork_interface_list and | ||
| 17 | Snetwork_interface_info unconditionally. | ||
| 18 | |||
| 3 | * menu.c (have_boxes): Fix redundant simulation of radio buttons | 19 | * menu.c (have_boxes): Fix redundant simulation of radio buttons |
| 4 | in NS GUI sessions. (Bug#15629) | 20 | in NS GUI sessions. (Bug#15629) |
| 5 | 21 | ||