141edb306SCy Schubert /* 241edb306SCy Schubert * Copyright (C) 2012 by Darren Reed. 341edb306SCy Schubert * 441edb306SCy Schubert * See the IPFILTER.LICENCE file for details on licencing. 541edb306SCy Schubert * 641edb306SCy Schubert * $Id: prependmbt.c,v 1.3.2.3 2012/07/22 08:04:24 darren_r Exp $ 741edb306SCy Schubert */ 841edb306SCy Schubert 941edb306SCy Schubert #include "ipf.h" 1041edb306SCy Schubert prependmbt(fr_info_t * fin,mb_t * m)11efeb8bffSCy Schubertint prependmbt( fr_info_t *fin, mb_t *m) 1241edb306SCy Schubert { 1341edb306SCy Schubert m->mb_next = *fin->fin_mp; 1441edb306SCy Schubert *fin->fin_mp = m; 15*2582ae57SCy Schubert return (0); 1641edb306SCy Schubert } 17