trisulrp 3.2.5 → 3.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/lib/trisulrp/trp.pb.rb +2 -0
- data/lib/trisulrp/trp.proto +6 -4
- data/trisulrp.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ec6459fab014c77c8e4b04f2ed3ea824105a072f
|
4
|
+
data.tar.gz: 7d29e381ff4e9986c1238c1368a2896fb82562c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ddea5ad6b5693fc9f77979751fbd9191e853b8b39f24371fb42ff2259efcb0ad29eb0935a1cdc668f91299bc119a63e636c1f1c40718b34d6234ff0a947b8c39
|
7
|
+
data.tar.gz: 44ee2214f588aaa4f0347cb815258b5734a0a9cc8f79e74df547ca53c8bc26133313330b9f907d7380176db670fba1b1f550314c37e35308af2d8a8636b776f6
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.2.
|
1
|
+
3.2.6
|
data/lib/trisulrp/trp.pb.rb
CHANGED
@@ -665,6 +665,8 @@ module TRP
|
|
665
665
|
optional ::TRP::KeyT, :any_ip, 16
|
666
666
|
repeated ::TRP::KeyT, :ip_pair, 17
|
667
667
|
optional :bool, :approx_count_only, 18, :default => false
|
668
|
+
repeated :string, :exclude_iplist, 19
|
669
|
+
optional :bool, :invert_regex, 20, :default => false
|
668
670
|
end
|
669
671
|
|
670
672
|
class QueryResourcesResponse
|
data/lib/trisulrp/trp.proto
CHANGED
@@ -625,15 +625,17 @@ message QueryResourcesRequest {
|
|
625
625
|
optional KeyT source_port=6;
|
626
626
|
optional KeyT destination_ip=7;
|
627
627
|
optional KeyT destination_port=8;
|
628
|
-
optional string uri_pattern=9;
|
629
|
-
optional string userlabel_pattern=10;
|
630
|
-
repeated string regex_uri=12;
|
631
|
-
repeated string idlist=13;
|
628
|
+
optional string uri_pattern=9; /// DEPRECATED: use regex_uri for everything
|
629
|
+
optional string userlabel_pattern=10; /// DEPRECATED: uri_pattern will search both URI and USERLABEL
|
630
|
+
repeated string regex_uri=12; /// cant be combined with others
|
631
|
+
repeated string idlist=13; /// resource ID list
|
632
632
|
optional bool resolve_keys=14 [default=true];
|
633
633
|
optional KeyT any_port=15;
|
634
634
|
optional KeyT any_ip=16;
|
635
635
|
repeated KeyT ip_pair=17; // array of 2 ips
|
636
636
|
optional bool approx_count_only=18[default=false]; // count-star only over time interval
|
637
|
+
repeated string exclude_iplist=19; /// Exclude these IPs, cant be used with other IP fields
|
638
|
+
optional bool invert_regex=20[default=false]; /// Invert the regex RE2 cant reject
|
637
639
|
}
|
638
640
|
|
639
641
|
/// QueryResourceResponse
|
data/trisulrp.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
|
-
# stub: trisulrp 3.2.
|
5
|
+
# stub: trisulrp 3.2.6 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "trisulrp"
|
9
|
-
s.version = "3.2.
|
9
|
+
s.version = "3.2.6"
|
10
10
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
12
12
|
s.require_paths = ["lib"]
|
13
13
|
s.authors = ["vivek"]
|
14
|
-
s.date = "2018-01-
|
14
|
+
s.date = "2018-01-15"
|
15
15
|
s.description = "This gem deals about the trisul remote protocol"
|
16
16
|
s.email = "vivek_rajagopal@yahoo.com"
|
17
17
|
s.extra_rdoc_files = [
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: trisulrp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01-
|
11
|
+
date: 2018-01-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: protobuf
|