mod_http_upload: Add/fix function specifications

This commit is contained in:
Holger Weiss 2015-10-26 22:30:58 +01:00
parent b5a09f8b15
commit 3e7ee6af6d
1 changed files with 9 additions and 1 deletions

View File

@ -719,6 +719,12 @@ iq_disco_info(Lang, Name) ->
%% HTTP request handling.
-spec store_file(file:filename_all(), binary(),
integer() | undefined,
integer() | undefined,
binary(), binary(), boolean())
-> ok | {ok, [{binary(), binary()}], binary()} | {error, term()}.
store_file(Path, Data, FileMode, DirMode, GetPrefix, LocalPath, Thumbnail) ->
case do_store_file(Path, Data, FileMode, DirMode) of
ok when Thumbnail ->
@ -747,7 +753,9 @@ store_file(Path, Data, FileMode, DirMode, GetPrefix, LocalPath, Thumbnail) ->
Err
end.
-spec do_store_file(file:filename_all(), binary(), integer(), integer())
-spec do_store_file(file:filename_all(), binary(),
integer() | undefined,
integer() | undefined)
-> ok | {error, term()}.
do_store_file(Path, Data, FileMode, DirMode) ->