#ifndef __736_UTILS_H
#define __736_UTILS_H

#include <linux/skbuff.h>
#include "ports.h"
#include "print_string.h"

/* Prints stuff I care about in an sk_buf. */
void print_skb (struct sk_buff *skb);

/* Returns 1 on success, 0 on failure. */
int getTcpPorts (struct sk_buff *skb, __u16 * src, __u16 * dst);

#endif // __736_UTILS_H
