~ubuntu-branches/ubuntu/trusty/apr-util/trusty

« back to all changes in this revision

Viewing changes to include/apr_dbd.h

  • Committer: Package Import Robot
  • Author(s): Stefan Fritsch
  • Date: 2013-11-24 14:21:14 UTC
  • mfrom: (20.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20131124142114-uw10gvpf90yw4l9n
Tags: 1.5.3-1
* New upstream version.
* When querying the berkley db version, strip the epoch from the
  version number.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
 
108
108
/** apr_dbd_open_ex: open a connection to a backend
109
109
 *
 
110
 *  @param driver - driver struct.
110
111
 *  @param pool - working pool
111
112
 *  @param params - arguments to driver (implementation-dependent)
112
113
 *  @param handle - pointer to handle to return
113
 
 *  @param driver - driver struct.
114
114
 *  @param error - descriptive error.
115
115
 *  @return APR_SUCCESS for success
116
116
 *  @return APR_EGENERAL if driver exists but connection failed
147
147
 
148
148
/** apr_dbd_open: open a connection to a backend
149
149
 *
 
150
 *  @param driver - driver struct.
150
151
 *  @param pool - working pool
151
152
 *  @param params - arguments to driver (implementation-dependent)
152
153
 *  @param handle - pointer to handle to return
153
 
 *  @param driver - driver struct.
154
154
 *  @return APR_SUCCESS for success
155
155
 *  @return APR_EGENERAL if driver exists but connection failed
156
156
 *  @see apr_dbd_open_ex
161
161
 
162
162
/** apr_dbd_close: close a connection to a backend
163
163
 *
 
164
 *  @param driver - driver struct.
164
165
 *  @param handle - handle to close
165
 
 *  @param driver - driver struct.
166
166
 *  @return APR_SUCCESS for success or error status
167
167
 */
168
168
APU_DECLARE(apr_status_t) apr_dbd_close(const apr_dbd_driver_t *driver,