Unix Network Programming, Volume 1: The Sockets Networking API Hardcover Book

PUGET SOUND AUCTIONS
(15073)
Angemeldet als privater Verkäufer
Verbraucherschützende Vorschriften, die sich aus dem EU-Verbraucherrecht ergeben, finden daher keine Anwendung. Der eBay-Käuferschutz gilt dennoch für die meisten Käufe.
US $30,00
Ca.CHF 23,82
Artikelzustand:
Sehr gut
Ganz entspannt. Rückgaben akzeptiert.
Versand:
US $6,00 (ca. CHF 4,76) Economy Shipping.
Standort: Kent, Washington, USA
Lieferung:
Lieferung zwischen Mi, 19. Nov und Fr, 21. Nov nach 94104 bei heutigem Zahlungseingang
Wir wenden ein spezielles Verfahren zur Einschätzung des Liefertermins an – in diese Schätzung fließen Faktoren wie die Entfernung des Käufers zum Artikelstandort, der gewählte Versandservice, die bisher versandten Artikel des Verkäufers und weitere ein. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
Rücknahme:
14 Tage Rückgabe. Käufer zahlt Rückversand. Wenn Sie ein eBay-Versandetikett verwenden, werden die Kosten dafür von Ihrer Rückerstattung abgezogen.
Zahlungen:
     Diners Club

Sicher einkaufen

eBay-Käuferschutz
Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:286938198202

Artikelmerkmale

