avahi-daemon如何连接另外一台计算机主机的服务,并发送hello world
时间: 2023-09-07 16:11:26 浏览: 272
Avahi-daemon 是一个开源的零配置网络系统,可以自动发现网络上的服务和设备。要连接另一台计算机主机的服务并发送 hello world,需要按照以下步骤进行操作:
1. 首先,确保两台计算机都已经安装了 Avahi-daemon。
2. 在第一台计算机上创建一个服务,例如使用 Python 的 Flask 框架创建一个 Web 服务,并将其注册到 Avahi-daemon 上,可以使用 Python 的 avahi-python 库来完成这个任务。
3. 在第二台计算机上使用 avahi-browse 命令来查找第一台计算机的服务,例如:
```
avahi-browse -a
```
这个命令会列出所有可用的服务,可以找到第一台计算机的服务。
4. 使用 Avahi-daemon 提供的客户端库连接到第一台计算机的服务,并发送 hello world,可以使用 C 语言的 avahi-client 库来完成这个任务。
```
#include <avahi-client/client.h>
#include <avahi-client/lookup.h>
#include <avahi-common/error.h>
#include <avahi-common/thread-watch.h>
#include <stdio.h>
#include <stdlib.h>
static void resolve_callback(AvahiServiceResolver *r, AvahiIfIndex interface,
AvahiProtocol protocol, AvahiResolverEvent event,
const char *name, const char *type, const char *domain,
const char *host_name, const AvahiAddress *address,
uint16_t port, AvahiStringList *txt, AvahiLookupResultFlags flags,
void *userdata) {
if (event == AVAHI_RESOLVER_FOUND) {
char addr[AVAHI_ADDRESS_STR_MAX];
avahi_address_snprint(addr, sizeof(addr), address);
printf("Resolved '%s' on %s:%u, address is %s\n", name, host_name, port, addr);
// Connect to the service and send hello world
// ...
}
}
static void browse_callback(AvahiServiceBrowser *b, AvahiIfIndex interface,
AvahiProtocol protocol, AvahiBrowserEvent event,
const char *name, const char *type, const char *domain,
AvahiLookupResultFlags flags, void *userdata) {
AvahiClient *client = userdata;
switch (event) {
case AVAHI_BROWSER_NEW:
avahi_service_resolver_new(client, interface, protocol, name, type, domain,
AVAHI_PROTO_UNSPEC, 0, resolve_callback, NULL);
break;
}
}
int main(int argc, char **argv) {
AvahiClient *client = NULL;
int error;
// Initialize the client
client = avahi_client_new(avahi_threaded_poll_get(), 0, NULL, NULL, &error);
if (!client) {
fprintf(stderr, "Failed to create client: %s\n", avahi_strerror(error));
exit(1);
}
// Browse for services
AvahiServiceBrowser *browser = avahi_service_browser_new(client, AVAHI_IF_UNSPEC,
AVAHI_PROTO_UNSPEC, "_http._tcp", NULL,
0, browse_callback, client);
if (!browser) {
fprintf(stderr, "Failed to create browser: %s\n", avahi_strerror(error));
exit(1);
}
// Run the event loop
avahi_threaded_poll_start(avahi_threaded_poll_get());
// Cleanup
avahi_service_browser_free(browser);
avahi_client_free(client);
return 0;
}
```
这个程序会查找名为 "_http._tcp" 的服务,并连接到第一个找到的服务,如果成功连接到服务,会输出服务的名称、地址和端口号,并发送 hello world 消息。
以上就是使用 Avahi-daemon 连接另一台计算机主机的服务并发送 hello world 的步骤。
阅读全文
相关推荐







