views:

138

answers:

4

Well I found a nice tutorial about how to program applications using Bonjour. It's cool. But the only problem, I do not understand which language they teach. I am not even sure that it is a programming language? May be they write about commands that should be typed in a command line? Or may be these are commands which should be executed in some GUI applications? Somehow I cannot find the context in which this tutorial is given. It is strange to me that they do not write what is that.

Can somebody resolve this mystery?

+2  A: 

That’s not a tutorial about how to program, OS X programs are written in Objective-C (although this is a C API), and that page has a table of contents on the left side.

The mDNS command line tool can be used to test Bonjour services.

jleedev
In addition to `mDNS` here is also the `dns-sd` utility: http://www.macosxhints.com/article.php?story=20051026183044858
Paul R
+8  A: 

Its the C API for apple's Bonjour services; this is hardly a programming tutorial.

Erik
+2  A: 

Looking at the left, there's a block that says:

RELATED REFERENCE 
PROCEDURAL C DNS
Service Discovery C Reference

I'm going to go out on a limb and say it's probably C.

JUST MY correct OPINION
+2  A: 

From the URL, title, and menu you can tell that it's a article about registering services using their dns_discovery_api in C.

This is not a programming tutorial.

Christoffer Hammarström