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

📄 taper-port-source.h

📁 开源备份软件源码 AMANDA, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that a
💻 H
字号:
/* * Amanda, The Advanced Maryland Automatic Network Disk Archiver * Copyright (c) 2006 Zmanda Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA *//* The taper port source is a taper source (see taper-source.h)   used for the case where we are reading directly from a client   (PORT-WRITE). */#include <glib.h>#include <glib-object.h>#include "taper-source.h"#ifndef __TAPER_PORT_SOURCE_H__#define __TAPER_PORT_SOURCE_H__/* * Type checking and casting macros */#define TAPER_TYPE_PORT_SOURCE	(taper_port_source_get_type())#define TAPER_PORT_SOURCE(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), taper_port_source_get_type(), TaperPortSource)#define TAPER_PORT_SOURCE_CONST(obj)	G_TYPE_CHECK_INSTANCE_CAST((obj), taper_port_source_get_type(), TaperPortSource const)#define TAPER_PORT_SOURCE_CLASS(klass)	G_TYPE_CHECK_CLASS_CAST((klass), taper_port_source_get_type(), TaperPortSourceClass)#define TAPER_IS_PORT_SOURCE(obj)	G_TYPE_CHECK_INSTANCE_TYPE((obj), taper_port_source_get_type ())#define TAPER_PORT_SOURCE_GET_CLASS(obj)	G_TYPE_INSTANCE_GET_CLASS((obj), taper_port_source_get_type(), TaperPortSourceClass)/* * Main object structure */#ifndef __TYPEDEF_TAPER_PORT_SOURCE__#define __TYPEDEF_TAPER_PORT_SOURCE__typedef struct _TaperPortSource TaperPortSource;#endifstruct _TaperPortSource {    TaperSource __parent__;    /*< private >*/    int socket_fd; /* protected. */};/* * Class definition */typedef struct _TaperPortSourceClass TaperPortSourceClass;struct _TaperPortSourceClass {	TaperSourceClass __parent__;};/* * Public methods */GType	taper_port_source_get_type	(void);#endif

⌨️ 快捷键说明

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