Commit graph

24 commits

Author SHA1 Message Date
Antony Mee
87a039a1c2 Missing header file (mistakenly not chacked in already)
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1797 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-06-03 03:39:21 +00:00
Antony Mee
184d98bf65 Forgot to check this in with username references removed.
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1793 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-06-02 08:37:24 +00:00
Antony Mee
0533bef4f8 Removed user / auth type options from the configuration window.
(Drop down will be added to the auth dialog)


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1792 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-06-02 07:23:07 +00:00
Antony Mee
53940cd69f Bug tracking + roadmap
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1791 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-06-02 07:19:17 +00:00
Antony Mee
771b93a674 * DBUS revamp is complete possible to have various
authentication methods, ptys etc.
  * version bumped to 0.6.9 to bring closer in line with NM
  * nm-pptp-service-pppd-plugin.c -> nm-pppd-plugin.c:
    The pppd plugin has now been generalised to work with
    any ppp protocol. (Options do not exist in the config
    dialog yet however)
  * src/Makefile.am: fixed to install pppd plugin correctly
    (unsure about -fPIC usage!)


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1790 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-06-02 07:10:01 +00:00
Antony Mee
8e193af7d6 * fixed segfault on acquiring IP4Config info
* use "require-mppe" option instead of "mppe required"
   which was associated with the mppe-mppc patch rather
   than the mppe included in pppd >= 2.4.3 and kernel >= 2.6.15


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1789 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-05-31 02:57:13 +00:00
Antony Mee
676c699036 * free dbus error object in plugin initialization
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1788 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-05-31 02:54:27 +00:00
Christian Persch
80e4be873a 2006-05-28 Christian Persch <chpe@cvs.gnome.org>
* gnome/vpn-properties/nm-vpn-properties.glade:
	* vpn-daemons/openvpn/properties/nm-openvpn-dialog.glade:
	* vpn-daemons/pptp/properties/nm-pptp-dialog.glade:
	* vpn-daemons/vpnc/properties/nm-vpnc-dialog.glade:
		- Make the VPN properties pages prettier and more HIG
		  compliant. Gnome Bug #336913.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1781 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-05-29 02:59:10 +00:00
Robert Love
f560d48b7d 2006-05-24 Robert Love <rml@novell.com>
* gnome/applet/Makefile.am, gnome/vpn-properties/Makefile.am,
	  libnm-util/Makefile.am, src/Makefile.am,
	  vpn-daemons/openvpn/auth-dialog/Makefile.am,
	  vpn-daemons/openvpn/properties/Makefile.am,
	  vpn-daemons/pptp/auth-dialog/Makefile.am,
	  vpn-daemons/pptp/properties/Makefile.am,
	  vpn-daemons/vpnc/auth-dialog/Makefile.am,
	  vpn-daemons/vpnc/properties/Makefile.am: Do not override what the
	  user passed for --datadir, if anything, when setting the GNOME locale
	  directory.  It should be a function of the specified datadir and not
	  the prefix.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1759 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-05-24 15:08:22 +00:00
Dan Williams
a567dca2ad 2006-04-23 Dan Williams <dcbw@redhat.com>
Patch from j@bootlab.org
	* src/Makefile.am: add missing files so make distcheck works


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1701 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-04-23 17:45:31 +00:00
Robert Love
e79ccc1a10 2006-03-29 Robert Love <rml@novell.com>
Patch by Vinay R <rvinay@novell.com> and Robert Love <rml@novell.com>,
	to add support for per-route MSS and improve support for per-interface
	MTU:
	* src/NetworkManagerSystem.c: Modify nm_system_device_set_ip4_route to
	  optionally take an MSS parameter and set it for the given route.
	  Remove nm_system_device_set_ip4_route_with_iface.  Pass in the
	  NMIP4Config's stored MSS, if any.
	* src/nm-ip4-config.c: Add 'mtu' and 'mss' to NMIP4Config, representing
	  the interface's MTU and the route's MSS, respectively.  Add functions
	  nm_ip4_config_get_mtu, nm_ip4_config_set_mtu, nm_ip4_config_get_mss,
	  and nm_ip4_config_set_mss for retrieving and setting the MTU and the
	  MSS.
	* src/nm-ip4-config.h: Add prototypes for nm_ip4_config_get_mtu,
	  nm_ip4_config_set_mtu, nm_ip4_config_get_mss, and
	  nm_ip4_config_set_mss.
	* src/vpn-manager/nm-vpn-service.c: Modify to receive the MSS from the
	  VPN daemon.
	* src/backends/NetworkManager{Arch,Debian,Gentoo,RedHat,Slackware,SUSE}.c:
	  Change the retval of nm_system_get_mtu to guint32.
	* src/dhcp-manager/nm-dhcp-manager.c: Set the MTU on the new DHCP-given
	  NMIP4Config to the MTU provided by the system, if any.  TODO: If DHCP
	  servers can specify MTU's, we should set it here if the MTU was not
	  provided.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1660 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-03-29 19:26:53 +00:00
