Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4755 → Rev 4756

/branches/network/uspace/srv/net/include/net_interface.h
55,11 → 55,11
* Returns the global configuration if the device specific is not found.
* The configuration names are read and the appropriate settings are set instead.
* Call net_free_settings() function to release the returned configuration.
* @param net_phone The networking module phone. Input parameter.
* @param device_id The device identifier. Input parameter.
* @param configuration The requested device configuration. The names are read and the appropriate settings are set instead. Input/output parameter.
* @param count The configuration entries count. Input parameter.
* @param data The configuration and settings data. Input/output parameter.
* @param[in] net_phone The networking module phone.
* @param[in] device_id The device identifier.
* @param[in,out] configuration The requested device configuration. The names are read and the appropriate settings are set instead.
* @param[in] count The configuration entries count.
* @param[in,out] data The configuration and settings data.
* @returns EOK on success.
* @returns EINVAL if the configuration is NULL.
* @returns EINVAL if the count is zero (0).
70,10 → 70,10
/** Returns the global configuration.
* The configuration names are read and the appropriate settings are set instead.
* Call net_free_settings() function to release the returned configuration.
* @param net_phone The networking module phone. Input parameter.
* @param configuration The requested configuration. The names are read and the appropriate settings are set instead. Input/output parameter.
* @param count The configuration entries count. Input parameter.
* @param data The configuration and settings data. Input/output parameter.
* @param[in] net_phone The networking module phone.
* @param[in,out] configuration The requested configuration. The names are read and the appropriate settings are set instead.
* @param[in] count The configuration entries count.
* @param[in,out] data The configuration and settings data.
* @returns EOK on success.
* @returns EINVAL if the configuration is NULL.
* @returns EINVAL if the count is zero (0).
82,8 → 82,8
int net_get_conf_req( int net_phone, measured_string_ref * configuration, size_t count, char ** data );
 
/** Frees the received settings.
* @param settings The received settings. Input parameter.
* @param data The received settings data. Input parameter.
* @param[in] settings The received settings.
* @param[in] data The received settings data.
* @see net_get_device_conf_req()
* @see net_get_conf_req()
*/