summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-19 19:25:44 -0300
committerArnaldo Carvalho de Melo <acme@conectiva.com.br>2003-09-19 19:25:44 -0300
commitb2f6e430190b13fb7b0de66ecbb3972bad3ddd2c (patch)
treea7628056ce0fd39ef7227b96d58129aa587d3dc5 /include/net
parent5351553b77b526a1e479e787d81aad7632e8e21a (diff)
o LLC: rename llc_main.[ch] to llc_station.[ch]
First step at coalescing the station handling into just one file, killing some useless headers in the process.
Diffstat (limited to 'include/net')
-rw-r--r--include/net/llc.h2
-rw-r--r--include/net/llc_station.h (renamed from include/net/llc_main.h)8
2 files changed, 6 insertions, 4 deletions
diff --git a/include/net/llc.h b/include/net/llc.h
index 21be8360df67..3bb61d16bfe6 100644
--- a/include/net/llc.h
+++ b/include/net/llc.h
@@ -76,6 +76,8 @@ extern struct llc_sap *llc_sap_open(unsigned char lsap,
struct packet_type *pt));
extern void llc_sap_close(struct llc_sap *sap);
+extern struct llc_sap *llc_sap_find(unsigned char sap_value);
+
extern int llc_build_and_send_ui_pkt(struct llc_sap *sap, struct sk_buff *skb,
unsigned char *dmac, unsigned char dsap);
#endif /* LLC_H */
diff --git a/include/net/llc_main.h b/include/net/llc_station.h
index fd383efb48a8..64c849d47a57 100644
--- a/include/net/llc_main.h
+++ b/include/net/llc_station.h
@@ -1,8 +1,8 @@
-#ifndef LLC_MAIN_H
-#define LLC_MAIN_H
+#ifndef LLC_STATION_H
+#define LLC_STATION_H
/*
* Copyright (c) 1997 by Procom Technology, Inc.
- * 2001 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
+ * 2001-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
*
* This program can be redistributed or modified under the terms of the
* GNU General Public License as published by the Free Software Foundation.
@@ -55,4 +55,4 @@ extern void llc_station_send_pdu(struct llc_station *station,
struct sk_buff *skb);
extern int __init llc_station_init(void);
extern void __exit llc_station_exit(void);
-#endif /* LLC_MAIN_H */
+#endif /* LLC_STATION_H */