⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rbuf.h

📁 wget (command line browser) source code
💻 H
字号:
/* Declarations for rbuf.c.   Copyright (C) 1998 Free Software Foundation, Inc.This file is part of GNU Wget.GNU Wget is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or(at your option) any later version.GNU Wget is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with Wget; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.In addition, as a special exception, the Free Software Foundationgives permission to link the code of its release of Wget with theOpenSSL project's "OpenSSL" library (or with modified versions of itthat use the same license as the "OpenSSL" library), and distributethe linked executables.  You must obey the GNU General Public Licensein all respects for all of the code used other than "OpenSSL".  If youmodify this file, you may extend this exception to your version of thefile, but you are not obligated to do so.  If you do not wish to doso, delete this exception statement from your version.  */#ifndef RBUF_H#define RBUF_H#ifdef HAVE_SSL# include <openssl/ssl.h>#endif/* Retrieval stream */struct rbuf{  int fd;#ifdef HAVE_SSL  SSL *ssl;		/* the ssl structure -- replaces fd for ssl connections */#endif /* HAVE_SSL */  char buffer[4096];		/* the input buffer */  char *buffer_pos;		/* current position in the buffer */  size_t buffer_left;		/* number of bytes left in the buffer:				   buffer_left = buffer_end - buffer_pos */  int internal_dont_touch_this;	/* used by RBUF_READCHAR macro */};/* Read a character from RBUF.  If there is anything in the buffer,   the character is returned from the buffer.  Otherwise, refill the   buffer and return the first character.   The return value is the same as with read(2).  On buffered read,   the function returns 1.   #### That return value is totally screwed up, and is a direct   result of historical implementation of header code.  The macro   should return the character or EOF, and in case of error store it   to rbuf->err or something.  */#define RBUF_READCHAR(rbuf, store)					\((rbuf)->buffer_left							\ ? (--(rbuf)->buffer_left,						\    *((char *) (store)) = *(rbuf)->buffer_pos++, 1)			\ : ((rbuf)->buffer_pos = (rbuf)->buffer,				\    ((((rbuf)->internal_dont_touch_this					\       = rbuf_read_bufferful (rbuf)) <= 0)				\     ? (rbuf)->internal_dont_touch_this					\     : ((rbuf)->buffer_left = (rbuf)->internal_dont_touch_this - 1,	\	*((char *) (store)) = *(rbuf)->buffer_pos++,			\	1))))/* Return the file descriptor of RBUF.  */#define RBUF_FD(rbuf) ((rbuf)->fd)/* Return the file descriptor of RBUF.  */#define RBUF_SSL(rbuf) ((rbuf)->ssl)/* Function declarations */void rbuf_initialize PARAMS ((struct rbuf *, int));int rbuf_initialized_p PARAMS ((struct rbuf *));void rbuf_uninitialize PARAMS ((struct rbuf *));int rbuf_readchar PARAMS ((struct rbuf *, char *));int rbuf_peek PARAMS ((struct rbuf *, char *));int rbuf_flush PARAMS ((struct rbuf *, char *, int));void rbuf_discard PARAMS ((struct rbuf *));/* Internal, but used by the macro. */int rbuf_read_bufferful PARAMS ((struct rbuf *));#endif /* RBUF_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -