#ifndef _DCCP_FEAT_H#define _DCCP_FEAT_H/* * net/dccp/feat.h * * An implementation of the DCCP protocol * Copyright (c) 2005 Andrea Bittau <a.bittau@cs.ucl.ac.uk> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */#include <linux/types.h>structsock;externintdccp_feat_change(structsock*sk,u8type,u8feature,u8*val,u8len,gfp_tgfp);externintdccp_feat_change_recv(structsock*sk,u8type,u8feature,u8*val,u8len);externintdccp_feat_confirm_recv(structsock*sk,u8type,u8feature,u8*val,u8len);externvoiddccp_feat_clean(structsock*sk);externintdccp_feat_clone(structsock*oldsk,structsock*newsk);externintdccp_feat_init(structsock*sk);#endif /* _DCCP_FEAT_H */