view mcabber/hgcset.sh @ 1747:c4f67e2e675f

Randomize reconnection delay Conforming to rfc3920bis, 4.5: "The time that expires before an entity first seeks to reconnect MUST be randomized" (We should still increase the delay if the reconnection keeps failing.)
author Mikael Berthe <mikael@lilotux.net>
date Thu, 11 Mar 2010 22:27:36 +0100
parents 41c26b7d2890
children e8f2db654e67
line wrap: on
line source

#! /bin/sh

if [ ! -f logprint.h ]; then
  echo "You are not in the mcabber directory" >&2
  exit 1
fi

if which hg > /dev/null 2>&1; then
  cs=$(hg id 2> /dev/null | cut -d' ' -f1)
  if test $? -eq 0; then
    if [ x"$cs" != x ]; then
      grep -q "$cs" hgcset.h > /dev/null 2>&1 || \
        echo "#define HGCSET \"$cs\"" > hgcset.h
      exit 0
    fi
  fi
fi

echo > hgcset.h