X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Finclude%2Fgnunet_time_lib.h;h=93e6cd00f84996fa6727329ed00cf910d04d9000;hb=6e626937fd5133188d2bd06f280a1b889219eef2;hp=c7a06ba23bbf7ee921f99ed6816c5db89efc1fcf;hpb=2770964bdd8f33c081e3b22c7295e7949e525188;p=oweals%2Fgnunet.git diff --git a/src/include/gnunet_time_lib.h b/src/include/gnunet_time_lib.h index c7a06ba23..93e6cd00f 100644 --- a/src/include/gnunet_time_lib.h +++ b/src/include/gnunet_time_lib.h @@ -14,6 +14,8 @@ You should have received a copy of the GNU Affero General Public License along with this program. If not, see . + + SPDX-License-Identifier: AGPL3.0-or-later */ /** @@ -365,7 +367,8 @@ GNUNET_TIME_absolute_get_remaining (struct GNUNET_TIME_Absolute future); * assuming it continues at the same speed */ struct GNUNET_TIME_Relative -GNUNET_TIME_calculate_eta (struct GNUNET_TIME_Absolute start, uint64_t finished, +GNUNET_TIME_calculate_eta (struct GNUNET_TIME_Absolute start, + uint64_t finished, uint64_t total); @@ -565,6 +568,34 @@ unsigned int GNUNET_TIME_time_to_year (struct GNUNET_TIME_Absolute at); +/** + * A configuration object. + */ +struct GNUNET_CONFIGURATION_Handle; + + +/** + * Obtain the current time and make sure it is monotonically + * increasing. Guards against systems without an RTC or + * clocks running backwards and other nasty surprises. Does + * not guarantee that the returned time is near the current + * time returned by #GNUNET_TIME_absolute_get(). Two + * subsequent calls (within a short time period) may return the + * same value. Persists the last returned time on disk to + * ensure that time never goes backwards. As a result, the + * resulting value can be used to check if a message is the + * "most recent" value and replays of older messages (from + * the same origin) would be discarded. + * + * @param cfg configuration, used to determine where to + * store the time; user can also insist RTC is working + * nicely and disable the feature + * @return monotonically increasing time + */ +struct GNUNET_TIME_Absolute +GNUNET_TIME_absolute_get_monotonic (const struct GNUNET_CONFIGURATION_Handle *cfg); + + #if 0 /* keep Emacsens' auto-indent happy */ { #endif