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

📄 rtnetp.h

📁 rtai-3.1-test3的源代码(Real-Time Application Interface )
💻 H
字号:
/* * Copyright (C) 1999-2003 Paolo Mantegazza <mantegazza@aero.polimi.it> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */#ifndef __RTNET_RTNETP_H#define __RTNET_RTNETP_Hint soft_rt_bind(int s,		 struct sockaddr *my_addr,		 int addrlen);int soft_rt_close(int s);int soft_rt_recvfrom(int s,		     void *buf,		     int len,		     unsigned int flags,		     struct sockaddr *from,		     int *fromlen);int soft_rt_sendto(int s,		   const void *buf,		   int len,		   unsigned int flags,		   struct sockaddr *to,		   int tolen);int soft_rt_socket(int domain,		   int type,		   int protocol);int soft_rt_socket_callback(int s,			    int (*func)(int s, void *arg),			    void *arg);struct sock_t { 	int sock, opnd; 	int tosend, recvd; 	struct sockaddr addr; 	int addrlen; 	int (*callback)(int sock, void *arg); 	void *arg; 	char msg[MAX_MSG_SIZE]; };#ifdef COMPILE_ANYHOW/* the hard RTNet external interface, used just to check netrpc compiles */int rt_socket(int domain,	      int type,	      int protocol);int rt_bind(int s,	    struct sockaddr *my_addr,	    int addrlen);int rt_close(int s);int rt_recvfrom(int s,		void *buf,		int len,		unsigned int flags,		struct sockaddr *from,		int *fromlen);int rt_sendto(int s,	      const void *buf,	      int len,	      unsigned int flags,	      struct sockaddr *to,	      int tolen);int rt_socket_callback(int s,		       int (*func)(int s, void *arg),		       void *arg);#endif /* COMPILE_ANYHOW */#endif /* !__RTNET_RTNETP_H */

⌨️ 快捷键说明

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