~brianaker/gearmand/warning-usage

« back to all changes in this revision

Viewing changes to libgearman/server_options.hpp

Import from current build tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
#pragma once
40
40
 
41
 
#include <cstdlib>
42
 
 
43
41
struct gearman_universal_st;
44
42
 
 
43
bool gearman_request_option(gearman_universal_st &universal, gearman_string_t &option);
 
44
 
45
45
struct gearman_server_options_st
46
46
{
 
47
  const char* _option;
 
48
  const size_t _option_length;
 
49
 
47
50
  gearman_server_options_st *next;
48
51
  gearman_server_options_st *prev;
49
 
  const char* option;
50
 
  const size_t option_length;
51
52
  gearman_universal_st &universal;
52
53
 
53
54
public: