BSD Sockets Programming From a Multi-Language Perspective

Author:   M. Jones
Publisher:   Cengage Learning, Inc
ISBN:  

9781584502685


Pages:   441
Publication Date:   30 September 2003
Format:   Paperback
Availability:   In Print   Availability explained
Limited stock is available. It will be ordered for you and shipped pending supplier's limited stock.

Our Price $131.87 Quantity:  
Add to Cart

Share |

BSD Sockets Programming From a Multi-Language Perspective


Add your own review!

Overview

Detailing the efficient and effective uses of the BSD Sockets API for networked application development in multiple languages, this text describes the BSD API in detail and identifying the purpose of each function, including the rarely discussed behavioural side effects of functions. A solid understanding of these issues is the difference between a novice and a professional network developer. The book then investigates the Sockets API from a variety of language perspectives. Using 6 different languages in all, including imperative languages, object-oriented languages such as Java and functional languages such as Scheme, users learn the advantages and disadvantages of each language as they relate to the Sockets API. Application development with sockets is also covered, with examples of common pitfalls and how to avoid them. Optimizations possible with the Sockets API are also detailed. The accompanying CD-ROM includes all of the source code detailed in the book as well as open source compilers, interpreters and other tools.

Full Product Details

Author:   M. Jones
Publisher:   Cengage Learning, Inc
Imprint:   Charles River Media
Dimensions:   Width: 18.80cm , Height: 3.00cm , Length: 22.80cm
Weight:   0.840kg
ISBN:  

9781584502685


ISBN 10:   1584502681
Pages:   441
Publication Date:   30 September 2003
Audience:   Professional and scholarly ,  Professional & Vocational
Format:   Paperback
Publisher's Status:   Out of Print
Availability:   In Print   Availability explained
Limited stock is available. It will be ordered for you and shipped pending supplier's limited stock.

Table of Contents

Reviews

