diff options
author | Micael Karlberg <[email protected]> | 2012-08-17 11:36:28 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-08-17 11:36:28 +0200 |
commit | 1105b3f693535a7c1f2578dedf8ccb95bf262d0d (patch) | |
tree | f4b21e26fb82de8114504ff045c0b5779c70afb3 /lib/inets/src/tftp/tftp.erl | |
parent | cd20b76c9acc276c57e5892aa3968fdb359816b9 (diff) | |
parent | 9125e9158a7547e51c94276aec6b98e9424c0c68 (diff) | |
download | otp-1105b3f693535a7c1f2578dedf8ccb95bf262d0d.tar.gz otp-1105b3f693535a7c1f2578dedf8ccb95bf262d0d.tar.bz2 otp-1105b3f693535a7c1f2578dedf8ccb95bf262d0d.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/inets/src/tftp/tftp.erl')
-rw-r--r-- | lib/inets/src/tftp/tftp.erl | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/lib/inets/src/tftp/tftp.erl b/lib/inets/src/tftp/tftp.erl index 0d7ae1a89e..1621add246 100644 --- a/lib/inets/src/tftp/tftp.erl +++ b/lib/inets/src/tftp/tftp.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2005-2011. All Rights Reserved. +%% Copyright Ericsson AB 2005-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -224,20 +224,6 @@ service_info/1 ]). --ifdef('OTP-R14B-COMPILER'). - --export([behaviour_info/1]). - -behaviour_info(callbacks) -> - [{prepare, 6}, - {open, 6}, - {read, 1}, - {write, 2}, - {abort, 3}]; -behaviour_info(_) -> - undefined. - --else. -type peer() :: {PeerType :: inet | inet6, PeerHost :: inet:ip_address(), @@ -280,8 +266,6 @@ behaviour_info(_) -> -callback abort(Code :: error_code(), string(), State :: term()) -> 'ok'. --endif. - -include("tftp.hrl"). |