1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
/* Gearman server and library
* Copyright (C) 2008 Brian Aker, Eric Day
* All rights reserved.
*
* Use and distribution licensed under the BSD license. See
* the COPYING file in the parent directory for full text.
*/
/**
* @file
* @brief Packet Declarations
*/
#ifndef __GEARMAN_SERVER_PACKET_H__
#define __GEARMAN_SERVER_PACKET_H__
#ifdef __cplusplus
extern "C" {
#endif
/**
* @addtogroup gearman_server_packet Packet Declarations
* @ingroup gearman_server
*
* This is a low level interface for gearman server connections. This is used
* internally by the server interface, so you probably want to look there first.
*
* @{
*/
struct gearman_server_packet_st
{
gearman_packet_st packet;
gearman_server_packet_st *next;
};
/**
* Initialize a server packet structure.
*/
GEARMAN_API
gearman_server_packet_st *
gearman_server_packet_create(gearman_server_thread_st *thread,
bool from_thread);
/**
* Free a server connection structure.
*/
GEARMAN_API
void gearman_server_packet_free(gearman_server_packet_st *packet,
gearman_server_thread_st *thread,
bool from_thread);
/**
* Add a server packet structure to io queue for a connection.
*/
GEARMAN_API
gearman_return_t gearman_server_io_packet_add(gearman_server_con_st *con,
bool take_data,
enum gearman_magic_t magic,
gearman_command_t command,
const void *arg, ...);
/**
* Remove the first server packet structure from io queue for a connection.
*/
GEARMAN_API
void gearman_server_io_packet_remove(gearman_server_con_st *con);
/**
* Add a server packet structure to proc queue for a connection.
*/
GEARMAN_API
void gearman_server_proc_packet_add(gearman_server_con_st *con,
gearman_server_packet_st *packet);
/**
* Remove the first server packet structure from proc queue for a connection.
*/
GEARMAN_API
gearman_server_packet_st *
gearman_server_proc_packet_remove(gearman_server_con_st *con);
/** @} */
#ifdef __cplusplus
}
#endif
#endif /* __GEARMAN_SERVER_PACKET_H__ */
|