libbgp  0.6
A C++ BGP Library.
fd-out-handler.h
Go to the documentation of this file.
1 
11 #ifndef FD_OUT_HANDLER_H_
12 #define FD_OUT_HANDLER_H_
13 #include "bgp-out-handler.h"
14 
15 namespace libbgp {
16 
23 class FdOutHandler : public BgpOutHandler {
24 public:
25  FdOutHandler(int fd);
26  bool handleOut(const uint8_t *buffer, size_t length);
27 private:
28  int fd;
29 };
30 
42 }
43 #endif // FD_OUT_HANDLER_H_
The BGP FSM output handler.
The FdOutHandler class.
bool handleOut(const uint8_t *buffer, size_t length)
The output implementation.
FdOutHandler(int fd)
Construct a new Fd Out Handler:: Fd Out Handler object.
Definition: bgp-afi.h:14
The BGP FSM output handler.