#ifndef TRANS_H
#define TRANS_H

int initsocketv6 ();

int socketv6(int domain, int type, int protocol);

int sendtov6 (int sockfd, const void *msg, int len, unsigned int flags,
		               const struct sockaddr *to, int tolen);

int recvfromv6 (int sockfd, void *msg, int len, unsigned int flags,
		               struct sockaddr *from, socklen_t * fromlen);

#endif

