Giter Site home page Giter Site logo

tun2sockskit's Introduction

Tun2SocksKit

This repository is a wrapper and a build workflow for hev-socks5-tunnel

Original Developer (arror)

This code originally belonged to arror. I'm just maintaining and updating it.

If you appreciate this repo, give him a thanks.

Usage

You only need to import Tun2SocksKit

import Tun2SocksKit

Running Tun2SocksKit

Use a file URL to run it

let code = Socks5Tunnel.run(withConfig: .file(path: localConfigFileURL))

Or the contents of the config file as a string

let code = Socks5Tunnel.run(withConfig: .string(content: stringConfigContent))

You can run it non-blocking as well

Socks5Tunnel.run(withConfig: .string(content: stringConfigContent)) { code in
    // Do stuff with code
}

Stats

To get stats you need to call

let stats = Socks5Tunnel.stats

Both packet count and bytes transmitted/received are provided

print(stats.up.packets)
print(stats.up.bytes)
print(stats.down.packets)
print(stats.down.bytes)

Config

tunnel:
  mtu: 9000

socks5:
  port: 7890
  address: ::1
  udp: 'udp'

misc:
  task-stack-size: 20480
  connect-timeout: 5000
  read-write-timeout: 60000
  log-file: stderr
  log-level: debug
  limit-nofile: 65535

tun2sockskit's People

Contributors

arror avatar ebrahimtahernejad avatar hifrankyoung 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.