1
0
This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
2024-07-22 01:58:46 -03:00

24 lines
563 B
C

/*
* Database handling functions
*
* $Id: packet.h,v 1.1.1.1 2007/04/12 09:42:38 ian Exp $
*
*/
#include "lane.h"
#include "connect.h"
/* Protos */
int send_arp_response(int fd, LaneControl_t *lc,
unsigned int status, Reg_t *found);
int send_register_response(int fd, LaneControl_t *lc,
unsigned int status, int reg);
int send_join_response(int fd, LaneControl_t *lc, int lecid,
unsigned int status);
int send_control_frame(int fd, LaneControl_t *to_send);
int forward_arp_request(LaneControl_t *to_forward,
Proxy_t *proxyl);