Giter Club home page Giter Club logo

jnetcat's Introduction

jnetcat

This is a tiny program implemented in Java, similar to netcat. However, jnetcat doesn't support many options like netcat.

jnetcat walks only on client mode, and takes only one argument as a remote adderess, in the form of either tcp:host:port or unix:path.

jnetcat always uses half-close upon disconnection (similar to netcat -N behavior).

Implementation Details

In bidirectional relay, reading from both the socket and standard input are blocking. To execute both of them concurrently, you typically need threads or some I/O multiplexing mechanism. Since maxium concurrency is limited to only two, jnetcat just uses threads.

If the standard input side reaches EOF first, jnetcat initiates a half-close on the socket via shutdown call. Once the remote side also completes, jnetcat finishes the connection. It is essential to use half-close to signal EOF to the remote side and receive the remaining remote packets to completion.

If the connection is closed from the remote side, it's desirable to immediately quit reading from standard input. However, whether you can interrupt a blocking read from standard input is OS or implementation dependent.

In JDK 17, it seems possible to interrupt standard input on Linux but not on Windows. Even on Linux, interrupting System.in seems not possible on JDK 17. Therefore, jnetcat uses nio's FileChannel instead which implements InterruptibleChannel interface.

jnetcat's People

Contributors

nu774 avatar

Watchers

 avatar  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.