Giter Site home page Giter Site logo

simple-udp-server's Introduction

UDP Server in C

This repo contains a simple UDP server/client written in C. The primary purpose was for education and this should not be used in anything real. The server is well documented with comments.

Installation

If on MacOS:

$ brew install netcat

We need to use netcat instead of telnet since telnet does not support the UDP protocol.

Building the server

$ make server && ./server

Now our UDP server should be running on port 8888. We can test it out with the netcat client by opening a new terminal and running:

$ netcat -v localhost 8888 -u
  • -v will use verbose mode
  • -u will use UDP protocol

Once the client is connected you can type random words and it will get sent back to you.

$ hello
hello

Using Our Own Client

Start the server in one screen:

$ make server && ./server

Open a new tab and start the client:

$ make client && ./client

Then start typing messages.

Resources

simple-udp-server's People

Contributors

theorwa avatar spencercdixon avatar

Watchers

James Cloos avatar

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.