Dieser Artikel ist nicht mehr vorrätig.

Unix-Netzwerkprogrammierung: Die Steckdosen - Hardcover, von Stevens W. Richard; - Gut-

Ursprünglicher Text
Unix Network Programming: The Sockets - Hardcover, by Stevens W. Richard; - Good
BooksRun
(203365)
Angemeldet als gewerblicher Verkäufer
US $30,85
Ca.EUR 26,55
Artikelzustand:
Gut
Nicht mehr vorrätig3 verkauft
Versand:
Kostenlos USPS Media MailTM.
Standort: Philadelphia, Pennsylvania, USA
Lieferung:
Lieferung zwischen Fr, 17. Okt und Do, 23. Okt 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:
30 Tage Rückgabe. Kostenloser Rückversand.
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

  • Gratis Rückversand im Inland
  • Punkte für jeden Kauf und Verkauf
  • Exklusive Plus-Deals
Der Verkäufer ist für dieses Angebot verantwortlich.
eBay-Artikelnr.:125866043414
Zuletzt aktualisiert am 10. Okt. 2025 14:13:31 MESZAlle Änderungen ansehenAlle Änderungen ansehen

Artikelmerkmale

Artikelzustand
Gut: Buch, das gelesen wurde, sich aber in einem guten Zustand befindet. Der Einband weist nur sehr ...
Book Title
Unix Network Programming: The Sockets Networking Api (1)
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

Rechtliche Informationen des Verkäufers

Ich versichere, dass alle meine Verkaufsaktivitäten in Übereinstimmung mit allen geltenden Gesetzen und Vorschriften der EU erfolgen.
Info zu diesem Verkäufer

BooksRun

99,4% positive Bewertungen926.083 Artikel verkauft

Mitglied seit Aug 2014
Angemeldet als gewerblicher Verkäufer
BooksRun is an online seller of new and used books and textbooks. Best prices for books since 2014, we're a one-stop shop for all sorts of books, from fiction to textbooks. We're constantly expanding ...
Mehr anzeigen
Shop besuchenKontakt

Detaillierte Verkäuferbewertungen

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

Beliebte Kategorien in diesem Shop

Verkäuferbewertungen (226.630)

Alle Bewertungenselected
Positiv
Neutral
Negativ
  • 7***j (851)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    I recently purchased an item from this eBay seller, and I couldn't be happier with the experience. From the prompt communication to the fast shipping, everything was handled with utmost professionalism. The item arrived exactly as described and was well-packaged to ensure its safety during transit. The seller was courteous and responsive, making the entire transaction smooth and hassle-free. I highly recommend this seller to anyone looking for quality products and excellent service.
  • c***m (445)- Bewertung vom Käufer.
    Letzte 6 Monate
    Bestätigter Kauf
    WOW!; I cannot believe this 4 Days to Hawaii! ; AAA+++; Excellent Service; Great Pricing; Fast Delivery-Faster Than Expected to Hawaii!; Shipped 04/19, Sat, Received 04/24 Thur to Hawaii using free shipping; USPS Ground Mail, Paperback Book in Good Condition--Better Than Described ; TLC Packaging; Excellent Seller Communication, Sends updates . Highly Recommended!, Thank you very much!
  • c***e (34)- Bewertung vom Käufer.
    Letzter Monat
    Bestätigter Kauf
    The textbook was better than described. It looks like brand new! The price was appropriate for the type of textbook that it is. The appearance and quality of the textbook was impeccable. The shipping took about 2 weeks to arrive, but the textbook was well worth the wait. Seller packaged my textbook beautifully which ensured that it arrived unharmed and in perfect condition. Excellent seller! I would purchase more items from this seller in the future!
Alle Bewertungen ansehen

Produktbewertungen & Rezensionen

5.0
4 Produktbewertungen
  • 4 Nutzer bewerten dieses Produkt mit 5 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 4 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 3 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 2 von 5 Sternen
  • 0 Nutzer bewerten dieses Produkt mit 1 von 5 Sternen

Would recommend

Good value

Compelling content

Relevanteste Rezensionen

  • Best Unix networking book

    Great networking resource for Unix system. The bible of Networking.

    Bestätigter Kauf: JaZustand: GebrauchtVerkauft von: second.sale

  • Good book!

    It seems like a new one.

    Bestätigter Kauf: JaZustand: GebrauchtVerkauft von: jenoconnell1010