INTRODUCTION TO SOCKETS PROGRAMMING 1 NETWORKING OVERVIEW What Is the Internet? Internet Model of Communication The IP Protocol Suite Network Layer Transport Layer Application Layer Types of Communication Stream Datagram Broadcast Multicast Packet Processing in a Network Stack Addressing IP Addresses Subnetting Introduction to IP Routing Simple Routing Example Local (Interior) Ethernet Routing Exterior Routing Network Entities Hosts Bridges Routers Gateways 2 INTRODUCTION TO SOCKETS PROGRAMMING The Sockets Programming Paradigm Ports Sockets Addressing Sample Server Source Discussion Sample Client Source Discussion Client/Server Symmetry Network Byte Order Swapping Byte Order 3 STANDARD BSD API FUNCTIONS socketFunction bindFunction listenFunction acceptFunction connectFunction recv/recvfromFunction send/sendtoFunction closeFunction htons/ntohs/htonl/ntohlFunctions inet_addr/inet_aton/inet_ntoaFunctions 4 ADVANCED SOCKETS FUNCTIONS selectFunction getsocknameFunction getpeernameFunction getsockopt/setsockoptFunctions shutdownFunction gethostname/sethostnameFunctions gethostbyaddrFunction gethostbynameFunction getservbynameFunction getservbyportFunction 5 SOCKET OPTIONS Socket Options API Sockets Layer Options TCP Layer Options IP Layer Options 6 ADVANCED SOCKETS PROGRAMMING TOPICS Out-of-Band (OOB) Data Nonblocking Sockets Determining Peer Socket Closure Resolving a Domain Name to an IP Address Writing Servers for Multi-homed Nodes Timing Out a Socket Connect Data Framing (TCP vs. UDP) Connectionless and Connected Datagram Sockets Timing Out a Read or Write Operation Determining Peer Information Determining the Protocol Argument for Socket Identifying Service Ports and Protocols Optimizing Sockets Applications Ensuring Full-Sized Segments Optimizing the Send and Receive Buffer Sizes Socket Buffer Sizes and TCP Socket Buffers and Performance Configuring the Socket Buffer Sizes Other Options Minimizing Latency with TCP_NODELAY Reading/Writing All Available Data Advantages and Disadvantages to Select Using Multiple Sockets Separating Control and Data Connections Using Stack Callbacks Using Zero-Copy Buffer Functions Using UDP instead of TCP Stack Selection Stack Configuration 8 SOCKETS PROGRAMMING PITFALLS Failing to use Function Return values Ignoring Peer Socket Closure Ignoring Endianness of Parameters in API Functions Making Protocol Framing Assumptions Causing Address in Use Error for Bind Listening on Multiple Interfaces Initial UDP Datagrams Disappearing Defensive Programming Using Safe Functions to Avoid Buffer Overflow Rigorously Checking Error Returns Rigorously Checking Input and Output Parameters Declaring String Arrays Minimizing Protocol Feedback Initializing All Variables Enabling All Compiler Warnings PART II SOCKETS PROGRAMMING FROM A MULTI-LANGUAGE PERSPECTIVE 9 NETWORK PROGRAMMING IN THE C LANGUAGE C Language Overview Origin of the C Language C Language Heritage Tools Compiler/Tools Used Networking API Used Where to Download Networking API for C Sockets API Summary Sockets API Discussion 10 NETWORK PROGRAMMING IN JAVA Java Language Overview Origin of the Java Language Java Language Heritage Tools Interpreter/Tools Used Networking API Used Where to Download Networking API for Java Sockets API Summary Sockets API Discussion Specialized Networking APIs for Java Java URL Class for HTTP 11 NETWORK PROGRAMMING IN PYTHON Python Language Overview Origin of the Python Language Python Language Heritage Tools Interpreter/Tools Used Networking API Used Where to Download Networking API for Python Sockets API Discussion Specialized Networking APIs for Python Python smtplibModule Python httplib Module Python SocketServerModule 12 NETWORK PROGRAMMING IN PERL Perl Language Overview Origin of the Perl Language Perl Language Heritage Tools Interpreter/Tools Used Networking API Used Where to Download Networking API for Perl Sockets API Discussion Specialized Networking APIs for Perl Perl Net::SMTPModule Perl LWP::SimpleModule 13 NETWORK PROGRAMMING IN RUBY Ruby Language Overview Origin of the Ruby Language Ruby Language Heritage Tools Interpreter/Tools Used Networking API Used Where to Download Networking API for Ruby Class vs. Instance Methods Sockets API Summary Sockets API Discussion Specialized Networking APIs for Ruby Ruby Net::SMTPClass Ruby Net::HTTPClass 14 NETWORK PROGRAMMING IN TCL Tcl Language Overview Origin of the Tcl Language Tcl Language Heritage Tools Interpreter/Tools Used Networking API Used Where to Download Networking API for Tcl Sockets API Discussion PART III SOFTWARE PATTERNS FROM A MULTI-LANGUAGE PERSPECTIVE 15 SOFTWARE PATTERNS INTRODUCTION Stream Server/Client Design Datagram Server/Client Design Broadcast Datagram Server/Client Design Multicast Datagram Server/Client Design Simple HTTP Server Design Simple SMTP Client Design 16 NETWORK CODE PATTERNS IN C Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Server/Client Datagram Server Datagram Client Multicast Server/Client Multicast Server Multicast Client Broadcast Server/Client Broadcast Server Broadcast Client Simple HTTP Server Simple SMTP Client 17 NETWORK CODE PATTERNS IN JAVA Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Server/Client Datagram Server Datagram Client Multicast Server/Client Multicast Server Multicast Client Simple HTTP Server Simple SMTP Client 18 NETWORK CODE PATTERNS IN PYTHON Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Server/Client Datagram Server Datagram Client Multicast Server/Client Multicast Server Multicast Client Broadcast Server/Client Broadcast Server Broadcast Client Simple HTTP Server Simple SMTP Client 19 NETWORK CODE PATTERNS IN PERL Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Server/Client Datagram Server Datagram Client Multicast Server/Client Multicast Server Multicast Client Broadcast Server/Client Broadcast Server Broadcast Client Simple HTTP Server Simple SMTP Client 20 NETWORK CODE PATTERNS IN RUBY Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Server/Client Datagram Server Datagram Client Multicast Server/Client Multicast Server Multicast Client Broadcast Server/Client Broadcast Server Broadcast Client Simple HTTP Server Simple SMTP Client 21 NETWORK CODE PATTERNS IN TCL Introduction Stream (TCP) Server/Client Stream Server Stream Client Datagram (UDP) Client Datagram Client Multicast Server/Client Multicast Server Multicast Client Broadcast (UDP) Client Simple HTTP Server Simple SMTP Client Appendix A About the CD-ROM System Requirements Operating System Requirements On the CD-ROM Software Patterns Software Tools Software License Appendix B Acronyms


Author Information

M. Tim Jones is an embedded software architect and the author of numerous books, including AI Application Programming, Second Edition (Charles River Media), BSD Sockets Programming from a Multilanguage Perspective (Charles River Media), Artifi cial Intelligence: A Systems Approach, and many articles on a variety of technical subjects. His engineering background ranges from the development of kernels for geosynchronous spacecraft to embedded systems architecture and networking protocols development. Tim is a consultant engineer for Emulex Corp. in Longmont, Colorado.

Tab Content 6

Author Website:  

Customer Reviews

Recent Reviews

No review item found!

Add your own review!

Countries Available

All regions
Latest Reading Guide

wl

Shopping Cart
Your cart is empty
Shopping cart
Mailing List