User bortzmeyer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T05:14:50Zhttp://stackoverflow.com/feeds/user/15625http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1794426/why-is-separate-getaddrinfo-like-connect-not-refactored-into-a-theoretical/1803569#18035691Answer by bortzmeyer for Why is separate getaddrinfo-like() + connect() not refactored into a (theoretical) connect_by_name() ?bortzmeyer2009-11-26T13:05:57Z2009-11-26T13:05:57Z<p>There are several questions in your question. For instance, why not
standardizing an API with such <code>connect_by_name</code>? That would certainly
be a good idea. It would not fit every purpose (see the DNS example
from R Samuel Klatchko) but for the typical network program, it would
be OK. A paper exploring such APIs is "<a href="http://christianvogt.mailup.net/pub/2009/vogt-2009-name-oriented-sockets.pdf" rel="nofollow">Simplifying Internet Applications Development
With A Name-Oriented Sockets Interface</a>" by Christian Vogt. Note
that another difficulty for such an API would be "callback"
applications, for instance a SIP client asking to be called back: the
application has no easy way to know its own name and therefore often
prefer to be called back by address, despite the problems it make, for
instance with NAT.</p>
<p>Now, another question is "Is it possible to build such
<code>connect_by_name</code> subroutine today?" Partly yes (with the caveats
mentioned by caf) but, if written in userspace, in an ordinary
library, it would not be completely "name-oriented" since the Unix
kernel still manages the connections using IP addresses. For instance,
I would expect a "real" <code>connect_by_name</code> routine to be able to
survive renumbering (for instance because a mobile host renumbered),
which is quite difficult to do in userspace.</p>
<p>Finally, yes, it already exists a lot of libraries with similar
semantics. For a HTTP client (the most common case for a program whose
network abilities are not the main feature, for instance a XML
processor), you have <a href="http://www.webdav.org/neon/" rel="nofollow">Neon</a> and <a href="http://curl.haxx.se/libcurl/" rel="nofollow">libcURL</a>. With libcURL, you can
simply write things like:</p>
<pre>
#define URL "http://www.velib.paris.fr/service/stationdetails/42"
...
curl_easy_setopt(curl, CURLOPT_URL, URL);
result = curl_easy_perform(curl);
</pre>
<p>which is even higher-layer than <code>connect_by_name</code> since it uses an
URL, not a domain name.</p>
http://stackoverflow.com/questions/609083/what-is-an-xml-parser-using-expat/609742#6097420Answer by bortzmeyer for What is an XML parser? Using Expatbortzmeyer2009-03-04T08:46:00Z2009-11-24T12:14:01Z<p>Well, you chose the most complicated XML parser (event-driven parsers are more difficult to handle). Why Expat and not <a href="http://xmlsoft.org/" rel="nofollow">libxml</a>?</p>
http://stackoverflow.com/questions/1774293/fast-concurrent-checking-of-soa-dns-records-for-co-za-domains/1781770#17817700Answer by bortzmeyer for Fast concurrent checking of SOA DNS records for .co.za domainsbortzmeyer2009-11-23T08:23:04Z2009-11-23T08:23:04Z<p>If the service offered on the Web
"limits consecutive checks for a given IP", it is probably for good reasons (both to preserve the system and to make life more difficult for speculators). Calling it "archaic" certainly will not help.</p>
<p>Also, a lot of DNS requests may be seen as a violation of the terms of service and/or as a dictionary attack and may (disclaimer: I do not know the policies of co.za) lead to blacklisting.</p>
http://stackoverflow.com/questions/1755807/subdomains-and-dns/1768953#17689530Answer by bortzmeyer for Subdomains and DNSbortzmeyer2009-11-20T07:50:39Z2009-11-20T07:50:39Z<p>Since you apparently do not control the name servers, your choices are quite limited. Nevertheless, every <strong>serious</strong> DNS hoster provide you with a API (see for instance <a href="http://www.slicehost.com/articles/2008/3/26/announcing-the-slicehost-api" rel="nofollow">Slicehost's API</a>). So, you may use this API and write a small program to update the DNS data.</p>
<p>(Foot note: handling paying customers when you do not even control the name servers seem... bad)</p>
http://stackoverflow.com/questions/1755807/subdomains-and-dns/1768949#17689490Answer by bortzmeyer for Subdomains and DNSbortzmeyer2009-11-20T07:48:17Z2009-11-20T07:48:17Z<p>Since you apparently do not control the name servers, your choices are quite limited. One possibility is to use a wildcard DNS record:</p>
<pre>
* A 192.0.2.1
</pre>
<p>where the star will replace every name. Not ideal (inexisting domains will also appear).</p>
http://stackoverflow.com/questions/1654993/a-bare-bones-dns-server/1660540#16605402Answer by bortzmeyer for A bare-bones DNS server.bortzmeyer2009-11-02T10:46:30Z2009-11-02T10:46:30Z<p>That's big for homework! Your teacher is ambitious. Implementing DNS
requires reading at least ten complicated RFC (not mentioning DNSSEC...) Do
<strong>not</strong> limit yourself to RFC 1034 and 1035, there are <strong>mandatory</strong>
RFC after (such as 2181 and 2671).</p>
<p>Is it an authoritative name server or a recursive one?</p>
<p>Do you have to do it from scratch? If not, I strongly suggest to start
with the <a href="http://code.google.com/p/evldns/" rel="nofollow">evldns</a> library, which allows you to write an
anthoritative name server in 200 lines of C.</p>
<p>Otherwise, the usual advice applies: read source code (I suggest
<a href="http://www.nlnetlabs.nl/projects/nsd/" rel="nofollow">nsd</a> for an authoritative server and <a href="http://www.unbound.net/" rel="nofollow">unbound</a> for a recursive
one).</p>
http://stackoverflow.com/questions/1593925/how-do-tell-if-a-user-hits-my-site-from-my-free-domain-name/1606143#16061430Answer by bortzmeyer for how do tell if a user hits my site from my free domain namebortzmeyer2009-10-22T09:49:24Z2009-10-22T09:49:24Z<p>I do not see why using referrers is useful and there was no reason to accept any answer with them. The domain name used by the client browser is available as the <code>Host:</code> HTTP field and you can get it from PHP with <code>$_SERVER["HTTP_HOST"]</code>.</p>
http://stackoverflow.com/questions/233721/dns-domain-name-syntax-examples/1587319#15873190Answer by bortzmeyer for DNS domain name syntax examples.bortzmeyer2009-10-19T07:06:30Z2009-10-19T07:06:30Z<p>The recommended reading is <a href="http://www.ietf.org/rfc/rfc2181.txt" rel="nofollow">RFC 2181</a>, whose section 11 explains well the issue.</p>
<p>Otherwise, for an example, see <code>maps-to-nonascii.rfc-test.net</code>. This name is an alias for a name with non-ASCII characters.</p>
http://stackoverflow.com/questions/1562954/public-wildcard-domain-name-to-resolve-to-127-0-0-1/1564682#15646821Answer by bortzmeyer for Public Wildcard Domain Name To Resolve To 127.0.0.1bortzmeyer2009-10-14T07:02:41Z2009-10-14T07:02:41Z<p>Why not using the literal IP address in the URL?</p>
<ul>
<li><code>http://127.0.0.1/</code> (old IPv4)</li>
<li><code>http://[::1]/</code> (new IPv6) </li>
</ul>
http://stackoverflow.com/questions/1547935/is-there-a-way-to-forward-a-domain-name-to-a-specific-folder-via-dns/1553815#15538150Answer by bortzmeyer for Is there a way to forward a domain name to a specific folder via DNS?bortzmeyer2009-10-12T10:28:35Z2009-10-12T10:28:35Z<p>Duplicate of <strong>many</strong> other questions. You should search before posting.</p>
<ul>
<li><a href="http://stackoverflow.com/questions/94820/dns-route-dns-for-subfolder-to-different-server">Route DNS for subfolder to different server?</a></li>
<li><a href="http://stackoverflow.com/questions/1197573/domain-pointing">Domain pointing</a></li>
<li>...</li>
</ul>
http://stackoverflow.com/questions/1505886/url-routing-from-domain-com-dir-to-otherdomain-com/1508592#15085920Answer by bortzmeyer for URL routing, from domain.com/dir/ to otherDomain.com?bortzmeyer2009-10-02T09:33:48Z2009-10-02T09:33:48Z<p>It is not possible at all with the DNS. You will have to set up a HTTP redirection (no experience with IIS so I cannot help here, just suggest you to drop the "dns" tag).</p>
http://stackoverflow.com/questions/1495541/rest-payload-max-size/1499548#14995483Answer by bortzmeyer for REST payload max size?bortzmeyer2009-09-30T17:26:39Z2009-09-30T17:26:39Z<p>As Will Hartung said, there is no limit in the standard (<a href="http://www.ietf.org/rfc/rfc2616.txt" rel="nofollow">RFC 2616</a>). But every implementation has its own limits. A few examples:</p>
<ul>
<li>Two megabytes for Tomcat (you can change it with <a href="http://tomcat.apache.org/tomcat-5.5-doc/config/http.html" rel="nofollow">maxPostSize</a>)</li>
<li>Two megabytes for PHP (you can change it with <a href="http://www.php.net/manual/en/ini.core.php#ini.post-max-size" rel="nofollow"><code>post_max_size</code></a>)</li>
<li>Two megabytes for Apache itself (you can change it with <a href="http://httpd.apache.org/docs/2.0/mod/core.html#limitrequestbody" rel="nofollow">LimitRequestBody</a>)</li>
</ul>
http://stackoverflow.com/questions/384332/a-program-to-kill-long-running-runaway-programs1A program to kill long-running runaway programsbortzmeyer2008-12-21T10:47:28Z2009-09-30T06:00:21Z
<p>I manage Unix systems where, sometimes, programs like CGI scripts run forever, sometimes eating a lot of CPU time and wasting resources. </p>
<p>I want a program (typically invoked from cron) which can kill these runaways, based on the following criteria (combined with AND and OR):</p>
<ul>
<li>Name (given by a regexp)</li>
<li>CPU time used</li>
<li>elapsed time (for programs which are blocked on an I/O)</li>
</ul>
<p>I do not really know what to type in a search engine for this sort of program. I certainly could write it myself in Python but I'm lazy and there is may be a good program already existing?</p>
<p>(I did not tag my question with a language name since a program in Perl or Ruby or whatever would work as well)</p>
http://stackoverflow.com/questions/1494372/asn-1-parser-in-c-python/1494811#14948111Answer by bortzmeyer for asn.1 parser in C/Pythonbortzmeyer2009-09-29T20:40:49Z2009-09-29T20:40:49Z<p>Never tried them but:</p>
<ul>
<li><a href="http://asn1c.sourceforge.net/" rel="nofollow">asn1c</a></li>
<li><a href="http://svn.debian.org/wsvn/collab-maint/deb-maint/snacc/" rel="nofollow">snacc</a></li>
</ul>
<p>Both seems to do what you want (C, not Python).</p>
http://stackoverflow.com/questions/388930/using-the-name-resolver-of-resolv-h-with-ipv61Using the name resolver of resolv.h with IPv6bortzmeyer2008-12-23T14:07:40Z2009-09-28T22:10:43Z
<p>I write or modify programs which perform name resolution and need a
good control of the process. So I do not use <code>getaddrinfo()</code>, I go
deeper and use <code>res_query()</code> / <code>res_send()</code> / etc in <code>resolv.h</code>, documented
in resolver(3). </p>
<p>Although not documented, the common way to set the resolver used is to
update <code>_res.nsaddr_list</code>. But this array, defined in resolv.h, stores
<code>struct sockaddr_in</code>, that is IPv4 addresses only. (IPv6 addresses
are <code>struct sockaddr_in6</code>, a family-independant system would use <code>struct sockaddr</code>.)</p>
<p>I'm looking for a way (preferrably portable, at least among the
various Unix) to tell <code>_res</code> that I want also IPv6 addresses.</p>
<p>Apparently, a long time ago, there was in FreeBSD a <code>_res_ext</code> with this
ability but I cannot find it anymore in a recent FreeBSD 7 (<code>grep
_res_ext /usr/include/resolv.h</code> finds nothing). You can still find
<a href="http://www.squid-cache.org/~hno/changesets/squid3/patches/5775.patch" rel="nofollow">code which uses it (try yourself with Google Codesearch</a>).</p>
<p>Thanks to Alnitak, I noticed it is apparently now <code>_res._ext</code> and not <code>.res_ext</code>. I wonder where these sort of things are documented or announced... I have no idea how portable <code>_res._ext</code> is. I can find it on Debian and FreeBSD. It seems there are few programs which use it.</p>
http://stackoverflow.com/questions/1471340/non-english-hebrew-chars-in-hostname/1475836#14758361Answer by bortzmeyer for non english (hebrew) chars in hostnamebortzmeyer2009-09-25T07:04:09Z2009-09-25T07:04:09Z<p>Official, yes, it is <a href="http://en.wikipedia.org/wiki/Internationalized%5Fdomain%5Fname" rel="nofollow">IDN</a> (Internationalized Domain Names) and it is defined (since 2003) in <a href="http://www.ietf.org/rfc/rfc3490.txt" rel="nofollow">RFC 3490</a>. (Although ".il" does not seem to allow them...)</p>
<p>There are several free software libraries to handle it:</p>
<ul>
<li><a href="http://www.gnu.org/software/libidn/" rel="nofollow">GNU libidn</a></li>
<li><a href="http://www.verisign.com/domain-name-services/current-registrars/internationalized-domain-names/index.html" rel="nofollow">Verisign SDK</a></li>
<li><a href="http://www.nic.ad.jp/ja/idn/mdnkit/download/documents/mdnkit-2.4-doc/en/index.html" rel="nofollow">JP NIC mDNkit/idnkit</a></li>
</ul>
http://stackoverflow.com/questions/1461705/can-all-sub-domains-of-a-domain-in-the-name-server-be-publicly-listed-or-not/1464381#14643811Answer by bortzmeyer for Can all Sub-Domains of a Domain in the Name Server be publicly listed or not?bortzmeyer2009-09-23T07:07:07Z2009-09-23T07:07:07Z<p>No, there is no way (if zone transfer is disabled, which is the most common case) to retrieve the list of subdomains.</p>
<p>Using them as passwords is still a bad idea: URLs tend to leak (Google Chrome calls home, Alexa, etc).</p>
http://stackoverflow.com/questions/1458987/volume-dns-lookup-api-provider-which-finds-all-domains-for-a-given-ip-address/1464372#1464372-1Answer by bortzmeyer for Volume DNS Lookup API Provider which finds all domains for a given IP Addressbortzmeyer2009-09-23T07:04:55Z2009-09-23T07:04:55Z<p>Why do you need a "provider"? Just issue the DNS requests yourself, either from the command line (nslookup or, better, dig, but you did not indicate your operating system so I cannot say more) or from a program (any programming langauge allow to perform reverse DNS queries.</p>
http://stackoverflow.com/questions/1450744/source-of-iso-data-in-xml-format/1453722#14537220Answer by bortzmeyer for Source of ISO data in xml format?bortzmeyer2009-09-21T09:58:20Z2009-09-21T09:58:20Z<p>ISO does not distribute its standards, save a few exceptions. Sometimes, the data is available from another source such as the maintenance agency (<a href="http://www.sil.org/iso639-3/default.asp" rel="nofollow">SIL</a> for ISO 639-3) but now always in a machine-readable form. Remember that the ISO dinosaur has a very different culture, millions of years away from the Internet world of Perl scripts, mash-ups and RDF.</p>
<p>For languages and country-codes, these standards are distributed by the <a href="http://www.iana.org/" rel="nofollow">IANA</a> in the <a href="http://www.iana.org/assignments/language-subtag-registry" rel="nofollow">language subtag registry</a>. A non-official XML version is available at <a href="http://www.langtag.net/registries.html" rel="nofollow">langtag.net</a>.</p>
<p>Another source is the <a href="http://pkg-isocodes.alioth.debian.org/" rel="nofollow">Debian package iso-codes</a> whose description says "This package provides the ISO 639 language code list, the
ISO 4217 currency code list, the ISO 3166 territory code list,
the ISO 3166-2 sub-territory list, and the ISO 15924 script code
list." It apparently does not include a XML form but, since it is machine-readable, you can always do it yourself.</p>
http://stackoverflow.com/questions/675130/tls-connection-with-timeouts-and-a-few-other-difficulties3TLS connection with timeouts (and a few other difficulties)bortzmeyer2009-03-23T20:36:33Z2009-09-17T23:20:35Z
<p>I have a HTTP client in Python which needs to use TLS. I need not only
to make encrypted connections but also to retrieve info from the
remote machine, such as the certificate issuer. I need to make
connection to many HTTP servers, often badly behaved, so I absolutely
need to have a timeout. With non-TLS connections,
<code>mysocket.settimeout(5)</code> does what I want.</p>
<p>Among the many TLS Python modules:</p>
<p><a href="http://pypi.python.org/pypi/python-gnutls" rel="nofollow">python-gnutls</a> does not allow to use settimeout() on sockets because
it uses non-blocking sockets:</p>
<pre><code>gnutls.errors.OperationWouldBlock: Function was interrupted.
</code></pre>
<p><a href="http://pyopenssl.sourceforge.net/" rel="nofollow">python-openssl</a> has a similar issue:</p>
<pre><code>OpenSSL.SSL.WantReadError
</code></pre>
<p>The <a href="http://docs.python.org/library/ssl.html" rel="nofollow">SSL module</a> of the standard library does not work with Python
2.5.</p>
<p>Other libraries like <a href="http://trevp.net/tlslite/" rel="nofollow">TLSlite</a> apparently does not give access to
the metadata of the certificate.</p>
<p>The program is threaded so I cannot use signals. I need detailed
control on the HTTP dialog so I cannot use a standard library like urllib2.</p>
<p>Background: this is
the survey project <a href="http://www.dnswitness.net/" rel="nofollow">DNSwitness</a>. Relevant SO threads: <a href="http://stackoverflow.com/questions/492519/timeout-on-a-python-function-call">Timeout on a
Python function call</a> and <a href="http://stackoverflow.com/questions/366682/how-to-limit-execution-time-of-a-function-call-in-python">How to limit execution time of a function call in Python</a>.</p>
http://stackoverflow.com/questions/23738/why-is-peer-to-peer-programming-a-hard-topic-to-obtain-good-research-for/1420301#14203011Answer by bortzmeyer for Why is Peer-to-Peer programming a hard topic to obtain good research for?bortzmeyer2009-09-14T08:22:41Z2009-09-14T08:22:41Z<p><a href="http://www.ietf.org/rfc/rfc4981.txt" rel="nofollow">RFC 4981</a>, with its huge bibliography, could be a very good starting point.</p>
http://stackoverflow.com/questions/1366658/checking-nameserver-setup-from-command-line/1371826#13718261Answer by bortzmeyer for Checking Nameserver setup from command linebortzmeyer2009-09-03T07:05:30Z2009-09-03T07:05:30Z<p><a href="http://www.zonecheck.fr/" rel="nofollow">Zonecheck</a> is a free software and can be run from the command line:</p>
<pre>
% zonecheck stackoverflow.com
ZONE : stackoverflow.com.
NS <= : ns51.domaincontrol.com. [216.69.185.26]
NS : ns52.domaincontrol.com. [208.109.255.26]
_______________
,---------------.|
~~~~ | warning || ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
`---------------'
w> Nameservers are all part of the same AS
| Adv: ZoneCheck
| To avoid loosing all connectivity with the authoritative DNS in case
| of a routing problem inside your Autonomous System, it is advised to
| host the DNS on different AS.
`----- -- -- - - -
: All the nameservers are part of the same Autonomous System (AS number
: 26496), try to have some of them hosted on another AS.
`..... .. .. . . .
=> generic
==> SUCCESS (but 1 warning(s))
</pre>
http://stackoverflow.com/questions/1206655/simple-library-to-do-utf-8-in-haskell-since-streams-no-longer-compile1Simple library to do UTF-8 in Haskell (since Streams no longer compile)bortzmeyer2009-07-30T13:36:08Z2009-08-01T23:06:32Z
<p>I just want to read (and maybe write) UTF-8 data. haskell.org still advertises <a href="http://haskell.org/haskellwiki/Library/Streams" rel="nofollow">System.Streams</a> which does not compile with recent ghc:</p>
<pre><code>% runhaskell Setup.lhs configure
Configuring Streams-0.2.1...
runhaskell Setup.lhs build
Preprocessing library Streams-0.2.1...
Building Streams-0.2.1...
[10 of 45] Compiling System.FD ( System/FD.hs, dist/build/System/FD.o )
System/FD.hs:138:22:
Couldn't match expected type `GHC.IOBase.FD'
against inferred type `FD'
In the first argument of `fdType', namely `fd'
In a 'do' expression: fd_type <- fdType fd
In the expression:
let
oflags1 = case mode of
ReadMode -> ...
WriteMode -> ...
ReadWriteMode -> ...
AppendMode -> ...
binary_flags | binary = o_BINARY
| otherwise = 0
oflags = oflags1 .|. binary_flags
in
do fd <- fdOpen filepath oflags 438
fd_type <- fdType fd
when (mode == WriteMode && fd_type == RegularFile)
$ do fdSetFileSize fd 0
....
</code></pre>
<p>Similar problem with Streams 0.1. I cannot get more recent versions since the official site is down:</p>
<pre>
% wget http://files.pupeno.com/software/streams/Streams-0.1.7.tar.bz2
--2009-07-30 15:36:14-- http://files.pupeno.com/software/streams/Streams-0.1.7.tar.bz2
Resolving files.pupeno.com... failed: Name or service not known.
wget: unable to resolve host address `files.pupeno.com'
</pre>
<p>A better solution? <a href="http://abridgegame.org/repos/darcs/UTF8.lhs" rel="nofollow">darcs source code</a>?</p>
http://stackoverflow.com/questions/1183459/direct-p2p-connection/1205155#12051552Answer by bortzmeyer for Direct P2P connectionbortzmeyer2009-07-30T08:19:12Z2009-07-30T08:19:12Z<p>A very good reading, made just for you :-), is <a href="http://www.ietf.org/rfc/rfc5128.txt" rel="nofollow">RFC 5128, "State of Peer-to-Peer (P2P) Communication across Network Address Translators (NATs)"</a>.</p>
http://stackoverflow.com/questions/1193182/whats-a-great-way-to-benchmark-apache-locally-on-linux/1193189#11931894Answer by bortzmeyer for What's a great way to benchmark Apache locally on Linux?bortzmeyer2009-07-28T10:15:52Z2009-07-28T10:30:37Z<p><a href="http://httpd.apache.org/docs/2.0/programs/ab.html" rel="nofollow">ab</a>, the Apache HTTP server benchmarking tool. Many options. An example of use with ten concurrent requests:</p>
<pre>
% ab -n 20 -c 10 http://www.bortzmeyer.org/
...
Benchmarking www.bortzmeyer.org (be patient).....done
Server Software: Apache/2.2.9
Server Hostname: www.bortzmeyer.org
Server Port: 80
Document Path: /
Document Length: 208025 bytes
Concurrency Level: 10
Time taken for tests: 9.535 seconds
Complete requests: 20
Failed requests: 0
Write errors: 0
Total transferred: 4557691 bytes
HTML transferred: 4551113 bytes
Requests per second: 2.10 [#/sec] (mean)
Time per request: 4767.540 [ms] (mean)
Time per request: 476.754 [ms] (mean, across all concurrent requests)
Transfer rate: 466.79 [Kbytes/sec] received
Connection Times (ms)
min mean[+/-sd] median max
Connect: 22 107 254.6 24 854
Processing: 996 3301 1837.9 3236 8139
Waiting: 23 25 1.3 25 27
Total: 1018 3408 1795.9 3269 8164
Percentage of the requests served within a certain time (ms)
50% 3269
66% 4219
...
</pre>
<p>(In that case, network latency was the main slowness factor.)</p>
<p>ab reports itself in the <code>User-Agent</code> field so, in the log of the HTTP server, you'll see something like:</p>
<pre>
2001:660:3003:8::4:69 - - [28/Jul/2009:12:22:45 +0200] "GET / HTTP/1.0" 200 208025 "-" "ApacheBench/2.3" www.bortzmeyer.org
</pre>
http://stackoverflow.com/questions/909204/domain-registration-service-with-rest-api/1185347#11853470Answer by bortzmeyer for Domain Registration service with REST APIbortzmeyer2009-07-26T19:31:51Z2009-07-26T19:31:51Z<p>Using a search engine yields some results but I have no experience with them and they seem quite far from real REST:</p>
<ul>
<li><a href="http://www.internetbs.net/ResellerRegistrarDomainNameAPI/" rel="nofollow">Internet.bs Reseller/Registrar Domain Name API</a> As they said themselves, it is quite far from REST.</li>
<li><a href="http://www.henselhosting.com/how-to-use-the-hensel-hosting-rest-api/" rel="nofollow">How to use the Hensel Hosting REST API</a> Again, very unREST</li>
</ul>
<p>It seems that XML-RPC or even SOAP are more popular. If you insist in REST, you will be limited in
your choices. You want a registrar for a domain in which TLD, by the way?</p>
http://stackoverflow.com/questions/1057768/pythonencryption-encrypting-session-key-using-public-key/1184661#11846610Answer by bortzmeyer for python+encryption: Encrypting session key using public keybortzmeyer2009-07-26T13:56:02Z2009-07-26T13:56:02Z<p>See <a href="http://stackoverflow.com/questions/90413/what-is-the-best-easiest-to-use-encryption-library-in-python">What is the best/easiest to use encryption library in python</a>, which mentions a <a href="http://stackoverflow.com/questions/90413/what-is-the-best-easiest-to-use-encryption-library-in-python/90959#90959">PGP-compatible
solution</a>, <a href="http://www.gnupg.org/related%5Fsoftware/gpgme/index.en.html" rel="nofollow">gpgme</a>.</p>
<p>For reasons I ignore, nobody in <a href="http://stackoverflow.com/questions/1020320/how-to-do-pgp-in-python-generate-keys-encrypt-decrypt/1053752">How to do PGP in Python (generate keys, encrypt/decrypt)</a> mentioned gpgme...</p>
http://stackoverflow.com/questions/1182534/dynamically-store-lines-of-strings-using-c/1182907#11829072Answer by bortzmeyer for Dynamically store lines of strings using Cbortzmeyer2009-07-25T19:58:49Z2009-07-25T19:58:49Z<p>There is little reason to reinvent the wheel, unlike what some answers suggest. </p>
<p>Do not develop your own library, while there are <strong>several</strong> free software libraries which implement such abstractions. One example, among others, is <a href="http://library.gnome.org/devel/glib/" rel="nofollow">glib</a> which has many types such as <a href="http://library.gnome.org/devel/glib/2.20/glib-Strings.html" rel="nofollow">dynamically growing strings</a> and <a href="http://library.gnome.org/devel/glib/2.20/glib-Singly-Linked-Lists.html" rel="nofollow">dynamically growing lists</a>.</p>
http://stackoverflow.com/questions/1171833/how-to-get-the-absolute-path-of-a-file-programmatically-with-out-realpath-under/1174046#11740460Answer by bortzmeyer for How to get the absolute path of a file programmatically with out realpath() under linux?bortzmeyer2009-07-23T19:45:38Z2009-07-23T19:45:38Z<p>Duplicate of "<a href="http://stackoverflow.com/questions/799679/programatically-retrieving-the-absolute-path-of-an-os-x-command-line-app">Programatically retrieving the absolute path of an OS X command-line app</a>"?</p>
http://stackoverflow.com/questions/1162675/geolocation-with-ipv6/1171113#11711133Answer by bortzmeyer for Geolocation with IPv6?bortzmeyer2009-07-23T11:22:42Z2009-07-23T11:36:22Z<p>The <a href="http://www.ripe.net/ripe/docs/ipv6policy.html" rel="nofollow">typical IPv6 allocation</a> is a /32 (four octets) to an Internet
provider (which can be a multinational company), then <a href="http://tools.ietf.org/html/rfc3177" rel="nofollow">/48 (six octets)</a>
to an end site (typically a client organization). You can get a
starting point in the <a href="http://www.iana.org/assignments/ipv6-unicast-address-assignments/" rel="nofollow">IANA list of delegated blocks</a>.</p>
<p>This is only for
registrations found in the databases of the RIR. Assignment to end
users is typically not recorded so, my current address,
<code>2a01:e35:8bd9:8bb0:92b:8628:5ca5:5f2b</code> will tell you only that my
provider's headquarters are in Paris (since it is a national company,
the clients can be anywhere in France).</p>
<p>Another exception is the PI (Provider-Independent) assignements, which
are typically /48.</p>
<p>Also, there exists many databases of geolocation for IPv4 and, to my
knowledge, none for IPv6. You will have to do everything yourself.</p>
<p>To summary: more work than you apparently believe.</p>
http://stackoverflow.com/questions/1864948/why-hasnt-a-faster-better-language-than-c-come-out/1865446#1865446Comment by bortzmeyer on Why hasn't a faster, "better" language than C come out?bortzmeyer2009-12-08T19:19:01Z2009-12-08T19:19:01ZC is still widely used for server code. There is not only the Web, most DNS, email, etc servers are written in C. Even for the Web, Apache is in C.http://stackoverflow.com/questions/1523715/finding-the-public-ip-address-in-a-shell-script/1794587#1794587Comment by bortzmeyer on Finding the Public IP address in a shell scriptbortzmeyer2009-11-28T18:22:22Z2009-11-28T18:22:22ZIt serves plain text with a type of text/html...http://stackoverflow.com/questions/1787530/how-do-you-determine-equality-between-two-ipv6-addresses/1787882#1787882Comment by bortzmeyer on How do you determine equality between two ipv6 addresses?bortzmeyer2009-11-28T18:02:18Z2009-11-28T18:02:18ZNitpick: CIDR is an IPv4-specific term, created when IPv4 moved from classful to classless addressing. With IPv6, it does not make sense, since IPv6 was always classless.
http://stackoverflow.com/questions/1740231/getaddrinfo-returning-only-1-as-ipv6-address/1787908#1787908Comment by bortzmeyer on getaddrinfo() returning only ::1 as IPV6 address,bortzmeyer2009-11-28T17:28:46Z2009-11-28T17:28:46ZNitpick: not a shorthand. ::1 is the local address. Names are something different. (On Debian, the default name for this address is ip6-localhost.)
http://stackoverflow.com/questions/1796329/dns-cname-type-records-have-incorrect-rdlength-fields/1796884#1796884Comment by bortzmeyer on DNS CNAME type Records have incorrect RDLENGTH fields?bortzmeyer2009-11-27T09:30:54Z2009-11-27T09:30:54ZTypical low-end routers and CPE often incorrectly proxy the DNS protocol. See RFC 5625.http://stackoverflow.com/questions/1794430/accessing-data-link-layer-packets/1794804#1794804Comment by bortzmeyer on Accessing data link layer packetsbortzmeyer2009-11-25T20:28:20Z2009-11-25T20:28:20Zpcap does not parse the IP headers or the DHCP packets. It just allows you, as mentioned by Jack, to <i>filter</i> in the kernel, so your application is not overwhelmed by packets you do not want.http://stackoverflow.com/questions/1780598/checking-domain-name-availability-with-dns-records/1780688#1780688Comment by bortzmeyer on Checking domain name availability with DNS recordsbortzmeyer2009-11-23T08:25:07Z2009-11-23T08:25:07ZDNS lookup fail for all the TLD where you can book a domain without publishing it in the DNS...http://stackoverflow.com/questions/1780598/checking-domain-name-availability-with-dns-records/1780621#1780621Comment by bortzmeyer on Checking domain name availability with DNS recordsbortzmeyer2009-11-23T08:24:36Z2009-11-23T08:24:36ZRickNZ: it depends on the TLD. For the vast majority of the TLD, the whois server is operated by the registry, not the registrars.http://stackoverflow.com/questions/1755807/subdomains-and-dns/1755823#1755823Comment by bortzmeyer on Subdomains and DNSbortzmeyer2009-11-20T07:46:50Z2009-11-20T07:46:50ZRight: you need to control in some way the DNS master server. Then, you have several techniques, editing the zone file, using DNS dynamic update, INSERTing into a DBMS, depending on the name server software you use.http://stackoverflow.com/questions/1727164/simple-dns-server-api/1727277#1727277Comment by bortzmeyer on Simple DNS Server APIbortzmeyer2009-11-17T15:59:29Z2009-11-17T15:59:29ZThe DNS protocol is simple??? Either you are a Programming God or you know little about the DNS. Seeing the number of broken DNS software, I believe that the DNS protocol is NOT simple (first example: you mention only UDP while DNS als runs over TCP).http://stackoverflow.com/questions/1646592/help-in-optimizing-a-query-for-a-postgresql-database/1654059#1654059Comment by bortzmeyer on Help in optimizing a query for a Postgresql databasebortzmeyer2009-11-02T21:50:44Z2009-11-02T21:50:44ZYes, <a href="http://explain.depesz.com/" rel="nofollow">explain.depesz.com</a> is great.http://stackoverflow.com/questions/1654993/a-bare-bones-dns-server/1655028#1655028Comment by bortzmeyer on A bare-bones DNS server.bortzmeyer2009-11-02T10:47:48Z2009-11-02T10:47:48ZThese two RFC are <i>far</i> from being sufficient (2671, for instance, is really necessary today).
And IDN requires no support for the name server so it will be purely for the demo effect.http://stackoverflow.com/questions/1628610/determine-if-dns-server-is-master-or-slave-with-dig/1628732#1628732Comment by bortzmeyer on Determine if DNS server is master or slave with DiGbortzmeyer2009-10-27T08:49:28Z2009-10-27T08:49:28ZThis field exists, in the SOA record. It is supposed to contain the master, even hidden. In practice, it is not always reliable. Its only practical use is to be the target of dynamic updates.http://stackoverflow.com/questions/1614243/create-custom-dns-name-server-in-c/1614302#1614302Comment by bortzmeyer on Create custom DNS name server in Cbortzmeyer2009-10-26T08:00:00Z2009-10-26T08:00:00ZI do not think it is a good idea. BIND 9 (unlike what is planned for its successor BIND 10) is not really made for hackability.http://stackoverflow.com/questions/1593925/how-do-tell-if-a-user-hits-my-site-from-my-free-domain-nameComment by bortzmeyer on how do tell if a user hits my site from my free domain namebortzmeyer2009-10-22T09:46:11Z2009-10-22T09:46:11ZBoth are domain names, the one in co.nr and the one in .tk. "Subdomains" is not really a proper term (except the root, every domain is a subdomain...).