代码拉取完成,页面将自动刷新
同步操作将从 liexusong/php-beast 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#ifndef PHP_WIN32
#include <stdlib.h>
#include <stdio.h>
#include "file_handler.h"
struct pipe_handler_ctx {
int fd[2];
};
int pipe_handler_check()
{
return 64 * 1024;
}
int pipe_handler_open(struct file_handler *self)
{
struct pipe_handler_ctx *ctx = self->ctx;
if (pipe(ctx->fd) == -1) {
ctx->fd[0] = -1;
ctx->fd[1] = -1;
return -1;
}
return 0;
}
int pipe_handler_write(struct file_handler *self, char *buf, int size)
{
struct pipe_handler_ctx *ctx = self->ctx;
if (write(ctx->fd[1], buf, size) == size) {
return 0;
}
return -1;
}
int pipe_handler_rewind(struct file_handler *self)
{
return 0;
}
FILE *pipe_handler_get_fp(struct file_handler *self)
{
return NULL;
}
int pipe_handler_get_fd(struct file_handler *self)
{
struct pipe_handler_ctx *ctx = self->ctx;
int retval;
retval = ctx->fd[0];
close(ctx->fd[1]); /* Closed write pipe */
ctx->fd[0] = -1;
ctx->fd[1] = -1;
return retval;
}
int pipe_handler_destroy(struct file_handler *self)
{
struct pipe_handler_ctx *ctx = self->ctx;
if (ctx->fd[0] != -1)
close(ctx->fd[0]);
if (ctx->fd[1] != -1)
close(ctx->fd[1]);
ctx->fd[0] = -1;
ctx->fd[1] = -1;
return 0;
}
static struct pipe_handler_ctx _ctx = {
{-1, -1}
};
struct file_handler pipe_handler = {
"pipe",
BEAST_FILE_HANDLER_FD,
&_ctx,
pipe_handler_check,
pipe_handler_open,
pipe_handler_write,
pipe_handler_rewind,
pipe_handler_get_fd,
pipe_handler_get_fp,
pipe_handler_destroy
};
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。