struct ipt_connbytes_info *sinfo = (struct ipt_connbytes_info *)match->data;
if (sinfo->from > sinfo->to)
- printf("connbytes ! %lu:%lu",sinfo->to,sinfo->from);
+ printf("connbytes ! %lu:%lu ",sinfo->to,sinfo->from);
else
- printf("connbytes %lu:%lu",sinfo->from,sinfo->to);
+ printf("connbytes %lu:%lu ",sinfo->from,sinfo->to);
}
/* Saves the matchinfo in parsable form to stdout. */
struct ipt_connbytes_info *sinfo = (struct ipt_connbytes_info *)match->data;
if (sinfo->from > sinfo->to)
- printf("! --connbytes %lu:%lu",sinfo->to,sinfo->from);
+ printf("! --connbytes %lu:%lu ",sinfo->to,sinfo->from);
else
- printf("--connbytes %lu:%lu",sinfo->from,sinfo->to);
+ printf("--connbytes %lu:%lu ",sinfo->from,sinfo->to);
}
static