socket_stream.h

来自「xen虚拟机源代码安装包」· C头文件 代码 · 共 54 行

H
54
字号
/* * Copyright (C) 2004 Mike Wray <mike.wray@hp.com> * * 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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */#ifndef _XEN_LIB_SOCKET_STREAM_H_#define _XEN_LIB_SOCKET_STREAM_H_#ifndef __KERNEL__#include "iostream.h"#include <stdio.h>#include <sys/socket.h>#include <netinet/in.h>#include <arpa/inet.h>/** Data associated with a socket stream. */typedef struct SocketData {    /** The socket file descriptor. */    int fd;    /** Source address from last read (recvfrom). */    struct sockaddr_in saddr;    /** Destination address for writes (sendto). */    struct sockaddr_in daddr;    /** Write flags (sendto). */    int flags;    /** Buffer size. */    int buf_n;    /** Buffer for formatted printing. */    char buf[1024];} SocketData;extern IOStream *socket_stream_new(int fd);extern int socket_stream_data(IOStream *io, SocketData **data);extern int socket_stream_check(IOStream *io);extern int socket_stream_set_addr(IOStream *io, struct sockaddr_in *addr);extern int socket_stream_set_flags(IOStream *io, int flags);#endif#endif /* !_XEN_LIB_SOCKET_STREAM_H_ */

⌨️ 快捷键说明

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