没有合适的资源?快使用搜索试试~ 我知道了~
首页Network Programming with Go 无水印pdf
Network Programming with Go 无水印pdf

Network Programming with Go 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
资源详情
资源评论
资源推荐

Network
Programming
with Go
Essential Skills for Using and
Securing Networks
—
Jan Newmarch

Network Programming
with Go
Essential Skills for Using and
Securing Networks
Jan Newmarch

Network Programming with Go: Essential Skills for Using and Securing Networks
Jan Newmarch
Oakleigh, Victoria
Australia
ISBN-13 (pbk): 978-1-4842-2691-9 ISBN-13 (electronic): 978-1-4842-2692-6
DOI 10.1007/978-1-4842-2692-6
Library of Congress Control Number: 2017941517
Copyright © 2017 by Jan Newmarch
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the
material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation,
broadcasting, reproduction on microfilms or in any other physical way, and transmission or information
storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now
known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol
with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only
in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the
trademark.
The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are
not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to
proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication,
neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or
omissions that may be made. The publisher makes no warranty, express or implied, with respect to the
material contained herein.
Managing Director: Welmoed Spahr
Editorial Director: Todd Green
Acquisitions Editor: Steve Anglin
Development Editor: Matthew Moodie
Technical Reviewer: Ronald Petty
Coordinating Editor: Mark Powers
Copy Editor: Kezia Endsley
Compositor: SPi Global
Indexer: SPi Global
Artist: SPi Global
Cover image designed by Freepik
Distributed to the book trade worldwide by Springer Science+Business Media New York,
233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail
orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC
and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM
Finance Inc is a Delaware corporation.
For information on translations, please e-mail rights@apress.com, or visit http://www.apress.com/
rights-permissions.
Apress titles may be purchased in bulk for academic, corporate, or promotional use. eBook versions and
licenses are also available for most titles. For more information, reference our Print and eBook Bulk Sales
web page at http://www.apress.com/bulk-sales.
Any source code or other supplementary material referenced by the author in this book is available to
readers on GitHub via the book's product page, located at www.apress.com/9781484226919. For more
detailed information, please visit http://www.apress.com/source-code.
Printed on acid-free paper

iii
Contents at a Glance
About the Author ���������������������������������������������������������������������������������������������������xvii
About the Technical Reviewer ��������������������������������������������������������������������������������xix
Preface �������������������������������������������������������������������������������������������������������������������xxi
■Chapter 1: Architecture ����������������������������������������������������������������������������������������� 1
■Chapter 2: Overview of the Go Language ������������������������������������������������������������ 21
■Chapter 3: Socket-Level Programming ���������������������������������������������������������������� 29
■Chapter 4: Data Serialization ������������������������������������������������������������������������������� 57
■Chapter 5: Application-Level Protocols ��������������������������������������������������������������� 87
■Chapter 6: Managing Character Sets and Encodings ���������������������������������������� 107
■Chapter 7: Security �������������������������������������������������������������������������������������������� 121
■Chapter 8: HTTP ������������������������������������������������������������������������������������������������� 137
■Chapter 9: Templates ����������������������������������������������������������������������������������������� 161
■Chapter 10: A Complete Web Server ������������������������������������������������������������������ 175
■Chapter 11: HTML ���������������������������������������������������������������������������������������������� 193
■Chapter 12: XML ������������������������������������������������������������������������������������������������ 199
■Chapter 13: Remote Procedure Call������������������������������������������������������������������� 209
■Chapter 14: REST ����������������������������������������������������������������������������������������������� 221
■Chapter 15: WebSockets ������������������������������������������������������������������������������������ 247
Afterword �������������������������������������������������������������������������������������������������������������� 267
Index ��������������������������������������������������������������������������������������������������������������������� 269

v
Contents
About the Author ���������������������������������������������������������������������������������������������������xvii
About the Technical Reviewer ��������������������������������������������������������������������������������xix
Preface �������������������������������������������������������������������������������������������������������������������xxi
■Chapter 1: Architecture ����������������������������������������������������������������������������������������� 1
Protocol Layers ����������������������������������������������������������������������������������������������������������������� 1
ISO OSI Protocol �������������������������������������������������������������������������������������������������������������������������������������� 2
OSI Layers �����������������������������������������������������������������������������������������������������������������������������������������������2
TCP/IP Protocol ��������������������������������������������������������������������������������������������������������������������������������������� 3
Some Alternative Protocols �������������������������������������������������������������������������������������������������������������������� 3
Networking ����������������������������������������������������������������������������������������������������������������������� 3
Gateways �������������������������������������������������������������������������������������������������������������������������� 4
Packet Encapsulation ������������������������������������������������������������������������������������������������������� 4
Connection Models ����������������������������������������������������������������������������������������������������������� 5
Connection Oriented ������������������������������������������������������������������������������������������������������������������������������� 5
Connectionless ��������������������������������������������������������������������������������������������������������������������������������������� 5
Communications Models �������������������������������������������������������������������������������������������������� 5
Message Passing ������������������������������������������������������������������������������������������������������������������������������������ 5
Remote Procedure Call ��������������������������������������������������������������������������������������������������������������������������� 6
Distributed Computing Models ����������������������������������������������������������������������������������������� 7
Client-Server System ������������������������������������������������������������������������������������������������������� 8
Client-Server Application�������������������������������������������������������������������������������������������������� 8
Server Distribution ����������������������������������������������������������������������������������������������������������� 9
剩余283页未读,继续阅读













安全验证
文档复制为VIP权益,开通VIP直接复制

评论1