<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libfetch/fetch.h, branch releng/14.4</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.4</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=releng%2F14.4'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2023-08-16T17:54:16Z</updated>
<entry>
<title>Remove $FreeBSD$: two-line .h pattern</title>
<updated>2023-08-16T17:54:16Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2023-08-16T17:54:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=b3e7694832e81d7a904a10f525f8797b753bf0d3'/>
<id>urn:sha1:b3e7694832e81d7a904a10f525f8797b753bf0d3</id>
<content type='text'>
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
</content>
</entry>
<entry>
<title>lib: further adoption of SPDX licensing ID tags.</title>
<updated>2017-11-26T02:00:33Z</updated>
<author>
<name>Pedro F. Giffuni</name>
<email>pfg@FreeBSD.org</email>
</author>
<published>2017-11-26T02:00:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=5e53a4f90f82c4345f277dd87cc9292f26e04a29'/>
<id>urn:sha1:5e53a4f90f82c4345f277dd87cc9292f26e04a29</id>
<content type='text'>
Mainly focus on files that use BSD 2-Clause license, however the tool I
was using mis-identified many licenses so this was mostly a manual - error
prone - task.

The Software Package Data Exchange (SPDX) group provides a specification
to make it easier for automated tools to detect and summarize well known
opensource licenses. We are gradually adopting the specification, noting
that the tags are considered only advisory and do not, in any way,
superceed or replace the license texts.
</content>
</entry>
<entry>
<title>Add a file descriptor in struct url for netrc</title>
<updated>2017-02-20T00:14:31Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2017-02-20T00:14:31Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=d8713bf36156f6c6179cc989fc370a7f9a0ca062'/>
<id>urn:sha1:d8713bf36156f6c6179cc989fc370a7f9a0ca062</id>
<content type='text'>
When using libfetch in an application that drops privileges when fetching
like pkg(8) then user complain because the application does not read anymore
${HOME}/.netrc. Now a caller can prepare a fd to the said file and manually
assign it to the structure.

It is also a first step to allow to capsicumize libfetch applications

Reviewed by:	allanjude, des
Approved by:	des
Differential Revision:	https://reviews.freebsd.org/D9678
</content>
</entry>
<entry>
<title>Add support for arbitrary http requests</title>
<updated>2014-06-05T22:16:26Z</updated>
<author>
<name>Baptiste Daroussin</name>
<email>bapt@FreeBSD.org</email>
</author>
<published>2014-06-05T22:16:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c41991303c3700f36ab27b62d563b5228c2442d6'/>
<id>urn:sha1:c41991303c3700f36ab27b62d563b5228c2442d6</id>
<content type='text'>
Submitted by:	Alex Hornung &lt;alex@alexhornung.com&gt;
Reviewed by:	des
Obtained from:	Dragonfly
MFC after:	3 week
</content>
</entry>
<entry>
<title>latin1 -&gt; utf8</title>
<updated>2011-10-19T11:43:51Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2011-10-19T11:43:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=578153f1baebab6c3b2e4ff3ee0cb55d275996b7'/>
<id>urn:sha1:578153f1baebab6c3b2e4ff3ee0cb55d275996b7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update copyright dates and strip my middle name.</title>
<updated>2011-09-27T18:57:26Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2011-09-27T18:57:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=6337341d81b73968f691c7a62d4d3209d16b7fa5'/>
<id>urn:sha1:6337341d81b73968f691c7a62d4d3209d16b7fa5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add support for HTTP 1.1 If-Modified-Since behavior.</title>
<updated>2008-12-15T08:27:44Z</updated>
<author>
<name>Murray Stokely</name>
<email>murray@FreeBSD.org</email>
</author>
<published>2008-12-15T08:27:44Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=7f92799f678efdf44f0f4d3322f49498749e4468'/>
<id>urn:sha1:7f92799f678efdf44f0f4d3322f49498749e4468</id>
<content type='text'>
fetch(1) accepts a new argument -i &lt;file&gt; that if specified will cause
the file to be downloaded only if it is more recent than the mtime of
&lt;file&gt;.

libfetch(3) accepts the mtime in the url structure and a flag to
indicate when this behavior is desired.

PR:		bin/87841
Submitted by:	Jukka A. Ukkonen &lt;jau@iki.fi&gt; (partially)
Reviewed by:	des, ru
MFC after:	3 weeks
</content>
</entry>
<entry>
<title>Update copyright years.</title>
<updated>2004-09-21T18:35:21Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2004-09-21T18:35:21Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=2cbbf9dac9829e7e3d2e1f150dc78901b67829ae'/>
<id>urn:sha1:2cbbf9dac9829e7e3d2e1f150dc78901b67829ae</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Surround prototypes with __BEGIN_DECLS / __END_DECLS.</title>
<updated>2002-07-22T16:11:39Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2002-07-22T16:11:39Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=190c185e2295421a0657be7e69798bedd29db4aa'/>
<id>urn:sha1:190c185e2295421a0657be7e69798bedd29db4aa</id>
<content type='text'>
PR:		misc/40399
MFC after:	3 days
</content>
</entry>
<entry>
<title>Reindent, and add parentheses to return statements.  Some functions in</title>
<updated>2002-02-05T22:13:51Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2002-02-05T22:13:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e19e6098b3beddfc5475b44809c28d8a4e800025'/>
<id>urn:sha1:e19e6098b3beddfc5475b44809c28d8a4e800025</id>
<content type='text'>
ftp.c and http.c now have exceedingly long lines due to deep nesting;
this will be corrected by reorganizing the code in a later revision.
</content>
</entry>
</feed>
