]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/ipfilter/lib/msgdsize.c
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / contrib / ipfilter / lib / msgdsize.c
1 /*
2  * Copyright (C) 2012 by Darren Reed.
3  *
4  * See the IPFILTER.LICENCE file for details on licencing.
5  *
6  * $Id: msgdsize.c,v 1.2.4.3 2012/07/22 08:04:24 darren_r Exp $
7  */
8
9 #include "ipf.h"
10
11 size_t msgdsize(orig)
12         mb_t *orig;
13 {
14         size_t sz = 0;
15         mb_t *m;
16
17         for (m = orig; m != NULL; m = m->mb_next)
18                 sz += m->mb_len;
19         return sz;
20 }