Giter Club home page Giter Club logo

network-programming-with-rust's Introduction

Network Programming with Rust

This is the code repository for Network Programming with Rust, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

Rust is low-level enough to provide fine-grained control over memory while providing safety through compile-time validation. This makes it uniquely suitable for writing low-level networking applications.

This book is divided into three main parts that will take you on an exciting journey: building a fully functional web server. The book starts with a solid introduction to Rust and essential networking concepts. This will lay a foundation for, and set the tone of, the entire book. It takes an in-depth look at using Rust for networking software. Starting with client-server networking using sockets to IPv4/v6, DNS, TCP, UDP, you will also learn about serializing and deserializing data using serde. The book shows how to communicate with REST servers over HTTP and implement asynchronous network programming using the Tokio stack. Given the importance of security for modern systems, you will see how Rust supports common primitives such as TLS and public key cryptography.

After reading this book, you will be more than confident enough to use Rust to build effective networking software.

Instructions and Navigation

All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

There is no code in Chapter 1

The code will look like the following:

[package]
name = "hello-rust"
version = "0.1.0"
authors = ["Foo Bar <[email protected]>"]

They are either already familiar with Rust or are planning to start learning the language They have a commercial background in software engineering using other programming languages and are aware about the tradeoffs in developing software using different programming languages They have a basic familiarity with networking concepts They can appreciate why distributed systems are important in modern computing

Related Products

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to download a free PDF copy of this book.

https://packt.link/free-ebook/9781788624893

network-programming-with-rust's People

Contributors

achanda avatar dominicpereira92 avatar jijom avatar manikandankurup-packt avatar packt-itservice avatar packtutkarshr avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

network-programming-with-rust's Issues

Chapter6, rocket is not worked.

Cargo run, got errors bellow:

    Updating crates.io index
error: failed to select a version for the requirement `ring = "^0.11.0"`
  candidate versions found which didn't match: 0.16.7, 0.16.6, 0.16.5, ...
  location searched: crates.io index
required by package `cookie v0.9.1`
    ... which is depended on by `rocket v0.3.5`
    ... which is depended on by `rocket-blog v0.1.0

Address family not supported by protocol family

cargo run 12334
Finished dev [unoptimized + debuginfo] target(s) in 0.03s
Running target/debug/mio-example 12334
thread 'main' panicked at 'Could not bind to port: Os { code: 47, kind: Uncategorized, message: "Address family not supported by protocol family" }', src/main.rs:23:55

os:macOS Monterey 12.4 (21F79)
rustc 1.65.0 (897e37553 2022-11-02)

Chapter3 - lookup_dns

https://github.com/PacktPublishing/Network-Programming-with-Rust/blob/master/Chapter03/lookup-host.rs

Could not compile the example from the book. (Also link above) Keep saying it cannot find lookup_dns. I'm on rust nightly.

However, I have managed to find a solution, so I thought I'll share it here.

First create a cargo project

cargo new lookup_dns

In the Cargo.toml, add the following to the dependencies

dns-lookup = "1.0.2"

Them add the following code:

use std::env;
use std::net::IpAddr;
use dns_lookup::lookup_host;

fn main() {
    let args: Vec<_> = env::args().collect();

    if args.len() != 2 {
        eprintln!("Please provide only one host name");
        std::process::exit(1);
    }
    else {
        let addresses: Vec<IpAddr> = lookup_host(&args[1]).unwrap();

        for address in addresses {
            println!("{}", address);
        }
    }
}

Build and execute the project

cargo build
cargo run google.co.uk

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.