Artikelzustand
Sehr gut: Buch, das nicht neu aussieht und gelesen wurde, sich aber in einem hervorragenden Zustand ...
Brand
Unbranded
Book Title
Unix Network Programming, Volume 1: The Sockets Networking API (
MPN
Does not apply
ISBN
9780131411555
Kategorie

Über dieses Produkt

Product Information

In this book, the authors offer unprecedented, start-to-finish guidance on making the most of sockets, the de facto standard for UNIX network programming. The authors begin by introducing virtually every basic capability of TCP and UDP sockets, including socket functions and options, I/O multiplexing, and name and address conversions. They present detailed coverage of the Posix.1g standard for sockets and the Posix threads. They also introduce advanced techniques for: establishing IPv4/IPv6 interoperability, implementing non-blocking I/O, routing sockets, broadcasting and multicasting, IP options, multithreading, advanced name and address conversions, UNIX domain protocols, and raw sockets. Teaches students how to choose among today's leading client/server design approaches, including TCP iterative, concurrent, preforked and prethreaded servers. The Internet/intranet revolution has dramatically increased the demand for students graduating with a sophisticated understanding of network programming APIs, especially sockets. This book helps students achieve that goal.

Product Identifiers

Publisher
Addison Wesley Professional
ISBN-10
0131411551
ISBN-13
9780131411555
eBay Product ID (ePID)
5907235

Product Key Features

Number of Pages
1024 Pages
Publication Name
Unix Network Programming : the Sockets Networking Api
Language
English
Subject
Operating Systems / Unix, Web / Web Programming, Networking / General
Publication Year
2003
Type
Textbook
Author
W. Richard Stevens, Bill Fenner, Andrew M. Rudoff, Richard W. Stevens
Subject Area
Computers
Series
Addison-Wesley Professional Computing Ser.
Format
Hardcover

Dimensions

Item Height
1.5 in
Item Weight
57.6 Oz
Item Length
9.5 in
Item Width
7.4 in

Additional Product Features

Edition Number
3
Target Audience
Scholarly & Professional
Illustrated
Yes
Edition Description
Revised Edition
Table of Content
Foreword. Preface. I. INTRODUCTION AND TCP/IP. 1. Introduction. Introduction. A Simple Daytime Client. Protocol Independence. Error Handling: Wrapper Functions. A Simple Daytime Server. Roadmap to Client/Server Examples in the Text. OSI Model. BSD Networking History. Test Networks and Hosts. Unix Standards. 64-Bit Architectures. Summary. 2. The Transport Layer: TCP, UDP, and SCTP. Introduction. The Big Picture. User Datagram Protocol (UDP). Transmission Control Protocol (TCP). Stream Control Transmission Protocol (SCTP). TCP Connection Establishment and Termination. TIME_WAIT State. SCTP Association Establishment and Termination. Port Numbers. TCP Port Numbers and Concurrent Servers. Buffer Sizes and Limitations. Standard Internet Services. Protocol Usage by Common Internet Applications. Summary. II. ELEMENTARY SOCKETS. 3. Sockets Introduction. Introduction. Socket Address Structures. Value-Result Arguments. Byte Ordering Functions. Byte Manipulation Functions. inet_aton, inet_addr, and inet_ntoa Functions. inet_pton and inet_ntop Functions. sock_ntop and Related Functions. readn, writen, and readline Functions. Summary. 4. Elementary TCP Sockets. Introduction. socket Function. connect Function. bind Function. listen Function. accept Function. fork and exec Functions. Concurrent Servers. close Function. getsockname and getpeername Functions. Summary. 5. TCP Client/Server Example. Introduction. TCP Echo Server: main Function. TCP Echo Server: str_echo Function. TCP Echo Client: main Function. TCP Echo Client: str_cli Function. Normal Startup. Normal Termination. POSIX Signal Handling. Handling SIGCHLD Signals. wait and waitpid Functions. Connection Abort before accept Returns. Termination of Server Process. SIGPIPE Signal. Crashing of Server Host. Crashing and Rebooting of Server Host. Shutdown of Server Host. Summary of TCP Example. Data Format. Summary. 6. I/O Multiplexing: The select and poll Functions. Introduction. I/O Models. select Function. str_cli Function (Revisited). Batch Input and Buffering. shutdown Function. str_cli Function (Revisited Again). TCP Echo Server (Revisited). pselect Function. poll Function. TCP Echo Server (Revisited Again). Summary. 7. Socket Options. Introduction. getsockopt and setsockopt Functions. Checking if an Option Is Supported and Obtaining the Default. Socket States. Generic Socket Options. IPv4 Socket Options. ICMPv6 Socket Option. IPv6 Socket Options. TCP Socket Options. SCTP Socket Options. fcntl Function. Summary. 8. Elementary UDP Sockets. Introduction. recvfrom and sendto Functions. UDP Echo Server: main Function. UDP Echo Server: dg_echo Function. UDP Echo Client: main Function. UDP Echo Client: dg_cli Function. Lost Datagrams. Verifying Received Response. Server Not Running. Summary of UDP Example. connect Function with UDP. dg_cli Function (Revisited). Lack of Flow Control with UDP. Determining Outgoing Interface with UDP. TCP and UDP Echo Server Using select. Summary. 9. Elementary SCTP Sockets. Introduction. Interface Models. sctp_bindx Function. sctp_connectx Function. sctp_getpaddrs Function. sctp_freepaddrs Function. sctp_getladdrs Function. sctp_freeladdrs Function. sctp_sendmsg Function. sctp_recvmsg Function. sctp_opt_info Function. sctp_peeloff Function. shutdown Function. Notifications. Summary. 10. SCTP Client/Server Example. Introduction. SCTP One-to-Many-Style Streaming Echo Server: main Function. SCTP One-to-Many-Style Streaming Echo Client: main Function. SCTP Streaming Echo Client: str_cli Function. Exploring Head-of-Line Blocking. Controlling the Number of Streams. Controlling Termination. Summary. 11. Name and Address Conversions. Introduction. Domain Name System (DNS). gethostbyname Function. gethostbyaddr Function. getservbyname and getservbyport Functions. getaddrinfo Function. gai_strerror Function. freeaddrinfo Function. getaddrinfo Function: IPv6. getaddrinfo Function: Example

Artikelbeschreibung des Verkäufers

Info zu diesem Verkäufer

PUGET SOUND AUCTIONS

99,4% positive Bewertungen41 Tsd. Artikel verkauft

Mitglied seit Jun 2005
Angemeldet als privater VerkäuferDaher finden verbraucherschützende Vorschriften, die sich aus dem EU-Verbraucherrecht ergeben, keine Anwendung. Der eBay-Käuferschutz gilt dennoch für die meisten Käufe.
Shop besuchenKontakt

Detaillierte Verkäuferbewertungen

Durchschnitt in den letzten 12 Monaten
Genaue Beschreibung
4.9
Angemessene Versandkosten
4.7
Lieferzeit
5.0
Kommunikation
4.9

Verkäuferbewertungen (15'716)

Alle Bewertungenselected
Positiv
Neutral
Negativ
  • t***r (75)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    • prompt, courteous response • item, exactly as described if not better • the Product was packaged, highly secure, and safe for the trip exceeded your regular shipper! • seller kept me completely updated with tracking and any updates! • I cannot say enough good things about this seller six stars should be available for this level of seller! ⭐️⭐️⭐️⭐️⭐️⭐️
  • i***t (8)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    Seller was responding fast and sent out the item soon after purchase. Item was as advertised and packaged securely. For some reason ebay made it cross the US from west to east two times, but at no fault from the seller. I was very happy with the price I paid for. Would recommend the seller for further purchases.
  • w***0 (1)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    Bad Experience! Buy from someone else or retail if you have options. Shipping was good Packaging was low Not as described; list pre-owned-Good; should have been Poor. The battery was dead. I bought tools & a battery but the watch band broke the 3rd time I picked it up; I never wore it. Value negative; it was a chore and garbage that I paid for Seller's response felt flippant and aggressive: "So you broke it and its our fault somehow?" This person scares me and now I am afraid of ebay.
    Antwort von pugetsoundauctions- Verkäufer pugetsoundauctions hat auf Bewertung reagiert.- Verkäufer pugetsoundauctions hat auf Bewertung reagiert.
    They took a watch apart then said they threw it away. Then proceeded to tell me since they broke it I was getting a negative feedback.. good luck in the future if they happen to purchase from you..