Coding.md

August 5, 2016 ยท View on GitHub

How to code for network Back

  • Head File
    • <sys/types.h>
    • <sys/socket.h>
    • <netinet/in.h>
    • <errno.h>
    • <stdio.h>
    • <stdlib.h>
  • Socket
  • Read
  • Write
  • Close

Server

  • Bind
  • Listen
  • Accept
  • Model of Sever

Client

  • Connect

Multiplex

  • Select
  • Poll

IO

  • IO

Contents

  1. 1How to code for network Back
  2. 1.1Server
  3. 1.2Client
  4. 1.3Multiplex
  5. 1.4IO