#ifndef _INET_PROTO_SET_H
#define _INET_PROTO_SET_H
#ifdef __cplusplus
extern "C" {
#endif
#include <sys/types.h>
#include <sys/socket_proto.h>
#include <inet/optcom.h>
#include <inet/ipclassifier.h>
extern boolean_t proto_set_rx_hiwat(queue_t *, struct conn_s *, size_t);
extern boolean_t proto_set_rx_lowat(queue_t *, struct conn_s *, size_t);
extern boolean_t proto_set_maxpsz(queue_t *, struct conn_s *, size_t);
extern boolean_t proto_set_tx_maxblk(queue_t *, struct conn_s *,
ssize_t);
extern boolean_t proto_set_tx_copyopt(queue_t *, struct conn_s *, int);
extern boolean_t proto_set_tx_wroff(queue_t *, struct conn_s *, size_t);
extern void proto_set_rx_oob_opt(struct conn_s *, boolean_t);
extern int proto_tlitosyserr(int);
extern int proto_verify_ip_addr(int, const struct sockaddr *, socklen_t);
extern int proto_opt_check(int, int, int, t_uscalar_t *, opdes_t *,
uint_t, boolean_t, boolean_t, cred_t *);
extern opdes_t *proto_opt_lookup(t_uscalar_t, t_uscalar_t, opdes_t *, uint_t);
#ifdef __cplusplus
}
#endif
#endif