• Complain

Abhishek Chanda - Network Programming with Rust

Here you can read online Abhishek Chanda - Network Programming with Rust full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2018, publisher: Packt Publishing, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Abhishek Chanda Network Programming with Rust
  • Book:
    Network Programming with Rust
  • Author:
  • Publisher:
    Packt Publishing
  • Genre:
  • Year:
    2018
  • Rating:
    5 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 100
    • 1
    • 2
    • 3
    • 4
    • 5

Network Programming with Rust: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Network Programming with Rust" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Abhishek Chanda: author's other books


Who wrote Network Programming with Rust? Find out the surname, the name of the author of the book and a list of all author's works by series.

Network Programming with Rust — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Network Programming with Rust" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Network Programming with Rust
Build fast and resilient network servers and clients by leveraging Rust's memory-safety and concurrency features
Abhishek Chanda

BIRMINGHAM - MUMBAI Network Programming with Rust Copyright 2018 Packt - photo 1

BIRMINGHAM - MUMBAI
Network Programming with Rust

Copyright 2018 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

Commissioning Editor: Merint Mathew
Acquisition Editor: Chaitanya Nair
Content Development Editor: Vikas Tiwari
Technical Editor: Diwakar Shukla
Copy Editor: Safis Editing
Project Coordinator: Ulhas Kambali
Proofreader: Safis Editing
Indexer: Mariammal Chettiyar
Graphics: Tania Dutta
Production Coordinator: Shantanu Zagade

First published: February 2018

Production reference: 1260218

Published by Packt Publishing Ltd.
Livery Place
35 Livery Street
Birmingham
B3 2PB, UK.

ISBN 978-1-78862-489-3

www.packtpub.com


To my wife, Anasua, for being an amazing partner and friend, and also for all the diagrams in this book.
To the memory of my mother, Sikha, for her sacrifices and for exemplifying the power of determination.
maptio Mapt is an online digital library that gives you full access to over - photo 2
mapt.io

Mapt is an online digital library that gives you full access to over 5,000 books and videos, as well as industry leading tools to help you plan your personal development and advance your career. For more information, please visit our website.

Why subscribe?
  • Spend less time learning and more time coding with practical eBooks and Videos from over 4,000 industry professionals

  • Improve your learning with Skill Plans built especially for you

  • Get a free eBook or video every month

  • Mapt is fully searchable

  • Copy and paste, print, and bookmark content

PacktPub.com

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at www.PacktPub.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at service@packtpub.com for more details.

At www.PacktPub.com , you can also read a collection of free technical articles, sign up for a range of free newsletters, and receive exclusive discounts and offers on Packt books and eBooks.

Contributors
About the author

Abhishek Chanda studied computer science at IIEST Shibpur in India and electrical engineering at Rutgers University. He has lived and worked in multiple countries, working on distributed systems since 2008 at big companies such as Microsoft as well as a number smaller start-ups. Currently, he is working with DataSine in London, where he is responsible for the scalable deployment of infrastructure powering the backend systems of the DataSine platform. He contributes to a number of open source projects, including Rust.

I would like to thank Packt and their wonderful team for making this possible, especially Vikas, Chaitanya, Madhunikita, and Diwakar. I am grateful to Pradeep and all the reviewers for their insightful comments. This book would not have been possible without the support of my wife, Anasua.
About the reviewer

Pradeep R is a software professional at Gigamon. He is a technology enthusiast passionate about network programing and security, with wide experience in working on leading enterprise network switching and routing solutions and in development and deployment of traditional network security elements. Currently, he is working on next-generation network pervasive visibility solutions.

He extensively works with C, C++, Python, JavaScript, Perl, and occasionally with Java, .NET, and Rust. Pradeep has recently reviewed Rust Cookbook.

I would like to thank Vigneshwer Dhinakaran, my brother, who has shown me that boundaries exists only in our minds and they are meant to be breached. I would also like to acknowledge with gratitude my mother, Vasanthi, my grandma, Sulochana, and my sister, Deepika, for their constant encouragement and support.
Packt is searching for authors like you

If you're interested in becoming an author for Packt, please visit authors.packtpub.com and apply today. We have worked with thousands of developers and tech professionals, just like you, to help them share their insight with the global tech community. You can make a general application, apply for a specific hot topic that we are recruiting an author for, or submit your own idea.

Table of Contents
Preface

Rust has steadily become one of the most important new programming languages in recent years. Like C or C++, Rust enables the developer to write code that is low-level enough to make Rust code quickly. And since Rust is memory-safe by design, it does not allow code that can crash on a null pointer exception. These properties make it a natural choice for writing low-level networking applications. This book will enable developers to get started with writing networking applications with Rust.

Who this book is for

This book's target audience is a software engineer who is interested in writing networking software using Rust.

What this book covers

, Introduction to Client/Server Networking, starts the book with a gentle introduction to computer networking from the ground up. This includes IP addressing, TCP/UDP, and DNS. This forms the basis of our discussions in later chapters.

, Introduction to Rust and its Ecosystem, contains an introduction to Rust. This is an overall introduction that should be good enough to get the reader started. We do assume some familiarity with programming.

, TCP and UDP Using Rust, dives into using Rust for networking. We start with basic socket programming using the standard library. We then look at some crates from the ecosystem that can be used for network programming.

, Data Serialization, Deserialization, and Parsing, explains that an important aspect of networked computing is handling data. This chapter is an introduction to serializing and deserializing data using Serde. We also look at parsing using nom and other frameworks.

, Application Layer Protocols, moves up a layer to look at protocols that operate above TCP/IP. We look at a few crates to work with, such as RPC, SMTP, FTP, and TFTP.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Network Programming with Rust»

Look at similar books to Network Programming with Rust. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Network Programming with Rust»

Discussion, reviews of the book Network Programming with Rust and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.