mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 23:39:51 +03:00
43257a160b
* Tested on Solaris Express: Developer Edition, which is between Solaris 10 and 11. * Used gcc, libmng etc packages using pkg-get and blastwave's resources. * Had to build lemon and re2c manually. svn path=/trunk/netsurf/; revision=3350
69 lines
1.9 KiB
C
69 lines
1.9 KiB
C
/*
|
|
* This file is part of NetSurf, http://netsurf-browser.org/
|
|
* Licensed under the GNU General Public License,
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
* Copyright 2007 Daniel Silverstone <dsilvers@digital-scurf.org>
|
|
* Copyright 2007 Rob Kendrick <rjek@netsurf-browser.org>
|
|
*/
|
|
|
|
#include <sys/utsname.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "desktop/netsurf.h"
|
|
#include "utils/log.h"
|
|
#include "utils/useragent.h"
|
|
|
|
static const char *core_user_agent_string = NULL;
|
|
|
|
#define NETSURF_UA_FORMAT_STRING "NetSurf/%d.%d (%s; %s)"
|
|
|
|
/**
|
|
* Prepare core_user_agent_string with a string suitable for use as a
|
|
* user agent in HTTP requests.
|
|
*/
|
|
static void
|
|
user_agent_build_string(void)
|
|
{
|
|
struct utsname un;
|
|
const char *sysname = "Unknown";
|
|
const char *machine = "Unknown";
|
|
char *ua_string;
|
|
int len;
|
|
|
|
if (uname(&un) >= 0) {
|
|
sysname = un.sysname;
|
|
machine = un.machine;
|
|
}
|
|
|
|
len = snprintf(NULL, 0, NETSURF_UA_FORMAT_STRING,
|
|
netsurf_version_major,
|
|
netsurf_version_minor,
|
|
sysname,
|
|
machine);
|
|
ua_string = malloc(len + 1);
|
|
if (!ua_string) {
|
|
/** \todo this needs handling better */
|
|
return;
|
|
}
|
|
snprintf(ua_string, len + 1,
|
|
NETSURF_UA_FORMAT_STRING,
|
|
netsurf_version_major,
|
|
netsurf_version_minor,
|
|
sysname,
|
|
machine);
|
|
|
|
core_user_agent_string = ua_string;
|
|
|
|
LOG(("Built user agent \"%s\"", core_user_agent_string));
|
|
}
|
|
|
|
/* This is a function so that later we can override it trivially */
|
|
const char *
|
|
user_agent_string(void)
|
|
{
|
|
if (core_user_agent_string == NULL)
|
|
user_agent_build_string();
|
|
return core_user_agent_string;
|
|
}
|