diff options
author | Kostis Sagonas <[email protected]> | 2016-10-04 16:47:58 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2016-10-04 16:47:58 +0200 |
commit | 52598d49c267110dff69f40411ff9a217cd9041d (patch) | |
tree | 0ff8be239791427f50cec2efb7cb45aac745dc95 /lib/inets/src/http_lib | |
parent | 5618dedfe1da25c7941052cdc1bc648e22ad3fbe (diff) | |
download | otp-52598d49c267110dff69f40411ff9a217cd9041d.tar.gz otp-52598d49c267110dff69f40411ff9a217cd9041d.tar.bz2 otp-52598d49c267110dff69f40411ff9a217cd9041d.zip |
Replace ref() with reference() in inets files
This supersedes PR #1185 (submitted by @KrzysiekJ) that changed
all occurrences of ref() with reference() in inets files.
However, there is little point in having these types only in comments.
So, these types are now exposed as type declarations for the record
fields they appear. While at it, uncommented more commented out type
declarations and declared types for records defined in the affected
modules and header files.
Some type-unfriendly and obsolete code related to supporting code
ungrades with a really old OTP release was also removed.
Diffstat (limited to 'lib/inets/src/http_lib')
-rw-r--r-- | lib/inets/src/http_lib/http_internal.hrl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/inets/src/http_lib/http_internal.hrl b/lib/inets/src/http_lib/http_internal.hrl index ae92b5df8f..991417cb36 100644 --- a/lib/inets/src/http_lib/http_internal.hrl +++ b/lib/inets/src/http_lib/http_internal.hrl @@ -71,7 +71,7 @@ 'last-modified', other=[] % list() - Key/Value list with other headers }). - +-type http_response_h() :: #http_response_h{}. %%% Request headers -record(http_request_h,{ @@ -118,5 +118,6 @@ 'last-modified', other=[] % list() - Key/Value list with other headers }). +-type http_request_h() :: #http_request_h{}. -endif. % -ifdef(http_internal_hrl). |