Skip to content

Releases: haruki-nikaidou/IPicVision

IpicVision v1.2.0

09 Mar 17:31
Compare
Choose a tag to compare

Refactor the code and use web::Data to replace high-level function.

Optimised performance.

New Config Format

Simplify the configuration. Now you can set images like:

{
    "listen_addr": "127.0.0.1:9090",
    "traffic_matchers": [
      {
        "role": {
          "ipv4_exact": "192.168.1.1"
        },
        "image": [
          "https://example.com/1.jpg",
          "https://example.com/2.jpg"
        ]
      }
    ]
}

or

{
    "listen_addr": "127.0.0.1:9090",
    "ip_info_enable": false,
    "traffic_matchers": [
      {
        "role": "default",
        "image": "https://example.com/1.jpg"
      }
    ]
}

for fixed result.

1.0.0 Linux Only

06 Jan 06:17
Compare
Choose a tag to compare
use static openssl