Dan Williams
adc74dfe7b Update cvsignore
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1554 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-03-06 00:23:22 +00:00
Dan Williams
88e5a344ad 2006-02-12 Dan Williams <dcbw@redhat.com>
* vpn-daemons/openvpn/intltool-extract.in
	  vpn-daemons/openvpn/intltool-merge.in
	  vpn-daemons/openvpn/intltool-update.in
	  vpn-daemons/pptp/intltool-extract.in
	  vpn-daemons/pptp/intltool-merge.in
	  vpn-daemons/pptp/intltool-update.in
		- Remove from CVS, they should get created by intltoolize,
			shouldn't they?


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1465 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-02-13 02:11:01 +00:00
Dan Williams
41d4988935 2006-02-12 Dan Williams <dcbw@redhat.com>
* vpn-daemons/pptp/src/pppd/patchlevel.h
	* vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
		- Rename VERSION -> PPPD_VERSION to avoid conflict with the
			Makefile-defined VERSION


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1464 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-02-13 02:05:31 +00:00
Vinay A R
ecc005aa03 2006-02-09 Dan Williams <dcbw@redhat.com>
Patch from: Vinay A R <rvinay@novell.com>
	* src/vpn-manager/nm-vpn-act-request.[ch]
		- Added 'routes' and 'routes_count' to struct NMVPNActRequest since
			IPSec VPNs require them for std gateway.
		- (nm_vpn_act_request_new): takes arguments for 'user_routes'
			and 'user_routes_count'
		- (nm_vpn_act_request_get_user_routes): new function; gets user
			defined routes	from NMVPNActRequest object, returns the string
			array of routes.

	* src/vpn-manager/nm-vpn-manager.[ch]
		- (nm_vpn_manager_activate_vpn_connection): take additional arguments
			for 'user_routes' and 'user_routes_count'

	* src/vpn-manager/nm-dbus-vpn.c
		- (nm_dbus_vpn_activate_connection): gets 'user_routes' from
			nm_dbus_vpn_get_routes() to pass to nm_vpn_manager_activate_vpn_connection()

	* src/vpn-manager/nm-vpn-service.c
		- (nm_vpn_service_stage3_connect): pass user routes over dbus to
			the vpn daemon

	Modifications by Dan:
	* src/vpn-manager/nm-vpn-service.c
		- (nm_vpn_service_stage3_connect): ensure that we don't pass NULL string
			arrays into dbus

	* vpn-daemons/vpnc/src/nm-vpnc-service.c
	* vpn-daemons/pptp/src/nm-pptp-service.c
	* vpn-daemons/openvpn/src/nm-openvpn-service.c
		- Grab user routes from dbus message
		- Free all string arrays we got from dbus


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1463 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-02-13 02:01:44 +00:00
Antony Mee
f8847439ae * include NetworkManagerVPN.h
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1454 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-02-06 14:09:51 +00:00
Lasse Bang Mikkelsen
bc5cbdf253 Updated Danish translation
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1356 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-18 09:46:34 +00:00
Lasse Bang Mikkelsen
a22b1bdb5c Remove non-existent file from POTFILES.in
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1347 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-17 12:25:43 +00:00
Dan Williams
db7403d3f4 2006-01-16 Dan Williams <dcbw@redhat.com>
Apply the PtP Address bits of a patch from Tim Niemueller

	* src/nm-ip4-config.[ch]
		- Add ip4_ptp_address member to object
		- (nm_ip4_config_copy): copy ptp address too
		- (nm_ip4_config_get_ptp_address, nm_ip4_config_set_ptp_address):
			new functions
		- (nm_ip4_config_to_rtnl_addr): use ptp address when asked to,
			rather than local tunnel ip address

	* src/vpn-manager/nm-vpn-service.c
		- (print_vpn_config): update for PtP address
		- (nm_vpn_service_stage4_ip_config_get): switch parsing to
			DBusMessageIters in preparation for getting routes from the VPN
			service daemons too

	* vpn-daemons/openvpn/src/nm-openvpn-service-openvpn-helper.c
		- (send_config_info): update for PtP address, clean up code
		- (main): update for PtP address, clean up code, fix typo

	* vpn-daemons/openvpn/src/nm-openvpn-service.c
		- (nm_openvpn_dbus_process_helper_ip4_config): update for PtP address

	* vpn-daemons/pptp/src/nm-pptp-service-pppd-plugin.c
		- (pptp_ip_up): update for PtP address

	* vpn-daemons/pptp/src/nm-pptp-service.c
		- (nm_pptp_dbus_process_helper_ip4_config): update for PtP address

	* vpn-daemons/vpnc/src/nm-vpnc-service.c
		- (print_vpn_config): update for PtP address
		- (nm_vpnc_dbus_process_helper_ip4_config): update for PtP address


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1346 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-16 22:58:13 +00:00
Dan Williams
6b8b163de1 G_GNU_PRETTY_FUNCTION -> G_STRFUNC
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1345 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-16 22:26:18 +00:00
Robert Love
da31656b36 vpn-daemons/*/configure.in: newer automake versions need AC_CONFIG_AUX_DIR
before AM_INIT_AUTOMAKE.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1271 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-05 21:46:11 +00:00
Tim Niemueller
d08e885b2d 2006-01-05 Tim Niemueller <tim@niemueller.de>
* configure.in: Explicitly set AUX_DIR to . to prevent autoconf from
          searching (and finding) install-sh in ../.., which lead to
          problems.


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1268 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2006-01-05 18:18:59 +00:00
Antony Mee
579686533a 2005-12-21 Antony Mee <A.J.Mee@ncl.ac.uk>
* vpn-daemons/pptp: initial checkin of PPTP VPN Module


git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1223 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2005-12-21 22:29:06 +00:00
Antony Mee
25e0af63e8 Initial check in on NetworkManager PPTP VPN plugin (used pppd)
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@1220 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
2005-12-21 21:50:07 +00:00