diff options
author | Micael Karlberg <[email protected]> | 2011-09-23 14:14:19 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-09-23 14:14:19 +0200 |
commit | 9c686fc1fc0628549af91b84866b824e9a3f5f15 (patch) | |
tree | 45326ccba347081a20a7e81827519df9c1e21c78 /lib/inets/src/http_lib | |
parent | 7b304f5e886b03ad9cb52dc84169d06bfc9ea378 (diff) | |
parent | 12f3b441fc138a6e7a5bc09b8973bd55cba8b5be (diff) | |
download | otp-9c686fc1fc0628549af91b84866b824e9a3f5f15.tar.gz otp-9c686fc1fc0628549af91b84866b824e9a3f5f15.tar.bz2 otp-9c686fc1fc0628549af91b84866b824e9a3f5f15.zip |
Merge branch 'dev' of super:otp into bmk/megaco/fix_version_and_notes/OTP-9550
Diffstat (limited to 'lib/inets/src/http_lib')
-rw-r--r-- | lib/inets/src/http_lib/http_util.erl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/inets/src/http_lib/http_util.erl b/lib/inets/src/http_lib/http_util.erl index 5511ed388d..973600d7be 100644 --- a/lib/inets/src/http_lib/http_util.erl +++ b/lib/inets/src/http_lib/http_util.erl @@ -104,6 +104,22 @@ convert_netscapecookie_date([_D,_A,_Y, $ , Sec = list_to_integer([S1,S2]), {{Year,Month,Day},{Hour,Min,Sec}}; +%% Example: Tue Jan 01 08:00:01 2036 GMT +convert_netscapecookie_date([_D,_A,_Y, $ , + M,O,N, $ , + D1,D2, $ , + H1,H2, $:, + M1,M2, $:, + S1,S2, $ , + Y1,Y2,Y3,Y4, $ |_Rest]) -> + Year = list_to_integer([Y1,Y2,Y3,Y4]), + Day = list_to_integer([D1,D2]), + Month = convert_month([M,O,N]), + Hour = list_to_integer([H1,H2]), + Min = list_to_integer([M1,M2]), + Sec = list_to_integer([S1,S2]), + {{Year,Month,Day},{Hour,Min,Sec}}; + %% Sloppy... convert_netscapecookie_date([_D,_A,_Y, $,, _SP, D1,D2,_DA, |