Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
T
Titanium-Web-Proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Titanium-Web-Proxy
Commits
aa73a879
Commit
aa73a879
authored
May 31, 2018
by
Honfika
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
private method name fix + resharper rule + change develtop to master in pull request temple
parent
775c3481
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
58 additions
and
57 deletions
+58
-57
PULL_REQUEST_TEMPLATE.md
PULL_REQUEST_TEMPLATE.md
+1
-1
Titanium.Web.Proxy.sln.DotSettings
Titanium.Web.Proxy.sln.DotSettings
+1
-0
Decoder.cs
Titanium.Web.Proxy/Http2/Hpack/Decoder.cs
+6
-6
Encoder.cs
Titanium.Web.Proxy/Http2/Hpack/Encoder.cs
+50
-50
No files found.
PULL_REQUEST_TEMPLATE.md
View file @
aa73a879
Doneness:
-
[
]
Build is okay - I made sure that this change is building successfully.
-
[
]
No Bugs - I made sure that this change is working properly as expected. It doesn't have any bugs that you are aware of.
-
[
]
Branching - If this is not a hotfix, I am making this request against
develop
branch
-
[
]
Branching - If this is not a hotfix, I am making this request against
master
branch
Titanium.Web.Proxy.sln.DotSettings
View file @
aa73a879
...
...
@@ -23,6 +23,7 @@
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateInstanceFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticFields/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/PredefinedNamingRules/=PrivateStaticReadonly/@EntryIndexedValue"><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=a4ab2e69_002D4d9c_002D4345_002Dbcd1_002D5541dacf5d38/@EntryIndexedValue"><Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private" Description="Method (private)"><ElementKinds><Kind Name="METHOD" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></Policy></s:String>
<s:String x:Key="/Default/CodeStyle/Naming/CSharpNaming/UserRules/=dda2ffa1_002D435c_002D4111_002D88eb_002D1a7c93c382f0/@EntryIndexedValue"><Policy><Descriptor Staticness="Static, Instance" AccessRightKinds="Private" Description="Property (private)"><ElementKinds><Kind Name="PROPERTY" /></ElementKinds></Descriptor><Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /></Policy></s:String>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpAttributeForSingleLineMethodUpgrade/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpKeepExistingMigration/@EntryIndexedValue">True</s:Boolean>
...
...
Titanium.Web.Proxy/Http2/Hpack/Decoder.cs
View file @
aa73a879
...
...
@@ -173,7 +173,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
break
;
case
State
.
ReadMaxDynamicTableSize
:
int
maxSize
=
D
ecodeULE128
(
input
);
int
maxSize
=
d
ecodeULE128
(
input
);
if
(
maxSize
==
-
1
)
{
return
;
...
...
@@ -190,7 +190,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
break
;
case
State
.
ReadIndexedHeader
:
int
headerIndex
=
D
ecodeULE128
(
input
);
int
headerIndex
=
d
ecodeULE128
(
input
);
if
(
headerIndex
==
-
1
)
{
return
;
...
...
@@ -208,7 +208,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
case
State
.
ReadIndexedHeaderName
:
// Header Name matches an entry in the Header Table
int
nameIndex
=
D
ecodeULE128
(
input
);
int
nameIndex
=
d
ecodeULE128
(
input
);
if
(
nameIndex
==
-
1
)
{
return
;
...
...
@@ -272,7 +272,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
case
State
.
ReadLiteralHeaderNameLength
:
// Header Name is a Literal String
nameLength
=
D
ecodeULE128
(
input
);
nameLength
=
d
ecodeULE128
(
input
);
if
(
nameLength
==
-
1
)
{
return
;
...
...
@@ -388,7 +388,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
case
State
.
ReadLiteralHeaderValueLength
:
// Header Value is a Literal String
valueLength
=
D
ecodeULE128
(
input
);
valueLength
=
d
ecodeULE128
(
input
);
if
(
valueLength
==
-
1
)
{
return
;
...
...
@@ -612,7 +612,7 @@ namespace Titanium.Web.Proxy.Http2.Hpack
}
// Unsigned Little Endian Base 128 Variable-Length Integer Encoding
private
static
int
D
ecodeULE128
(
BinaryReader
input
)
private
static
int
d
ecodeULE128
(
BinaryReader
input
)
{
long
markedPosition
=
input
.
BaseStream
.
Position
;
int
result
=
0
;
...
...
Titanium.Web.Proxy/Http2/Hpack/Encoder.cs
View file @
aa73a879
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment