forked from jamiepg1/network-manager-openvpn
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ChangeLog
751 lines (494 loc) · 22.5 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
2009-03-23 Dan Williams <[email protected]>
* properties/nm-openvpn-dialog.glade
properties/auth-helpers.c
- Add a 'remote ip' entry to static-key mode
2009-03-23 Dan Williams <[email protected]>
Patch from Ove Everlid <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): allow 'ifconfig_netmask' for TUN mode too
2009-03-18 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (auth_widget_update_connection): actually save local IP address
for static key connections
2009-03-18 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (populate_hmacauth_combo): fix # of columns in the list store,
making HMAC Auth actually save itself when hitting Apply
2009-02-13 Dan Williams <[email protected]>
* nm-openvpn-service.conf
- Clean up dbus permissions; retain deny for compat with older dbus
2009-02-12 Dan Williams <[email protected]>
Patch from Robert Vogelgesang <[email protected]>
* properties/auth-helpers.c
properties/import-export.c
properties/nm-openvpn-dialog.glade
src/nm-openvpn-service.c
src/nm-openvpn-service.h
- Handle HMAC authentication (--auth)
2009-01-28 Dan Williams <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): handle subnets correctly; TAP devices get their netmask
from 'ifconfig_netmask', while TUN devices always use
/32 becuase they are point-to-point
2009-01-28 Christoph Höger <[email protected]>
* src/nm-openvpn-service.c
- (real_connect, real_need_secrets): don't segfault if the
connection type is invalid
2008-12-13 Przemysław Grzegorczyk <[email protected]>
* src/nm-openvpn-service.h:
* properties/auth-helpers.h:
* auth-dialog/gnome-two-password-dialog.c:
* auth-dialog/gnome-two-password-dialog.h: Cleared up gtk and glib includes
to use only toplevel headers. Bug #564376.
2008-12-11 Dan Williams <[email protected]>
* Split into separate repository
2008-10-28 Tambet Ingo <[email protected]>
Patch from Bin Li <[email protected]>.
* properties/import-export.c (handle_path_item): Search for certificates
from the directory where the configuration file is from.
2008-10-26 Dan Williams <[email protected]>
* properties/auth-helpers.c
properties/import-export.c
properties/nm-openvpn.c
- Update for setting accessor changes
2008-10-17 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (advanced_dialog_new): The "Certificates (TLS)" tab should also be
present for NM_OPENVPN_CONTYPE_PASSWORD
2008-10-17 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (tls_default_filter, tls_file_chooser_filter_new): accept ".cer"
extension too
2008-10-11 Dan Williams <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): handle route_vpn_gateway (requires NM svn r4169) (bgo #549196)
2008-09-30 Dan Williams <[email protected]>
* properties/nm-openvpn-dialog.glade
- Fix the User and CA certificate entries in Password TLS mode, they
were swapped with their labels (rh #464765)
- Move private key password entries below private key chooser
- Rename "Certificate Password" to "Private key password" since that's
what they actually are
* properties/auth-helpers.c
- (fill_password): s/cert_password/priv_key_password/s
- (fill_vpn_passwords): fix up for corrected widget names; fix mis-filling
of pw_tls secret widgets where passwords were reversed
- (auth_widget_save_secrets): fix up for corrected widget names
* src/nm-openvpn-service.c
- s/certpass/priv_key_pass/s becuase that's what it is
2008-09-29 Dan Williams <[email protected]>
Patch from Robert Buchholz <[email protected]>
* src/nm-openvpn-service.c
- (openvpn_watch_cb): don't access socket_channel if it doesn't exist
because openvpn exited before the management socket could be set up
2008-09-24 Dan Williams <[email protected]>
* common-gnome/*
auth-dialog/Makefile.am
properties/Makefile.am
- Add the keyring helpers that Tambet forgot in the last commit :)
2008-09-24 Tambet Ingo <[email protected]>
* properties/nm-openvpn-dialog.glade: Add "show passwords" checkbox.
* properties/nm-openvpn.c (auth_combo_changed_cb): Change the
sensitivity of "show passwords" checkbox depending on whether the
active page has any password entries.
* properties/auth-helpers.c (fill_password): Add a signal handler for
"show passwords" checkbox to change the password entry's visibility.
2008-09-24 Tambet Ingo <[email protected]>
* Implement required "save_secrets" and "delete_connection" methods of the
VPN plugin UI interface.
Add the password widgets to the properties UI so that the passwords can be
edited/deleted from the UI. Reorganize the code a bit to avoid duplicate
code (using VPNC plugin as a template).
2008-09-10 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- Clean up management socket and connect timer when the plugin stops;
becuase of this openvpn's output needs to be processed from the
child watch callback otherwise it gets lost when the management
socket is cleaned up during the state change to STOPPED.
- Fix parsing of private key auth failure
2008-09-05 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_start_openvpn_binary): send --script-security=2 to allow
the plugin's scripts to be run. Requires OpenVPN 2.1-rc9 or later,
distros with older versions should patch this out.
2008-09-04 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_start_openvpn_binary, real_connect, real_need_secrets):
handle split VPN secrets
2008-08-28 Dan Williams <[email protected]>
* auth-dialog/main.c
- (get_secrets): don't gtk_widget_show_all() because that exposes
widgets that were supposed to be hidden
2008-08-26 Dan Williams <[email protected]>
* auth-dialog/main.c
- Convert to connection UUIDs (requires NM svn 4013 or later)
- General cleanups
- Store secrets in the keyring the same way the pptp and vpnc plugins do
2008-08-22 Dan Williams <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): grab tunnel MTU and push that through to NM
2008-08-18 Claude Paroz <[email protected]>
* properties/nm-openvpn-dialog.glade: Removed translatable property on non
user-visible strings and stock labels.
2008-08-14 Tambet Ingo <[email protected]>
* src/nm-openvpn-service.c (nm_openvpn_socket_data_cb): Detect private key
verification errors too.
* auth-dialog/main.c (pem_is_encrypted): GIOChannel isn't a GObject, use the
correct unreferencing function for it.
2008-08-12 Dan Williams <[email protected]>
* properties/auth-helpers.c
properties/nm-openvpn-dialog.glade
- Handle shared -> static change
- Hook up the Static Key "Local IP Address" entry
* properties/import-export.c
- Handle shared -> static change
* src/nm-openvpn-service.c
src/nm-openvpn-service.h
- (nm_openvpn_start_openvpn_binary): always dup strings when adding to
the argument array so that freeing the array later actually works
- (validate_one_property): validate addresses too
- (nm_openvpn_properties_validate): fix determination of error/success
- (real_connect): fix stray ; causing all connection attempts to fail
2008-08-11 Dan Williams <[email protected]>
Update to match NM svn3924 vpn setting changes; verify options better;
return more informative errors on VPN launch failures; change some config
options (tap-dev, proto-tcp, connection-type) to better reflect their
usage.
2008-08-08 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_socket_data_cb): handle spaces in passwords and usernames
(bgo #482139)
2008-08-06 Dan Williams <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (get_routes): handle route metrics
2008-07-28 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (populate_cipher_combo): don't depend on shell and utils which may not
always be there
2008-07-27 Dan Williams <[email protected]>
Patch from Michael Biebl <[email protected]>
* Move service to $LIBEXECDIR, remove unneeded compilation flags, move
properties plugin to $LIBDIR/NetworkManager
2008-07-19 Dan Williams <[email protected]>
* properties/nm-openvpn.c
- (advanced_dialog_response_cb): only update if OK was pressed
2008-07-18 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_start_openvpn_binary): only add tls-auth direction if
it's non-empty (Nathaniel McCallum)
2008-07-17 Tambet Ingo <[email protected]>
* properties/nm-openvpn.c (openvpn_plugin_ui_class_init): Don't add empty
private data to the class, it produces a runtime warning.
2008-07-07 Dan Williams <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- Use IPv4 address prefixes rather than netmasks (requires svn3812)
2008-07-03 Dan Williams <[email protected]>
* nm-openvpn-service.name.in
Makefile.am
- Remove paths from .name file (requires applet r776 or later) to fix
issues with multilib and magic path substitution in glibc
2008-07-02 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (tls_default_filter): read more of the certificate/key file to look
for the known certificate or key tags, not just 1024 bytes
2008-06-30 Dan Williams <[email protected]>
* properties/auth-helpers.c
- (tls_default_filter, tls_file_chooser_filter_new): accept .crt and
.key too
2008-06-30 Dan Williams <[email protected]>
* properties/import-export.c
properties/import-export.h
properties/Makefile.am
- Implement import of OpenVPN config files
* properties/nm-openvpn.c
properties/nm-openvpn.h
- Add another error for import
- (import): check file extension; get contents; hand off to importer
2008-06-26 Dan Williams <[email protected]>
Implement the Advanced... dialog
2008-06-23 Dan Williams <[email protected]>
* Convert to new NM VPN UI plugin format
Requires a NetworkManager of at least SVN revision r3761.
2008-06-06 Dan Williams <[email protected]>
Patch from Tambet Ingo <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main, get_routes): send routes too
2008-05-30 Dan Williams <[email protected]>
Patch from Casey Harkins <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_start_openvpn_binary): don't send --ns-cert-type, it's
not really supposed to be used anymore since that option isn't
used any more when creating server certificates
2008-05-22 Tambet Ingo <[email protected]>
* src/nm-openvpn-service.c (real_disconnect): If sending SIGTERM
succeeds, add a timeout to make sure it gets killed. If it fails,
send SIGKILL immediately.
2008-05-01 Dan Williams <[email protected]>
* src/nm-vpnc-service.c
- (validate_one_property): allow the 'name' property
2008-04-27 Dan Williams <[email protected]>
* properties/Makefile.am
- Avoid versioning properties plugin (gnome.org #529836)
2008-04-10 Dan Williams <[email protected]>
* vpn-daemons/openvpn/auth-dialog/main.c
- Fix up for connection ID; but needs more work to actually read the
keyring key from the right place
2008-04-10 Tambet Ingo <[email protected]>
* auth-dialog/main.c (main): Add the '-i' argument the applet now sends.
2008-03-13 Dan Williams <[email protected]>
* nm-openvpn-service.name.in
- Fix for 64 bit compat (gnome.org #522231)
2008-02-06 Dan Williams <[email protected]>
Patch from Ryan Ayers <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): respect server-provided DNS search domain
2008-01-31 Dan Williams <[email protected]>
Patch from Robert Hughes <[email protected]>
* src/nm-openvpn-service.c
properties/nm-openvpn.c
- Make 'port' an integer, not a uint
2007-12-13 Tim Niemueller <[email protected]>
* nm-openvpn.desktop.in: Updates to make desktop-file-validate happy
* properties/nm-openvpn.c: Added NULL pointer checks
2007-12-11 Dan Williams <[email protected]>
Patches from Casey Harkins <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (main): make ifconfig_remote optional
2007-12-11 Dan Williams <[email protected]>
Patches from Casey Harkins <[email protected]>
* properties/nm-openvpn.c
- (impl_fill_connection): duplicate hash table keys as required
2007-12-07 Dan Williams <[email protected]>
Patches from Casey Harkins <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- (parse_addr_list): fix off-by-one error
* src/nm-openvpn-service.c
- (nm_openvpn_start_openvpn_binary): don't let openvpn stomp all over
the routing table since NM manages that
* auth-dialog/main.c
src/nm-openvpn-service.h
src/nm-openvpn-service.c
- Don't require a certificate password
2007-12-05 Dan Williams <[email protected]>
Patch from Casey Harkins <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
src/nm-openvpn-service.c
properties/nm-openvpn.c
auth-dialog/main.c
- Fix up so it mostly works
2007-11-23 Tim Niemueller <[email protected]>
* configure.in: raise version number to 0.7.0 to reflect the
dependency on the new NM and to separate it from the 0.6 branch.
2007-11-15 Dan Williams <[email protected]>
* properties/nm-vpnc.c
- Fixup for NMSettingConnection 'name' -> 'id' changes
2007-11-07 Dan Williams <[email protected]>
* properties/nm-openvpn.c
src/nm-openvpn-service.c
- Fix for new NMSetting API changes
2007-10-28 Tim Niemueller <[email protected]>
* nm-openvpn.desktop.in: Added NoDisplay=true
2007-10-26 Dan Williams <[email protected]>
* properties/nm-openvpn.c
- (impl_get_object): use a glade root, and ensure widget is referenced
correctly
2007-10-08 Tambet Ingo <[email protected]>
* Update everything to work with the 0.7 branch NetworkManager.
2007-08-15 Tambet Ingo <[email protected]>
* nm-openvpn-service.name.in: Use uppercase macros so that they get replaced
by the Makefile.
2007-08-14 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- Handle NM_VPN_STATE_* -> NM_VPN_SERVICE_STATE_* and NMVPNState ->
NMVPNServiceState renames
2007-07-26 Dan Williams <[email protected]>
Patch from Andreas Hanke <[email protected]>
* configure.in
acinclude.m4
Makefile.am
- remove broken usage of AS_AC_EXPAND (#413323)
2007-07-26 Dan Williams <[email protected]>
Patch from Robert Buchholz <[email protected]>
* configure.in
- Find & link against libnm-util too (#454739)
2007-06-21 Christopher Aillon <[email protected]>
* nm-openvpn-service.name.in:
Make the properties library path multilib friendly (#447577)
2007-04-02 Dan Williams <[email protected]>
Patch from Christian Persch <[email protected]>
* properties/nm-openvpn-dialog.glade
- HIGify (gnome.org #423753)
2007-04-02 Dan Williams <[email protected]>
Patch from Christian Persch <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_dbus_process_helper_ip4_config): build fix (gnome.org #423757)
2007-03-15 Dan Williams <[email protected]>
Patch from Jon Nettleton
* properties/nm-openvpn-dialog.glade
properties/nm-openvpn.c
- Move advanced properties into a separate dialog
2007-02-26 Dan Williams <[email protected]>
Patch from Jon Nettleton
* properties/nm-openvpn-dialog.glade
properties/nm-openvpn.c
- Reduce size of OpenVPN configuration dialog (Gnome.org #410669)
2007-02-02 Dan Williams <[email protected]>
* src/nm-openvpn-service.c
- (nm_openvpn_dbus_process_helper_ip4_config): convert to dict-based
IP4Config interface
2006-12-07 Dan Williams <[email protected]>
Patch from Christian Persch <[email protected]>
* auth-dialog/main.c
- Fix memleak by unrefing the GnomeProgram instance (Gnome.org #383110)
2006-12-07 Dan Williams <[email protected]>
Patch from Christian Persch <[email protected]>
* auth-dialog/main.c
auth-dialog/gnome-two-password-dialog.c
- HIG-ify (Gnome.org #383109)
2006-11-24 Dan Williams <[email protected]>
Patch from Helmut Schaa <[email protected]>
* src/nm-openvpn-service-openvpn-helper.c
- Redirect output to syslog
2006-10-30 Tambet Ingo <[email protected]>
* properties/Makefile.am: Add NetworkManager to CFLAGS and LDADD.
* src/Makefile.am: Ditto.
* properties/nm-openvpn.c: Remove the leading NetworkManager directory
from NM includes since the NM pkg-config file already adds that.
* src/nm-openvpn-service-openvpn-helper.c: Ditto.
* src/nm-openvpn-service.c: Ditto.
2006-10-04 Tambet Ingo <[email protected]>
* properties/nm-openvpn.c (impl_get_widget, impl_get_properties)
(import_from_file): s/tcp/tcp-client.
2006-07-28 Christophe Merlet <[email protected]>
* properties/nm-openvpn-dialog.glade.h: fixed typo.
* configure.in (ALL_LINGUAS): Added fr (French).
2006-06-19 Satoru SATOH <[email protected]>
* configure.in (ALL_LINGUAS): Added ja (Japanese).
2006-06-17 Marcel Telka <[email protected]>
* configure.in (ALL_LINGUAS): Added sk.
2006-05-11 Robert Love <[email protected]>
Patch to add OpenVPN TLS and Cipher support, by Groug <[email protected]>:
* properties/nm-openvpn-dialog.glade: Add UI checkboxes.
* properties/nm-openvpn.c: New UI.
* src/nm-openvpn-service.c: Support "--tls-auth" and "--cipher"
OpenVPN options.
* src/nm-utils.c: Add nm_find_openvpn(), exported function for finding
the location of the OpenVPN binary.
* src/nm-utils.h: Add prototype.
2006-05-01 Josep Puigdemont Casamajó <[email protected]>
* configure.in: Added "ca" to ALL_LINGUAS.
2006-04-17 Robert Love <[email protected]>
* properties/nm-openvpn-dialog.glade: If the dialog won't let the user
type in the file entry GtkEntries, then don't mark them editable.
2006-04-10 Robert Love <[email protected]>
* properties/nm-openvpn.c: Report error if writing out of exported
configuration fails. The silent treatment might work for me and my
wife, but not for failed I/O.
2006-03-30 Robert Love <[email protected]>
Patch by Crispin Flowerday <[email protected]>:
* src/nm-openvpn-service-helper.c: Fix crash when no PtP IP address is
supplied.
2006-03-29 Robert Love <[email protected]>
* src/nm-openvpn-service.c: New eigth argument to DBUS VPN method, the
per-route MSS. OpenVPN does not care about the MSS, so we send zero.
2006-03-02 Raphael Higino <[email protected]>
* configure.in: Added pt_BR to ALL_LINGUAS.
2006-02-28 Ilkka Tuohela <[email protected]>
* configure.in: Added fi to ALL_LINGUAS.
2006-02-16 Francisco Javier F. Serrador <[email protected]>
* configure.in: Added es to ALL_LINGUAS.
2006-02-08 Clytie Siddall <[email protected]>
* configure.in: Added vi in ALL_LINGUAS line.
2006-02-04 Funda Wang <[email protected]>
* configure.in: Added zh_CN to ALL_LINGUAS.
2006-01-05 Tim Niemueller <[email protected]>
* configure.in: Explicitly set AUX_DIR to . to prevent autoconf from
searching (and finding) install-sh in ../.., which lead to
problems.
2005-12-12 Robert Love <[email protected]>
* auth-dialog/main.c: one more NULL, this time for the ellipses
2005-12-11 Tim Niemueller <[email protected]>
* auth-dialog/main.c:
- Added support for encrypted key files in X.509 connections
- restructured code, fixed a memleak
* src/nm-openvpn-service.c:
- Added support for encrypted key files for X.509 connections
- Added support for port parameter in gconf keys.
* src/gnome-two-password-dialog.[ch]:
- Added support for setting the primary password label
* configure.in:
- Bumped version to 0.3.2
2005-12-07 Tim Niemueller <[email protected]>
* src/nm-openvpn-service.c:
- Removed unused variable, login banner hack not needed any more
2005-12-07 Tim Niemueller <[email protected]>
* auth-dialog/main.c:
- Only request one password from Gnome keyring, patch by Crispin
Flowerday
* properties/nm-openvpn-dialog.glade:
- Added check button to use TCP instead of UDP
* properties/nm-openvpn.c:
- Protocol can now be set, defaults to UDP, TCP maybe selected with
check box
* src/nm-openvpn-service.c:
- Support proto flag in config, default to UDP if not set for backward
compatibility
- Set a fake login banner for now until we fixed when NM sets
last_attempt_success (provided by Crispin)
* configure.in:
- Raised versoin to 0.3.1
2005-12-05 Tim Niemueller <[email protected]>
* properties/nm-openvpn-dialog.glade:
- Added X.509 + User/Pass to list of available connection
types
- added checkbox for using TAP device to optional info expander
* properties/nm-openvpn.c:
- Added support for new X.509 + User/Pass connection type
- Added support for using TAP device, device is now written to
config to new field dev
* auth-dialog/main.c:
- Password is also needed for new connection type
* src/nm-openvpn-service-openvpn-helper.c:
- Updated header
* src/nm-openvpn-service.[ch]:
- Added support for new X.509 + User/Pass connection type
- device is now an explicit parameter, if not set it defaults to
"tun" for compatibility with versions < 0.3.0
- fixed closing of management socket, thanks for this patch goes
to Crispin Flowerday
- Added syslog flag to OpenVPN arguments
* configure.in:
- Raised version to 0.3.0
* openvpn/intltool-extract.in
openvpn/intltool-merge.in
openvpn/intltool-update.in:
- Versions from intltool 0.34 are back, magically work after new
autogen.sh run!?
2005-11-30 Tim Niemueller <[email protected]>
* auth-dialog/main.c: Only request one password,
still use GnomeTwoPasswordDialog, gives all the functionality we need.
This should be unified between VPN implementations. Also I had to add
GConf support to see if a password is really needed for the connection
type. The configuraton line should be written to the auth-dialog by NM
and maybe even an impl_needs_passwd_dialog or similar should be added.
Patch will follow when healthy again.
* properties/nm-openvpn-dialog.glade: Updated GUI,
contains now everything needed to configure all three connection types
* properties/nm-openvpn.c: Added handling of all
three connection types.
* src/nm-openvpn-service-openvpn-helper.c: Use
different environment variables which are available for all connection
types, fixed the returned VPN gateway address. This was the remote IP
used in the VPN network, not the remote's real address. This prevented
it from working if VPN gateway was not in the same subnet since routes
were wrong.
* src/nm-openvpn-service.h
src/nm-openvpn-service.c: Added support for
password and shared secret connection types. Reformatted to Gnu style.
* configure.in: Raised version to 0.2.0
* openvpn/intltool-extract.in
openvpn/intltool-merge.in
openvpn/intltool-update.in:
Version from intltool 0.33, 0.34 won't work at the moment.
2005-10-29 Tim Niemueller <[email protected]>
* started work based on vpnc work