diff options
Diffstat (limited to 'zebra/zserv_null.c')
| -rw-r--r-- | zebra/zserv_null.c | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/zebra/zserv_null.c b/zebra/zserv_null.c index acab22d96f..47518f477f 100644 --- a/zebra/zserv_null.c +++ b/zebra/zserv_null.c @@ -14,21 +14,28 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * - * You should have received a copy of the GNU General Public License - * along with Quagga; see the file COPYING. If not, write to the Free - * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. + * You should have received a copy of the GNU General Public License along + * with this program; see the file COPYING; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ #include <zebra.h> #include <vrf.h> +#include <vty.h> #include <zserv.h> #include <zebra_ns.h> #include <zebra_vrf.h> #include <router-id.h> +int +zebra_server_send_message(struct zserv *client) +{ return 0; } + +void zserv_create_header (struct stream *s, uint16_t cmd, vrf_id_t vrf_id) +{ return; } + int zsend_vrf_delete (struct zserv *zserv, struct zebra_vrf *zvrf) { return 0; } |
