diff options
author | Dan Williams <dcbw@redhat.com> | 2008-06-24 13:11:42 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2008-06-24 13:11:42 -0400 |
commit | 6702e2a15992f4cb85dfa7ac8214125eb0a2bb2d (patch) | |
tree | b880a0d10278ee1c6f2b8d233e3357b8f4bce70b /src/sm_genid.c | |
parent | 2a827d26cfb10dc6b1203b77c0cc91dc838d97a3 (diff) |
Bug #14949: Don't use gethostbyname() for client IDs.
gethostbyname() will hit the network, which leads to DNS timeouts, which
leads to fail. Just use UUIDs.
Diffstat (limited to 'src/sm_genid.c')
-rw-r--r-- | src/sm_genid.c | 23 |
1 files changed, 21 insertions, 2 deletions
diff --git a/src/sm_genid.c b/src/sm_genid.c index 1d1e0a3..6f90a48 100644 --- a/src/sm_genid.c +++ b/src/sm_genid.c @@ -1,4 +1,3 @@ -/* $Xorg: sm_genid.c,v 1.4 2001/02/09 02:03:30 xorgcvs Exp $ */ /* Copyright 1993, 1998 The Open Group @@ -25,7 +24,6 @@ used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. */ -/* $XFree86: xc/lib/SM/sm_genid.c,v 3.17 2003/07/09 15:27:28 tsi Exp $ */ /* * Author: Ralph Mor, X Consortium @@ -78,11 +76,31 @@ in this Software without prior written authorization from The Open Group. #define TCPCONN #endif +#if defined(HAVE_LIBUUID) +#include <uuid/uuid.h> +#endif + char * SmsGenerateClientID (smsConn) SmsConn smsConn; { +#if defined(HAVE_LIBUUID) + char *id; + char temp[256]; + uuid_t uuid; + + uuid_generate(uuid); + + temp[0] = '2'; + temp[1] = '\0'; + uuid_unparse_lower(uuid, &temp[1]); + + if ((id = malloc (strlen (temp) + 1)) != NULL) + strcpy (id, temp); + + return id; +#else #if defined(TCPCONN) || defined(STREAMSCONN) static const char hex[] = "0123456789abcdef"; char hostname[256]; @@ -187,4 +205,5 @@ SmsGenerateClientID (smsConn) #else return (NULL); #endif +#endif } |