Transport Interfaces Programming Guide

Total Page:16

File Type:pdf, Size:1020Kb

Transport Interfaces Programming Guide Transport Interfaces Programming Guide Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, CA 94043-1100 U.S.A. Part No: 805–4041–10 October 1998 Copyright 1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303-4900 U.S.A. All rights reserved. This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation. No part of this product or document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, SunDocs, Java, the Java Coffee Cup logo, and Solaris are trademarks, registered trademarks, or service marks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. The OPEN LOOK and SunTM Graphical User Interface was developed by Sun Microsystems, Inc. for its users and licensees. Sun acknowledges the pioneering efforts of Xerox in researching and developing the concept of visual or graphical user interfaces for the computer industry. Sun holds a non-exclusive license from Xerox to the Xerox Graphical User Interface, which license also covers Sun’s licensees who implement OPEN LOOK GUIs and otherwise comply with Sun’s written license agreements. RESTRICTED RIGHTS: Use, duplication, or disclosure by the U.S. Government is subject to restrictions of FAR 52.227–14(g)(2)(6/87) and FAR 52.227–19(6/87), or DFAR 252.227–7015(b)(6/95) and DFAR 227.7202–3(a). DOCUMENTATION IS PROVIDED “AS IS” AND ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. Copyright 1998 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, Californie 94303-4900 Etats-Unis. Tous droits réservés. Ce produit ou document est protégé par un copyright et distribué avec des licences qui en restreignent l’utilisation, la copie, la distribution, et la décompilation. Aucune partie de ce produit ou document ne peut être reproduite sous aucune forme, par quelque moyen que ce soit, sans l’autorisation préalable et écrite de Sun et de ses bailleurs de licence, s’il y en a. Le logiciel détenu par des tiers, et qui comprend la technologie relative aux polices de caractères, est protégé par un copyright et licencié par des fournisseurs de Sun. Des parties de ce produit pourront être dérivées du système Berkeley BSD licenciés par l’Université de Californie. UNIX est une marque déposée aux Etats-Unis et dans d’autres pays et licenciée exclusivement par X/Open Company, Ltd. Sun, Sun Microsystems, le logo Sun, SunDocs, Java, le logo Java Coffee Cup, et Solaris sont des marques de fabrique ou des marques déposées, ou marques de service, de Sun Microsystems, Inc. aux Etats-Unis et dans d’autres pays. Toutes les marques SPARC sont utilisées sous licence et sont des marques de fabrique ou des marques déposées de SPARC International, Inc. aux Etats-Unis et dans d’autres pays. Les produits portant les marques SPARC sont basés sur une architecture développée par Sun Microsystems, Inc. L’interface d’utilisation graphique OPEN LOOK et SunTM a été développée par Sun Microsystems, Inc. pour ses utilisateurs et licenciés. Sun reconnaît les efforts de pionniers de Xerox pour la recherche et le développement du concept des interfaces d’utilisation visuelle ou graphique pour l’industrie de l’informatique. Sun détient une licence non exclusive de Xerox sur l’interface d’utilisation graphique Xerox, cette licence couvrant également les licenciés de Sun qui mettent en place l’interface d’utilisation graphique OPEN LOOK et qui en outre se conforment aux licences écrites de Sun. CETTE PUBLICATION EST FOURNIE “EN L’ETAT” ET AUCUNE GARANTIE, EXPRESSE OU IMPLICITE, N’EST ACCORDEE, Y COMPRIS DES GARANTIES CONCERNANT LA VALEUR MARCHANDE, L’APTITUDE DE LA PUBLICATION A REPONDRE A UNE UTILISATION PARTICULIERE, OU LE FAIT QU’ELLE NE SOIT PAS CONTREFAISANTE DE PRODUIT DE TIERS. CE DENI DE GARANTIE NE S’APPLIQUERAIT PAS, DANS LA MESURE OU IL SERAIT TENU JURIDIQUEMENT NUL ET NON AVENU. Please Recycle Contents Preface vii 1. Introduction to Network Programming Interfaces 1 The Client-Server Model 1 Network Services in the Solaris Environment 3 Layered Protocols 4 Open Systems Interconnection (OSI) Reference Model 5 TCP/IP Internet Protocol Suite 7 TCP/IP Protocol Stack 7 Connection-Oriented and Connectionless Protocols 9 Connection-Oriented Protocols 9 Connectionless Protocols 10 Choosing Between COTS and CLTS 10 2. Programming With Sockets 11 Sockets are Multithread Safe 11 SunOS 4 Binary Compatibility 11 What Are Sockets? 12 Socket Libraries 13 Socket Types 13 Socket Tutorial 14 Contents iii Socket Creation 14 Binding Local Names 15 Connection Establishment 16 Connection Errors 18 Data Transfer 18 Closing Sockets 19 Connecting Stream Sockets 20 Datagram Sockets 23 Input/Output Multiplexing 27 Standard Routines 30 Host Names 30 Network Names 31 Protocol Names 31 Service Names 31 Other Routines 32 Client-Server Programs 33 Servers 33 Clients 36 Connectionless Servers 37 Advanced Topics 39 Out-of-Band Data 40 Nonblocking Sockets 41 Asynchronous Socket I/O 42 Interrupt-Driven Socket I/O 43 Signals and Process Group ID 44 Selecting Specific Protocols 45 Address Binding 46 Broadcasting and Determining Network Configuration 48 iv Transport Interfaces Programming Guide ♦ October 1998 Zero Copy and Checksum Offload 50 Socket Options 51 inetd Daemon 52 3. Programming with XTI and TLI 55 XTI/TLI Is Multithread Safe 55 XTI/TLI Are Not Asynchronous Safe 56 What Are XTI and TLI? 56 Connectionless Mode 58 Connectionless Mode Routines 58 Connectionless Mode Service 59 Endpoint Initiation 59 Data Transfer 61 Datagram Errors 63 Connection Mode 63 Connection Mode Routines 64 Connection Mode Service 67 Endpoint Initiation 68 Connection Establishment 73 Data Transfer 78 Connection Release 82 Read/Write Interface 84 Write 85 Read 85 Close 86 Advanced Topics 86 Asynchronous Execution Mode 87 Advanced Programming Example 87 State Transitions 93 Contents v XTI/TLI States 93 Outgoing Events 94 Incoming Events 95 Transport User Actions 96 State Tables 97 Guidelines to Protocol Independence 100 XTI/TLI Versus Socket Interfaces 101 Socket-to-XTI/TLI Equivalents 102 Additions to XTI Interface 104 Scatter/Gather Data Transfer Interfaces 104 XTI Utility Functions 105 Additional Connection Release Interfaces 105 4. Transport Selection and Name-to-Address Mapping 107 Transport Selection Is Multithread Safe 107 Transport Selection 108 How Transport Selection Works 108 /etc/netconfig File 109 NETPATH Environment Variable 111 NETPATH Access to netconfig Data 112 Accessing netconfig 113 Loop Through all Visible netconfig Entries 115 Looping Through User-Defined netconfig Entries 115 Name-to-Address Mapping 116 straddr.so Library 117 Using the Name-to-Address Mapping Routines 118 Glossary 123 Index 125 vi Transport Interfaces Programming Guide ♦ October 1998 Preface This manual describes the programmatic interfaces to transport services in the Solaris operating environment. In this guide, the terms SunOSTM and SolarisTM are used interchangeably because the interfaces described in this manual are common to both. Solaris 7, the distributed computing operating environment for SunSoftTM , is a superset of SunOS. It consists of SunOS release 5.7 with ONC+TM , OpenWindowsTM , ToolTalkTM , DeskSetTM , OPEN LOOK, and other utilities. This release of Solaris is fully compatible with System V, Release 4 (SVR4) of UNIX® and conforms to the third edition of the System V Interface Description (SVID). It supports all System V network services. Who Should Use This Book The guide assists you in developing a networked, distributed application in the Solaris operating environment. Use of this guide assumes basic competence in programming, a working familiarity with the C programming language, and a working familiarity with the UNIX operating system. Previous experience in network programming is helpful, but is not required to use this manual. How This Book Is Organized Chapter 1 gives a high-level introduction to networking concepts and the topics covered in this book. Preface vii Chapter 2 describes the socket interface at the transport layer. Chapter 3 describes the X/Open Transport Interface (XTI) and UNIX System V Transport Layer Interface (TLI). Chapter 4 describes the network selection mechanisms used by applications in selecting a network transport and its configuration. Ordering Sun Documents The SunDocsSM program provides more than 250 manuals from Sun Microsystems, Inc. If you live in the United States, Canada, Europe, or Japan, you can purchase documentation sets or individual manuals using this program. For a list of documents and how to order them, see the catalog section of SunExpressTM Internet site at http://www.sun.com/sunexpress. Related Books The following online System AnswerBookTM products cover related network programming topics: Solaris 7 Reference Manual Collection Solaris 7 Software Developer Collection The following third-party books are excellent sources on network programming topics: Stevens, Richard W.UNIX Network Programming. Prentice Hall Software Series, 1990. Rago, Stephen A. System V Network Programming. Addison-Wesley, 1993. Stevens, Richar W. TCP/IP Illustrated, Volume I. Addison-Wesley, 1994. Padovano, Michael. Networking Applications on UNIX System V Release 4. Prentice Hall, Inc., 1993 Comer, Douglas E.
Recommended publications
  • Mac OS 8 Update
    K Service Source Mac OS 8 Update Known problems, Internet Access, and Installation Mac OS 8 Update Document Contents - 1 Document Contents • Introduction • About Mac OS 8 • About Internet Access What To Do First Additional Software Auto-Dial and Auto-Disconnect Settings TCP/IP Connection Options and Internet Access Length of Configuration Names Modem Scripts & Password Length Proxies and Other Internet Config Settings Web Browser Issues Troubleshooting • About Mac OS Runtime for Java Version 1.0.2 • About Mac OS Personal Web Sharing • Installing Mac OS 8 • Upgrading Workgroup Server 9650 & 7350 Software Mac OS 8 Update Introduction - 2 Introduction Mac OS 8 is the most significant update to the Macintosh operating system since 1984. The updated system gives users PowerPC-native multitasking, an efficient desktop with new pop-up windows and spring-loaded folders, and a fully integrated suite of Internet services. This document provides information about Mac OS 8 that supplements the information in the Mac OS installation manual. For a detailed description of Mac OS 8, useful tips for using the system, troubleshooting, late-breaking news, and links for online technical support, visit the Mac OS Info Center at http://ip.apple.com/infocenter. Or browse the Mac OS 8 topic in the Apple Technical Library at http:// tilsp1.info.apple.com. Mac OS 8 Update About Mac OS 8 - 3 About Mac OS 8 Read this section for information about known problems with the Mac OS 8 update and possible solutions. Known Problems and Compatibility Issues Apple Language Kits and Mac OS 8 Apple's Language Kits require an updater for full functionality with this version of the Mac OS.
    [Show full text]
  • Transport Interfaces Programming Guide
    Transport Interfaces Programming Guide Sun Microsystems, Inc. 2550 Garcia Avenue Mountain View, CA 94043-1100 U.S.A. Part No: 802-5886 August 1997 Copyright 1997 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California 94303-4900 U.S.A. All rights reserved. This product or document is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation. No part of this product or document may be reproduced in any form by any means without prior written authorization of Sun and its licensors, if any. Third-party software, including font technology, is copyrighted and licensed from Sun suppliers. Parts of the product may be derived from Berkeley BSD systems, licensed from the University of California. UNIX is a registered trademark in the U.S. and other countries, exclusively licensed through X/Open Company, Ltd. Sun, Sun Microsystems, the Sun logo, SunSoft, SunDocs, SunExpress, and Solaris are trademarks, registered trademarks, or service marks of Sun Microsystems, Inc. in the U.S. and other countries. All SPARC trademarks are used under license and are trademarks or registered trademarks of SPARC International, Inc. in the U.S. and other countries. Products bearing SPARC trademarks are based upon an architecture developed by Sun Microsystems, Inc. The OPEN LOOK and SunTM Graphical User Interface was developed by Sun Microsystems, Inc. for its users and licensees. Sun acknowledges the pioneering efforts of Xerox in researching and developing the concept of visual or graphical user interfaces for the computer industry. Sun holds a non-exclusive license from Xerox to the Xerox Graphical User Interface, which license also covers Sun’s licensees who implement OPEN LOOK GUIs and otherwise comply with Sun’s written license agreements.
    [Show full text]
  • Chapter 1. Origins of Mac OS X
    1 Chapter 1. Origins of Mac OS X "Most ideas come from previous ideas." Alan Curtis Kay The Mac OS X operating system represents a rather successful coming together of paradigms, ideologies, and technologies that have often resisted each other in the past. A good example is the cordial relationship that exists between the command-line and graphical interfaces in Mac OS X. The system is a result of the trials and tribulations of Apple and NeXT, as well as their user and developer communities. Mac OS X exemplifies how a capable system can result from the direct or indirect efforts of corporations, academic and research communities, the Open Source and Free Software movements, and, of course, individuals. Apple has been around since 1976, and many accounts of its history have been told. If the story of Apple as a company is fascinating, so is the technical history of Apple's operating systems. In this chapter,[1] we will trace the history of Mac OS X, discussing several technologies whose confluence eventually led to the modern-day Apple operating system. [1] This book's accompanying web site (www.osxbook.com) provides a more detailed technical history of all of Apple's operating systems. 1 2 2 1 1.1. Apple's Quest for the[2] Operating System [2] Whereas the word "the" is used here to designate prominence and desirability, it is an interesting coincidence that "THE" was the name of a multiprogramming system described by Edsger W. Dijkstra in a 1968 paper. It was March 1988. The Macintosh had been around for four years.
    [Show full text]
  • Mac OS X: an Introduction for Support Providers
    Mac OS X: An Introduction for Support Providers Course Information Purpose of Course Mac OS X is the next-generation Macintosh operating system, utilizing a highly robust UNIX core with a brand new simplified user experience. It is the first successful attempt to provide a fully-functional graphical user experience in such an implementation without requiring the user to know or understand UNIX. This course is designed to provide a theoretical foundation for support providers seeking to provide user support for Mac OS X. It assumes the student has performed this role for Mac OS 9, and seeks to ground the student in Mac OS X using Mac OS 9 terms and concepts. Author: Robert Dorsett, manager, AppleCare Product Training & Readiness. Module Length: 2 hours Audience: Phone support, Apple Solutions Experts, Service Providers. Prerequisites: Experience supporting Mac OS 9 Course map: Operating Systems 101 Mac OS 9 and Cooperative Multitasking Mac OS X: Pre-emptive Multitasking and Protected Memory. Mac OS X: Symmetric Multiprocessing Components of Mac OS X The Layered Approach Darwin Core Services Graphics Services Application Environments Aqua Useful Mac OS X Jargon Bundles Frameworks Umbrella Frameworks Mac OS X Installation Initialization Options Installation Options Version 1.0 Copyright © 2001 by Apple Computer, Inc. All Rights Reserved. 1 Startup Keys Mac OS X Setup Assistant Mac OS 9 and Classic Standard Directory Names Quick Answers: Where do my __________ go? More Directory Names A Word on Paths Security UNIX and security Multiple user implementation Root Old Stuff in New Terms INITs in Mac OS X Fonts FKEYs Printing from Mac OS X Disk First Aid and Drive Setup Startup Items Mac OS 9 Control Panels and Functionality mapped to Mac OS X New Stuff to Check Out Review Questions Review Answers Further Reading Change history: 3/19/01: Removed comment about UFS volumes not being selectable by Startup Disk.
    [Show full text]
  • Outline Network Programming
    Outline Network Programming Definitions Berkeley API Dr. Thaier Hayajneh Computer Engineering Department Socket definition and types Introduction to Sockets 1 2 Network API Process Process Process Layer API - Application Programming Interface API is a set of functionality/services delivered by a programming system. TCP SCTP UDP Transppyort Layer Also API is a set of declaration, definitions, and procedflldbdures followed by programmers titlitto write client- server programs. ICMP, ARP Network API & IP Network Layer The services ( often provided by the operating system) RARP that provide the interface between application and protocol software . 802.3 Data-Link Layer 3 4 Network API Network API wish list Generic Programming Interface. Internet Support multiple communication protocol suites OSI model Application protocol suite details (families). Application User Address (endpoint) representation independence. processor Presentation Application Provide special services for Client and Server Session Transport TCP UDP Support for message oriented and connection Network IPv4, IPv6 oriented communication. kernel Data link Data link Work with existing I/O services Physical Physical Communications Operating System independence details Presentation layer services 5 6 TCP/IP Client-Server Model TCP/IP does not include an API definition. Client 1 Server Client 2 There are a variety of APIs for use with TCP/IP: Client 3 Sockets by Berkeley XTI (X/Open Transport Interface) by AT&T One side of communication is client, and the other side is server Winsock - Windows Sockets API by Microsoft Server waits for a client request to arrive MacTCP / Open Transport by Apple Server processes the client request and sends the response back to the client Iterative or concurrent 7 8 Functions needed: Berkeley Sockets Sppyecify local and remote communication A socket is an abstract representation of a communication endpoint.
    [Show full text]
  • A TCP-Layer Name Service for TCP Ports
    A TCP-layer name service for TCP ports S´ergio Freire Andr´eZ´uquete PT Inovac¸ao˜ / IEETA / Univ. of Aveiro IEETA / IT / Univ. of Aveiro Abstract using this name service are twofold: (i) users may dis- criminate servers using names instead of numbers and This paper presents a simple name service for TCP ports, (ii) TCP port scanners, such as nmap, should not be ca- allowing services to be reached by name instead of num- pable of discovering servers bound to unusual names. ber. Names are arbitrary byte arrays that are bound to listening ports. Name resolutions take place during the Using names for referring ports provides a more intu- TCP three-way handshake, not requiring extra message itive way to refer services, instead of numbers. Service exchanges. The new TCP handshake conforms with names that formerly were bound to static well-known the standard and is fully compatible with existing TCP port numbers may continue to exist but do not need any implementations. A prototype implementation was de- more to be bound to the same ports. For instance, we veloped in Linux, paying special attention to backward can bind the names http to port 8080 and http1 to compatibility with legacy systems (kernels and applica- port 80. Clients access either port specifying their name, tions). Among the many opportunities created by the http or http1, instead of numbers 8080 and 80. Port name service, it allows services with unusual names, names are also useful for uniform and uniquely tagging known only by small communities, to remain undetected ports used by the servers of overlay networks.
    [Show full text]
  • STREAMS Vs. Sockets Performance Comparison for UDP
    STREAMS vs. Sockets Performance Comparison for UDP Experimental Test Results for Linux Brian F. G. Bidulock∗ OpenSS7 Corporation June 16, 2007 Abstract cations facilities of the kernel: With the objective of contrasting performance between Transport Layer Interface (TLI). TLI is an acronym for the STREAMS and legacy approaches to system facilities, a com- Transport Layer Interface [TLI92]. The TLI was the non- parison is made between the tested performance of the Linux Na- standard interface provided by SVR4, later standardized by tive Sockets UDP implementation and STREAMS TPI UDP and X/Open as the XTI described below. This interface is now XTIoS UDP implementations using the Linux Fast-STREAMS deprecated. package [LfS]. X/Open Transport Interface (XTI). XTI is an acronym for the X/Open Transport Interface [XTI99]. The X/Open Trans- 1 Background port Interface is a standardization of the UNIX System V UNIX networking has a rich history. The TCP/IP protocol suite Release 4, Transport Layer Interface. The interface con- was first implemented by BBN using Sockets under a DARPA re- sists of an Application Programming Interface implemented search project on 4.1aBSD and then incorporated by the CSRG as a shared object library. The shared object library com- into 4.2BSD [MBKQ97]. Lachmann and Associates (Legent) sub- municates with a transport provider Stream using a service sequently implemented one of the first TCP/IP protocol suite primitive interface called the Transport Provider Interface. based on the Transport Provider Interface (TPI) [TLI92] and While XTI was implemented directly over STREAMS de- STREAMS [GC94]. Two other predominant TCP/IP implemen- vices supporting the Transport Provider Interface (TPI) tations on STREAMS surfaced at about the same time: Wollon- [TPI99] under SVR4, several non-traditional approaches ex- gong and Mentat.
    [Show full text]
  • Inside Mac OS X: System Overview Is Intended for Anyone Who Wants to Develop Software for Mac OS X
    Inside Mac OS X System Overview July 2002 Apple Computer, Inc. and TrueType are trademarks of THE WARRANTY AND REMEDIES SET © 2000–2002 Apple Computer, Inc. Apple Computer, Inc., registered in FORTH ABOVE ARE EXCLUSIVE AND All rights reserved. the United States and other countries. IN LIEU OF ALL OTHERS, ORAL OR WRITTEN, EXPRESS OR IMPLIED. No No part of this publication may be Carbon, Quartz, and Velocity Engine Apple dealer, agent, or employee is reproduced, stored in a retrieval are trademarks of Apple Computer, authorized to make any modification, system, or transmitted, in any form or Inc. extension, or addition to this warranty. by any means, mechanical, electronic, Enterprise Objects, Enterprise Objects photocopying, recording, or Framework, NeXT, Objective-C, and Some states do not allow the exclusion or otherwise, without prior written OpenStep are registered trademarks limitation of implied warranties or permission of Apple Computer, Inc., of NeXT Software, Inc., registered in liability for incidental or consequential with the following exceptions: Any the United States and other countries. damages, so the above limitation or person is hereby authorized to store Java and all Java-based trademarks exclusion may not apply to you. This documentation on a single computer are trademarks or registered warranty gives you specific legal rights, for personal use only and to print trademarks of Sun Microsystems, and you may also have other rights which copies of documentation for personal Inc., in the United States and other vary from state to state. use provided that the documentation countries. contains Apple’s copyright notice. Netscape Navigator is a trademark of The Apple logo is a trademark of Netscape Communications Apple Computer, Inc.
    [Show full text]
  • Network Programming and Protocol Design What Is a Socket?
    Network Programming and Protocol Design What Is A Socket? • Sockets (also known as Berkeley Sockets) is an application programming interface (API) to the operating system’s TCP/IP stack • Used on all Unixes • Windows Sockets are similar • Some Unixes have XTI (X/Open Transport Interface) and TLI (Transport Layer Interface) (not covered here) • Can be used for other protocol stacks than TCP/IP (not covered here) 2 Socket Functions • Socket functions: – Allocating resources: socket, bind – Opening connections: accept, connect – Closing connections: close, shutdown – Sending and receiving: read, write, recv, send, recvfrom, sendto, recvmsg, sendmsg – Other: getsockopt, setsockopt, getsockname, getpeername • Utilities – Network information (host names, addresses) – Byte order 3 Byte Order • Addresses and port number must be in network byte order – Also known as big-endian, most-significant byte first • Conversion routines for 16 and 32-bit integers: – htons, htonl ("host to network short/long") – ntohs, ntohl ("network to host short/long") • Null macros ("#define htons(x)(x)") on big-endian systems 4 Address Structures struct in_addr { in_addr_t s_addr; /* IPv4 address, network byte order */ }; struct sockaddr_in { sa_family_t sin_family; /* AF_INET */ in_port_t sin_port; /* 16-bit port, network byte order*/ struct in_addr sin_addr; /* IPv4 address */ char sin_zero[8]; /* always zero */ }; 5 Address Functions • From string to address: unsigned long inet_addr(const char *cp) – returns -1 on error • From address to string: char* inet_ntoa(struct
    [Show full text]
  • Kernel Programming
    Inside Mac OS X Kernel Programming November 2002 Apple Computer, Inc. NeXT and OpenStep are trademarks © 2001–2002 Apple Computer, Inc. of NeXT Software, Inc., registered in All rights reserved. the United States and other countries. No part of this publication may be Java and all Java-based trademarks reproduced, stored in a retrieval are trademarks or registered system, or transmitted, in any form or trademarks of Sun Microsystems, by any means, mechanical, electronic, Inc., registsered in the United States photocopying, recording, or and other countries. otherwise, without prior written OpenGL is a registered trademark of permission of Apple Computer, Inc., Silicon Graphics, Inc. with the following exceptions: Any Simultaneously published in the person is hereby authorized to store United States and Canada. documentation on a single computer Even though Apple has reviewed this for personal use only and to print manual, APPLE MAKES NO copies of documentation for personal WARRANTY OR REPRESENTATION, use provided that the documentation EITHER EXPRESS OR IMPLIED, WITH contains Apple’s copyright notice. RESPECT TO THIS MANUAL, ITS The Apple logo is a trademark of QUALITY, ACCURACY, Apple Computer, Inc. MERCHANTABILITY, OR FITNESS Use of the “keyboard” Apple logo FOR A PARTICULAR PURPOSE. AS A (Option-Shift-K) for commercial RESULT, THIS MANUAL IS SOLD “AS purposes without the prior written IS,” AND YOU, THE PURCHASER, ARE consent of Apple may constitute ASSUMING THE ENTIRE RISK AS TO trademark infringement and unfair ITS QUALITY AND ACCURACY. competition in violation of federal and state laws. IN NO EVENT WILL APPLE BE LIABLE FOR DIRECT, INDIRECT, SPECIAL, No licenses, express or implied, are INCIDENTAL, OR CONSEQUENTIAL granted with respect to any of the DAMAGES RESULTING FROM ANY technology described in this book.
    [Show full text]
  • Quickspecs HP Tru64 UNIX Operating System V5.1B
    RETIRED: Retired products sold prior to the November 1, 2015 separation of Hewlett-Packard Company into Hewlett Packard Enterprise Company and HP Inc. may have older product names and model numbers that differ from current models. QuickSpecs HP Tru64 UNIX Operating System V5.1B Overview Introduction The Tru64 UNIX® Operating System is a 64-bit advanced kernel architecture based on Carnegie-Mellon University's Mach V2.5 kernel design, with components from Berkeley Software Distribution (BSD) 4.3 and 4.4, UNIX System V, and other sources. Tru64 UNIX is an implementation of OSF/1 R1.0, R1.1, and R1.2 technology, and the Motif® graphical user interface and programming environment. Tru64 UNIX provides symmetric multiprocessing (SMP), real-time support, and numerous features to assist application programmers in developing applications that use shared libraries, multithread support, and memory-mapped files. The full features of the X Window System, Version 11, Release 6.5 (X11R6.5) from The Open Group are supported. Tru64 UNIX complies with other standards and industry specifications, including major standards sponsored by The Open Group, POSIX, FIPS, and the System V Interface Definition (SVID). By providing support for SVID, Tru64 UNIX supports System V applications. The Tru64 UNIX Operating System is compatible with Berkeley 4.3 programming interfaces. DA - 11939 Worldwide — Version 1 — April 8, 2004 Page 1 RETIRED: Retired products sold prior to the November 1, 2015 separation of Hewlett-Packard Company into Hewlett Packard Enterprise Company and HP Inc. may have older product names and model numbers that differ from current models. QuickSpecs HP Tru64 UNIX Operating System V5.1B System Management Tru64 UNIX System Management (SysMan) includes an easy to use suite of tools for installing, configuring, and managing a Tru64 UNIX system.
    [Show full text]
  • Open Transport/TCP Developer Note
    Open Transport/TCP Developer Note Revision 1.1b14 1/18/96 TCP Dev Note, Rev 1.1b14 1/18/96 page 1 Copyright © 1994-1996 Apple Computer, Inc. All rights reserved. Introduction ...............................................................................................................4 Installation ...........................................................................................................4 Getting started with the Open Transport/TCP API..................................... 4 Opening TCP, UDP, and RawIP Endpoints ...................................................4 Using RawIP......................................................................................................... 5 Internet Addresses ..............................................................................................5 Internet Address Information.......................................................................... 5 Domain Name Resolver (DNR)...................................................................... 5 IP Multicast........................................................................................................... 7 MacTCP Backward Compatibility.................................................................... 7 MDEV Backward Compatibility, SLIP and PPP ............................................7 Known Problems ................................................................................................7 Configuration ............................................................................................................8
    [Show full text]