Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Sat, 15 Sep 2012 15:53:41 +0200
From: Szabolcs Nagy <nsz@...t70.net>
To: musl@...ts.openwall.com
Subject: Re: musl 0.9.5 release and new website

* Rich Felker <dalias@...ifal.cx> [2012-09-15 04:12:27 -0400]:
> website, http://www.musl-libc.org, which is hopefully a lot more

i would http redirect the non 'www.' prefixed host
to the 'www.' prefixed one

with thttpd you can do it by using a musl-libc.org
cgi script like

#!/bin/sh
U="http://www.musl-libc.org$PATH_INFO"
cat <<EOF
Location: $U
Status: 301 Moved Permanently
Content-Type: text/html

<html><head><title>Moved</title></head><body>
moved to <a href="$U">$U</a>
</body></html>
EOF

> Post-release priorities are adding the last of the missing Linux
> syscalls, md5 crypt, and the long-elusive scheduling priority

i attached an md5 crypt implementation

i set the key limit to 30000 but that
can be lowered

i'm not sure about the copyright notice in the middle
as the code was rewritten from scratch so nothing
was actually copied
but the old bsd code is the specification itself
and it is copyrighted:

http://svnweb.FreeBSD.org/base/head/lib/libcrypt/crypt-md5.c?view=markup

View attachment "crypt_md5.c" of type "text/x-csrc" (8119 bytes)

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.