constants.h   constants.h 
skipping to change at line 112 skipping to change at line 112
*/ */
typedef enum typedef enum
{ {
GEARMAN_CLIENT_ALLOCATED= (1 << 0), GEARMAN_CLIENT_ALLOCATED= (1 << 0),
GEARMAN_CLIENT_NON_BLOCKING= (1 << 1), GEARMAN_CLIENT_NON_BLOCKING= (1 << 1),
GEARMAN_CLIENT_TASK_IN_USE= (1 << 2), GEARMAN_CLIENT_TASK_IN_USE= (1 << 2),
GEARMAN_CLIENT_UNBUFFERED_RESULT= (1 << 3), GEARMAN_CLIENT_UNBUFFERED_RESULT= (1 << 3),
GEARMAN_CLIENT_NO_NEW= (1 << 4), GEARMAN_CLIENT_NO_NEW= (1 << 4),
GEARMAN_CLIENT_FREE_TASKS= (1 << 5), GEARMAN_CLIENT_FREE_TASKS= (1 << 5),
GEARMAN_CLIENT_GENERATE_UNIQUE= (1 << 6), GEARMAN_CLIENT_GENERATE_UNIQUE= (1 << 6),
GEARMAN_CLIENT_MAX= (1 << 7) GEARMAN_CLIENT_EXCEPTION= (1 << 7),
GEARMAN_CLIENT_SSL= (1 << 8),
GEARMAN_CLIENT_MAX= (1 << 9)
} gearman_client_options_t; } gearman_client_options_t;
/** /**
* @ingroup gearman_worker * @ingroup gearman_worker
* Options for gearman_worker_st. * Options for gearman_worker_st.
*/ */
typedef enum typedef enum
{ {
GEARMAN_WORKER_ALLOCATED= (1 << 0), GEARMAN_WORKER_ALLOCATED= (1 << 0),
GEARMAN_WORKER_NON_BLOCKING= (1 << 1), GEARMAN_WORKER_NON_BLOCKING= (1 << 1),
GEARMAN_WORKER_PACKET_INIT= (1 << 2), GEARMAN_WORKER_PACKET_INIT= (1 << 2),
GEARMAN_WORKER_GRAB_JOB_IN_USE= (1 << 3), GEARMAN_WORKER_GRAB_JOB_IN_USE= (1 << 3),
GEARMAN_WORKER_PRE_SLEEP_IN_USE= (1 << 4), GEARMAN_WORKER_PRE_SLEEP_IN_USE= (1 << 4),
GEARMAN_WORKER_WORK_JOB_IN_USE= (1 << 5), GEARMAN_WORKER_WORK_JOB_IN_USE= (1 << 5),
GEARMAN_WORKER_CHANGE= (1 << 6), GEARMAN_WORKER_CHANGE= (1 << 6),
GEARMAN_WORKER_GRAB_UNIQ= (1 << 7), GEARMAN_WORKER_GRAB_UNIQ= (1 << 7),
GEARMAN_WORKER_TIMEOUT_RETURN= (1 << 8), GEARMAN_WORKER_TIMEOUT_RETURN= (1 << 8),
GEARMAN_WORKER_GRAB_ALL= (1 << 9), GEARMAN_WORKER_GRAB_ALL= (1 << 9),
GEARMAN_WORKER_MAX= (1 << 10) GEARMAN_WORKER_SSL= (1 << 10),
GEARMAN_WORKER_MAX= (1 << 11)
} gearman_worker_options_t; } gearman_worker_options_t;
/* Types. */ /* Types. */
typedef struct gearman_task_st gearman_task_st; typedef struct gearman_task_st gearman_task_st;
typedef struct gearman_client_st gearman_client_st; typedef struct gearman_client_st gearman_client_st;
typedef struct gearman_job_st gearman_job_st; typedef struct gearman_job_st gearman_job_st;
typedef struct gearman_worker_st gearman_worker_st; typedef struct gearman_worker_st gearman_worker_st;
typedef struct gearman_allocator_t gearman_allocator_t; typedef struct gearman_allocator_t gearman_allocator_t;
typedef struct gearman_task_attr_t gearman_task_attr_t; typedef struct gearman_task_attr_t gearman_task_attr_t;
typedef struct gearman_result_st gearman_result_st; typedef struct gearman_result_st gearman_result_st;
 End of changes. 2 change blocks. 
3 lines changed or deleted 6 lines changed or added


 version.h   version.h 
skipping to change at line 40 skipping to change at line 40
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
#pragma once #pragma once
#define LIBGEARMAN_VERSION_STRING "1.1.7" #define LIBGEARMAN_VERSION_STRING "1.1.8"
#define LIBGEARMAN_VERSION_HEX 0x01001007 #define LIBGEARMAN_VERSION_HEX 0x01001008
 End of changes. 1 change blocks. 
0 lines changed or deleted 0 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/