bortzmeyer

3,393
reputation
941 views

Registered User

name bortzmeyer
member for 1 year
seen 8 hours ago
website
location FR
age 49
8h
comment Programs executes correctly and then segfaults
Congratulations for the detailed explanation of an often-missed point!
Dec
8
comment Why hasn’t a faster, “better” language than C come out?
C 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.
Nov
28
comment How do you determine equality between two ipv6 addresses?
Nitpick: 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.
Nov
28
comment getaddrinfo() returning only ::1 as IPV6 address,
Nitpick: not a shorthand. ::1 is the local address. Names are something different. (On Debian, the default name for this address is ip6-localhost.)
Nov
27
comment DNS CNAME type Records have incorrect RDLENGTH fields?
Typical low-end routers and CPE often incorrectly proxy the DNS protocol. See RFC 5625.
Nov
26
answered Why is separate getaddrinfo-like() + connect() not refactored into a (theoretical) connect_by_name() ?
Nov
25
comment Accessing data link layer packets
pcap does not parse the IP headers or the DHCP packets. It just allows you, as mentioned by Jack, to filter in the kernel, so your application is not overwhelmed by packets you do not want.
Nov
23
comment Checking domain name availability with DNS records
DNS lookup fail for all the TLD where you can book a domain without publishing it in the DNS...
Nov
23
comment Checking domain name availability with DNS records
RickNZ: it depends on the TLD. For the vast majority of the TLD, the whois server is operated by the registry, not the registrars.
Nov
23
answered Fast concurrent checking of SOA DNS records for .co.za domains
Nov
20
answered Subdomains and DNS
Nov
20
answered Subdomains and DNS
Nov
20
comment Subdomains and DNS
Right: 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.
Nov
17
comment Simple DNS Server API
The 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).
Nov
8
accepted A bare-bones DNS server.
Nov
2
comment Help in optimizing a query for a Postgresql database
Yes, explain.depesz.com is great.
Nov
2
comment A bare-bones DNS server.
These two RFC are far 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.
Nov
2
answered A bare-bones DNS server.
Oct
27
awarded  Guru
Oct
26
comment Create custom DNS name server in C
I 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.
Oct
25
accepted Coding style checker for C
Oct
22
answered how do tell if a user hits my site from my free domain name
Oct
22
comment how do tell if a user hits my site from my free domain name
Both 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...).
Oct
19
comment linux: adding hosts programmatically?
You cannot: dynamic update updates a zone, not a cache. Updating the cache cannot be done by standard ways (each resolver may have its own proprietary way, which one do you use?)
Oct
19
answered DNS domain name syntax examples.
Oct
19
comment DNS domain name syntax examples.
-1 for the mistakes: there is no such thing as "8-bits ASCII", the section on the preferred syntax is misinterpreted and the most important thing, the difference between host named and domain names is missing.
Oct
14
answered Public Wildcard Domain Name To Resolve To 127.0.0.1
Oct
13
comment libpcap : No Wireless Devices detected
Yes. And no need to guess, it is in the man page: "pcap_lookupdev() returns a pointer to a network device suitable for use with pcap_open_live() and pcap_lookupnet()"
Oct
13
comment List stored functions using a table in PostgreSQL
Why <> 1? On my Postgresql installation, system procedures have a proowner of 10, not 1.
Oct
12
answered Is there a way to forward a domain name to a specific folder via DNS?
Oct
9
accepted asn.1 parser in C/Python
Oct
3
comment How do I detect the presence/absence of internet connection on a machine?
Many firewalls block ICMP. Even if it works today, you are at the mercy of a firewall policy change at Apple tomorrow.
Oct
3
comment How do I detect the presence/absence of internet connection on a machine?
Many firewalls (either on your side or on Google's side) block (stupidely) ICMP.
Oct
2
answered URL routing, from domain.com/dir/ to otherDomain.com?
Sep
30
answered REST payload max size?
Sep
30
comment A program to kill long-running runaway programs
Yes, it seems very interesting and simple to use. Currently testing it in a real Web server.
Sep
29
comment What is the optimal size of a UDP packet for maximum throughput?
-1, for obvious reasons.
Sep
29
comment pcap struct pcap_pkthdr len vs caplen
You should post the pcap that triggers this problem on pcapr.net, it would be quite interesting. Personnaly, I've never seen that.
Sep
29
answered asn.1 parser in C/Python
Sep
27
comment Array Size and Addresses in C
I do no think that it guarantees the expected behaviour: the struct is not always packed. On some machines./compilers, it may be impossible to pack it without breaking alignment rules.
Sep
25
answered non english (hebrew) chars in hostname
Sep
23
comment Volume DNS Lookup API Provider which finds all domains for a given IP Address
Yes, it is clearer but it is not "reverse lookup". I suggest that you edit your question and change its title. And domaintools is quite poor: for 208.75.84.80, it finds only www.bortzmeyer.org, not www.demaziere.fr, for instance.
Sep
23
comment Volume DNS Lookup API Provider which finds all domains for a given IP Address
Downvotes without comments are the scourge of Stackoverflow. In this case, was it lazyness or incompetence?
Sep
23
answered Can all Sub-Domains of a Domain in the Name Server be publicly listed or not?
Sep
23
answered Volume DNS Lookup API Provider which finds all domains for a given IP Address
Sep
23
comment Volume DNS Lookup API Provider which finds all domains for a given IP Address
Why creating the "reverse lookup zone"??? And nslookup exists on Windows, no need to use ping, which sends mor packets and is therefore slower.
Sep
22
comment Python socket programming and ISO-OSI model…
Why AF_INET? Why limiting yourself to the old IPv4 standard? Much better to resolve the name in address and to use AF_INET or AF_INET6, depending on the address you get.
Sep
21
revised Who provides a WHOIS API?
Link from the domain name
Sep
21
answered Source of ISO data in xml format?
Sep
21
comment Can I improve this regex check for valid domain names?
Not even to mention IDN and the fact that DOMAIN names allow much more characters than HOST names (for instance the underscore).