net/tipc/discover.h

Source file repositories/reference/linux-study-clean/net/tipc/discover.h

File Facts

System
Linux kernel
Corpus path
net/tipc/discover.h
Extension
.h
Size
2365 bytes
Lines
52
Domain
Networking Core
Bucket
Sockets, Protocols, Packet Path, And Network Policy
Inferred role
Networking Core: implementation source
Status
source implementation candidate

Why This File Exists

Networking stack implementation surface: socket APIs, protocol dispatch, packet flow, routing, filtering, and network namespaces.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _TIPC_DISCOVER_H
#define _TIPC_DISCOVER_H

struct tipc_discoverer;

int tipc_disc_create(struct net *net, struct tipc_bearer *b_ptr,
		     struct tipc_media_addr *dest, struct sk_buff **skb);
void tipc_disc_delete(struct tipc_discoverer *req);
void tipc_disc_reset(struct net *net, struct tipc_bearer *b_ptr);
void tipc_disc_add_dest(struct tipc_discoverer *req);
void tipc_disc_remove_dest(struct tipc_discoverer *req);
void tipc_disc_rcv(struct net *net, struct sk_buff *buf,
		   struct tipc_bearer *b_ptr);

#endif

Annotation

Implementation Notes