Ignore:
Timestamp:
Sep 10, 2009, 2:07:16 AM (15 years ago)
Author:
Bruno Cornec
Message:
  • Change NFS support into a NetFS support to allow for multiple protocol in addition to NFS (NEEDS TESTING)

(Backport from 2.2.9)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2.10/mondo/src/common/mondostructures.h

    r2338 r2382  
    182182    dvd,                        ///< Back up to DVD+R[W] or DVD-R[W] disks.
    183183    cdstream,                   ///< Back up to recordable CDs but treat them like a tape streamer.
    184     nfs,                        ///< Back up to an NFS mount on the local subnet.
     184    netfs,                      ///< Back up to an NETFS mount on the local subnet.
    185185    tape,                       ///< Back up to tapes.
    186186    usb,                        ///< Back up to USB devices.
     
    557557
    558558  /**
    559    * The NFS mount to back up to/restore from.
    560    * If backup_media_type is not @b nfs, this is ignored.
     559   * The NETFS mount to back up to/restore from.
     560   * If backup_media_type is not @b netfs, this is ignored.
    561561   * It must contain a colon, and the server's address should be in dotted-decimal IP
    562562   * address form. (Domain names will be resolved in post_param_configuration().)
    563563   */
    564     char *nfs_mount;
    565 
    566   /**
    567    * The directory, relative to the root of @p nfs_mount, to put
     564    char *netfs_mount;
     565
     566  /**
     567   * The directory, relative to the root of @p netfs_mount, to put
    568568   * the backups in.
    569569   */
    570     char *nfs_remote_dir;
    571 
    572   /**
    573    * The potential user to use for NFS backup
    574    */
    575     char *nfs_user;
     570    char *netfs_remote_dir;
     571
     572  /**
     573   * The potential user to use for NETFS backup
     574   */
     575    char *netfs_user;
     576
     577  /**
     578   * The protocol to use for Network backup (NFS, SSHFS, ...)
     579   */
     580    char *netfs_proto;
    576581
    577582  /**
Note: See TracChangeset for help on using the changeset viewer.