mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-15 03:14:23 +00:00
b88d4fa6e7
PR: ports/69868 Submitted by: maintainer
17 lines
635 B
Plaintext
17 lines
635 B
Plaintext
--- relay.h.orig Mon Jul 8 20:38:24 2002
|
|
+++ relay.h Wed Mar 10 15:50:51 2004
|
|
@@ -51,8 +51,13 @@
|
|
|
|
/* Function prototypes */
|
|
|
|
+#if defined(__FreeBSD__)
|
|
+void relayGotSessionPacket(PPPoEInterface const *iface, PPPoEPacket *packet, int size);
|
|
+void relayGotDiscoveryPacket(PPPoEInterface const *iface, PPPoEPacket *packet, int size);
|
|
+#else
|
|
void relayGotSessionPacket(PPPoEInterface const *i);
|
|
void relayGotDiscoveryPacket(PPPoEInterface const *i);
|
|
+#endif
|
|
PPPoEInterface *findInterface(int sock);
|
|
unsigned int hash(unsigned char const *mac, UINT16_t sesNum);
|
|
SessionHash *findSession(unsigned char const *mac, UINT16_t sesNum);
|