Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/lib/smbconf/smbconf.h

    r740 r988  
    206206
    207207/**
     208 * @brief create and set the definition for a new service.
     209 *
     210 * @param[in] ctx       The smbconf context to use.
     211 *
     212 * @param[in] service   The definition for the added service.
     213 *
     214 * @return              SBC_ERR_OK on success, a corresponding sbcErr if an
     215 *                      error occured.
     216 */
     217sbcErr smbconf_create_set_share(struct smbconf_ctx *ctx,
     218                                struct smbconf_service *service);
     219
     220/**
    208221 * @brief Get a definition of a share (service) from configuration.
    209222 *
     
    448461 * @brief Start a transaction on the configuration backend.
    449462 *
    450  * This is to speed up writes to the registry based backend.
     463 * Transactions are exposed in order to make it possible
     464 * to create atomic compound writing commands.
    451465 *
    452466 * @param[in] ctx       The smbconf context to start the transaction.
     
    460474 * @brief Commit a transaction on the configuration backend.
    461475 *
    462  * This is to speed up writes to the registry based backend.
     476 * Transactions are exposed in order to make it possible
     477 * to create atomic compound writing commands.
    463478 *
    464479 * @param[in] ctx       The smbconf context to commit the transaction.
     
    474489 * @brief Cancel a transaction on the configuration backend.
    475490 *
     491 * Transactions are exposed in order to make it possible
     492 * to create atomic compound writing commands.
     493 *
    476494 * @param[in] ctx       The smbconf context to cancel the transaction.
    477495 *
Note: See TracChangeset for help on using the changeset viewer.