CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Fri, 22 Aug 2025 05:28:51 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080919005920
location: https://web.archive.org/web/20080919005920/https://github.com/feeds/dustin/commits/memcached/master
server-timing: captures_list;dur=1.204386, exclusion.robots;dur=0.033949, exclusion.robots.policy;dur=0.014707, esindex;dur=0.018759, cdx.remote;dur=18.286668, LoadShardBlock;dur=382.055515, PetaboxLoader3.datanode;dur=48.347311, PetaboxLoader3.resolve;dur=50.722038
x-app-server: wwwb-app223
x-ts: 302
x-tr: 446
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app223; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Fri, 22 Aug 2025 05:28:52 GMT
content-type: application/atom+xml; charset=utf-8
content-length: 7323
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Fri, 19 Sep 2008 00:59:20 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 3.21242
x-archive-orig-etag: "74a2614b3933ec1f7c1db0cd9b997c98"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 7323
cache-control: max-age=1800
x-archive-guessed-content-type: text/xml
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 19 Sep 2008 00:59:20 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 19 Sep 2008 00:59:20 GMT", ; rel="memento"; datetime="Fri, 19 Sep 2008 00:59:20 GMT", ; rel="next memento"; datetime="Thu, 25 Dec 2008 06:09:17 GMT", ; rel="last memento"; datetime="Sat, 14 Nov 2009 19:09:29 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 52_5_20080918233151_crawl108-c/52_5_20080919005824_crawl103.arc.gz
server-timing: captures_list;dur=1.486206, exclusion.robots;dur=0.017520, exclusion.robots.policy;dur=0.008944, esindex;dur=0.010375, cdx.remote;dur=154.672824, LoadShardBlock;dur=348.588750, PetaboxLoader3.datanode;dur=135.984715, PetaboxLoader3.resolve;dur=296.498287, load_resource;dur=135.902628
x-app-server: wwwb-app223
x-ts: 200
x-tr: 665
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
accept-ranges: bytes
tag:github.com,2008:/feeds/dustin/commits/memcached/master
Recent Commits to memcached:master
2008-06-19T08:29:10-07:00
tag:github.com,2008:Grit::Commit/1c3c4c0d7a59ebe61ace685794789f2179c482bb
Another buffer overrun fix.
2008-06-19T08:29:10-07:00
<pre>m memcached.c
Another buffer overrun fix.</pre>
Cosimo Streppone
tag:github.com,2008:Grit::Commit/5bf5dee3754dc5cb13eeb45642a8397a89e4c617
Allocate new conn structures with calloc.
2008-06-18T12:11:50-07:00
<pre>m memcached.c
Allocate new conn structures with calloc.
Janusz Dziemidowicz reported conn->next was sometimes not initialized.
This would have been the case for any client connection, or any
listener connection that wasn't tcp.</pre>
Dustin Sallings
tag:github.com,2008:Grit::Commit/74d52354bb720d08f9554d91fd781032ad2aa8e3
Fix heap corruption when copying too much data onto an item.
2008-06-18T11:35:20-07:00
<pre>m memcached.c
Fix heap corruption when copying too much data onto an item.
(Dustin:)
I wrote a fuzz test that would consistently crash in assoc_find, but
after this change the test failed to break things and my fuzz
generator couldn't produce another breaking case.</pre>
Tomash Brechko
tag:github.com,2008:Grit::Commit/0ebdf6d38cd65cca31885e8e7e2f4c7ac4888279
Use calloc for allocating the hash table vs. malloc+memset.
2008-06-18T11:30:22-07:00
<pre>m assoc.c
Use calloc for allocating the hash table vs. malloc+memset.
calloc is already used to resize the hash table, so it's good to be
consistent here.</pre>
Dustin Sallings
tag:github.com,2008:Grit::Commit/6ec16c4ad2e8274e23d3c1c2111a8a6a2f99d3b4
Fix freesuffix corruption.
2008-06-13T09:01:12-07:00
<pre>m memcached.c
Fix freesuffix corruption.
When attempting to grow the freesuffix storage, the realloc is sized
to the number of bytes in freesuffixtotal instead of a number of
pointers of that size.
That is, the original malloc is for
sizeof(char *) * freesuffixtotal
but the realloc for growth was
freesuffixtotal * 2
On a 32-bit machine, this would have the effect of freeing half of
the freelist when an attempt was made to grow it.
The realloc is now consistent with the initial malloc.</pre>
Dustin Sallings
tag:github.com,2008:Grit::Commit/7391190f7ff652e662a490d4ca0409dc33fba283
make -k work under daemon mode (-d).
2008-06-11T20:36:09-07:00
<pre>m ChangeLog
m memcached.c
make -k work under daemon mode (-d).
git-svn-id: https://code.sixapart.com/svn/memcached/trunk/server@783 b0b603af-a30f-0410-a34e-baf09ae79d0b</pre>
dormando
tag:github.com,2008:Grit::Commit/031fab415ce7efbad450e4c3c0809f2df6313400
Document a few of the stats commands.
2008-03-03T10:45:30-08:00
<pre>m doc/protocol.txt
Document a few of the stats commands.
git-svn-id: https://code.sixapart.com/svn/memcached/trunk/server@747 b0b603af-a30f-0410-a34e-baf09ae79d0b</pre>
dormando
tag:github.com,2008:Grit::Commit/366108d785ceccb36bb9d171f53c873cea457c5b
Halve distro size ;)
2008-03-02T21:08:47-08:00
<pre>m doc/binary-protocol-plan.jpg
Halve distro size ;)
If we want the image back, fetch it from history into a doc or scratch repo.
git-svn-id: https://code.sixapart.com/svn/memcached/trunk/server@743 b0b603af-a30f-0410-a34e-baf09ae79d0b</pre>
dormando
tag:github.com,2008:Grit::Commit/e567223e565c0a01b2baaf38759b2ddb1db05096
Add -L mode to manpage.
2008-03-02T21:08:44-08:00
<pre>m doc/memcached.1
Add -L mode to manpage.
git-svn-id: https://code.sixapart.com/svn/memcached/trunk/server@742 b0b603af-a30f-0410-a34e-baf09ae79d0b</pre>
dormando
tag:github.com,2008:Grit::Commit/feed81c17d62f2b93bfc793f5ca39a73a4e094b0
Version bump (shipit's having trouble with it), and update ChangeLog
2008-03-02T21:08:40-08:00
<pre>m ChangeLog
m configure.ac
m memcached.spec
Version bump (shipit's having trouble with it), and update ChangeLog
git-svn-id: https://code.sixapart.com/svn/memcached/trunk/server@741 b0b603af-a30f-0410-a34e-baf09ae79d0b</pre>
dormando