Get rid of nasty utf-8 characters in printout
[gitweb.git] / cache.h
diff --git a/cache.h b/cache.h
index f0eecb3d4cbb9b44f5689cf9698cc70a289b3d82..a42ce7e3f5e9c67560a22b81aba5734e9425be66 100644 (file)
--- a/cache.h
+++ b/cache.h
 #define NORETURN
 #endif
 
+/*
+ * Intensive research over the course of many years has shown that
+ * port 9418 is totally unused by anything else. Or
+ *
+ *     Your search - "port 9418" - did not match any documents.
+ *
+ * as www.google.com puts it.
+ */
+#define DEFAULT_GIT_PORT 9418
+
 /*
  * Environment variables transition.
  * We accept older names for now but warn.
@@ -211,6 +221,9 @@ const char *show_date(unsigned long time, int timezone);
 void parse_date(const char *date, char *buf, int bufsize);
 void datestamp(char *buf, int bufsize);
 
+extern int setup_ident(void);
+extern char *get_ident(const char *name, const char *email, const char *date_str);
+
 static inline void *xmalloc(size_t size)
 {
        void *ret = malloc(size);