mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 12:26:40 +02:00
Give file descriptor to callback of hook_fd
This commit is contained in:
@@ -2940,15 +2940,18 @@ weechat_lua_api_hook_timer (lua_State *L)
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_lua_api_hook_fd_cb (void *data)
|
||||
weechat_lua_api_hook_fd_cb (void *data, int fd)
|
||||
{
|
||||
struct t_script_callback *script_callback;
|
||||
char *lua_argv[1];
|
||||
char *lua_argv[2], str_fd[32];
|
||||
int *rc, ret;
|
||||
|
||||
script_callback = (struct t_script_callback *)data;
|
||||
|
||||
lua_argv[0] = NULL;
|
||||
snprintf (str_fd, sizeof (str_fd), "%d", fd);
|
||||
|
||||
lua_argv[0] = str_fd;
|
||||
lua_argv[1] = NULL;
|
||||
|
||||
rc = (int *) weechat_lua_exec (script_callback->script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
|
||||
@@ -2453,15 +2453,18 @@ static XS (XS_weechat_api_hook_timer)
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_perl_api_hook_fd_cb (void *data)
|
||||
weechat_perl_api_hook_fd_cb (void *data, int fd)
|
||||
{
|
||||
struct t_script_callback *script_callback;
|
||||
char *perl_argv[1];
|
||||
char *perl_argv[2], str_fd[32];
|
||||
int *rc, ret;
|
||||
|
||||
script_callback = (struct t_script_callback *)data;
|
||||
|
||||
perl_argv[0] = NULL;
|
||||
snprintf (str_fd, sizeof (str_fd), "%d", fd);
|
||||
|
||||
perl_argv[0] = str_fd;
|
||||
perl_argv[1] = NULL;
|
||||
|
||||
rc = (int *) weechat_perl_exec (script_callback->script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
|
||||
@@ -2613,15 +2613,18 @@ weechat_python_api_hook_timer (PyObject *self, PyObject *args)
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_python_api_hook_fd_cb (void *data)
|
||||
weechat_python_api_hook_fd_cb (void *data, int fd)
|
||||
{
|
||||
struct t_script_callback *script_callback;
|
||||
char *python_argv[1];
|
||||
char *python_argv[2], str_fd[32];
|
||||
int *rc, ret;
|
||||
|
||||
script_callback = (struct t_script_callback *)data;
|
||||
|
||||
python_argv[0] = NULL;
|
||||
snprintf (str_fd, sizeof (str_fd), "%d", fd);
|
||||
|
||||
python_argv[0] = str_fd;
|
||||
python_argv[1] = NULL;
|
||||
|
||||
rc = (int *) weechat_python_exec (script_callback->script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
|
||||
@@ -3000,15 +3000,18 @@ weechat_ruby_api_hook_timer (VALUE class, VALUE interval, VALUE align_second,
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_ruby_api_hook_fd_cb (void *data)
|
||||
weechat_ruby_api_hook_fd_cb (void *data, int fd)
|
||||
{
|
||||
struct t_script_callback *script_callback;
|
||||
char *ruby_argv[1];
|
||||
char *ruby_argv[2], str_fd[32];
|
||||
int *rc, ret;
|
||||
|
||||
script_callback = (struct t_script_callback *)data;
|
||||
|
||||
ruby_argv[0] = NULL;
|
||||
snprintf (str_fd, sizeof (str_fd), "%d", fd);
|
||||
|
||||
ruby_argv[0] = str_fd;
|
||||
ruby_argv[1] = NULL;
|
||||
|
||||
rc = (int *) weechat_ruby_exec (script_callback->script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
|
||||
@@ -749,7 +749,7 @@ script_api_hook_fd (struct t_weechat_plugin *weechat_plugin,
|
||||
struct t_plugin_script *script,
|
||||
int fd, int flag_read, int flag_write,
|
||||
int flag_exception,
|
||||
int (*callback)(void *data),
|
||||
int (*callback)(void *data, int fd),
|
||||
const char *function)
|
||||
{
|
||||
struct t_script_callback *new_script_callback;
|
||||
|
||||
@@ -125,7 +125,7 @@ extern struct t_hook *script_api_hook_fd (struct t_weechat_plugin *weechat_plugi
|
||||
struct t_plugin_script *script,
|
||||
int fd, int flag_read,
|
||||
int flag_write, int flag_exception,
|
||||
int (*callback)(void *data),
|
||||
int (*callback)(void *data, int fd),
|
||||
const char *function);
|
||||
extern struct t_hook *script_api_hook_connect (struct t_weechat_plugin *weechat_plugin,
|
||||
struct t_plugin_script *script,
|
||||
|
||||
@@ -2826,15 +2826,18 @@ weechat_tcl_api_hook_timer (ClientData clientData, Tcl_Interp *interp,
|
||||
*/
|
||||
|
||||
int
|
||||
weechat_tcl_api_hook_fd_cb (void *data)
|
||||
weechat_tcl_api_hook_fd_cb (void *data, int fd)
|
||||
{
|
||||
struct t_script_callback *script_callback;
|
||||
char *tcl_argv[1];
|
||||
char *tcl_argv[2], str_fd[32];
|
||||
int *rc, ret;
|
||||
|
||||
script_callback = (struct t_script_callback *)data;
|
||||
|
||||
tcl_argv[0] = NULL;
|
||||
snprintf (str_fd, sizeof (str_fd), "%d", fd);
|
||||
|
||||
tcl_argv[0] = str_fd;
|
||||
tcl_argv[1] = NULL;
|
||||
|
||||
rc = (int *) weechat_tcl_exec (script_callback->script,
|
||||
WEECHAT_SCRIPT_EXEC_INT,
|
||||
|
||||
Reference in New Issue
Block a user