📄 x25.h
字号:
/* x25.h - X.25 abstractions *//* * $Header: /f/iso/h/RCS/x25.h,v 5.0 88/07/21 14:39:42 mrose Rel $ * * Contributed by John Pavel, Department of Trade and Industry/National * Physical Laboratory in the UK * * * $Log$ *//* * NOTICE * * Acquisition, use, and distribution of this module and related * materials are subject to the restrictions of a license agreement. * Consult the Preface in the User's Manual for the full terms of * this agreement. * */#ifndef _X25_#define _X25_/* * * #defines for generic addressing & TSEL encoded addresses. * */#ifdef SUN_X25#include <sys/ioctl.h>#include <sys/param.h>#undef min#undef max#include <sys/systm.h>#undef insque#undef remque#include <sys/mbuf.h>#include <sundev/syncstat.h>#include <netx25/x25_pk.h>#include <netx25/x25_ctl.h>#include <netx25/x25_ioctl.h>#endif#ifndef _INTERNET_#include <sys/socket.h>#endif#include <sys/protosw.h>#include <sys/domain.h>#include <sys/socketvar.h>#include <sys/errno.h>#include <net/if.h>#ifdef CAMTEC#include <cci.h>typedef struct ccontrolp CONN_DB;#undef NTPUV#define NTPUV 2 /* CAMTEC allows only 2 iov's per read/write */#endif#ifdef CAMTEC_CCL#include <sys/ioctl.h>#include <sys/param.h>#include <sys/types.h>#include <sys/uio.h>#include <netccl/ccl.h>typedef struct ccliovec CONN_DB;#endif#ifdef UBC_X25#include <netccitt/x25_sockaddr.h>typedef struct x25_sockaddr CONN_DB;#endif/* */#ifdef SUN_X25#define close_x25_socket close#define select_x25_socket selsocket#define read_x25_socket read#define write_x25_socket write#endif#if defined(UBC_X25) || defined(CAMTEC_CCL)#define close_x25_socket close#define select_x25_socket selsocket#endifint start_x25_client ();int start_x25_server ();int join_x25_client ();int join_x25_server ();int read_x25_socket ();int write_x25_socket ();int close_x25_socket ();int select_x25_socket ();struct NSAPaddr *if2gen();CONN_DB *gen2if();#define ADDR_LOCAL 0#define ADDR_REMOTE 1#define ADDR_LISTEN 2#define SEPARATOR ':'#define MAXNSDU 1024#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -