⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tcp_wce.c

📁 mgcp协议源代码。支持多种编码:g711
💻 C
📖 第 1 页 / 共 2 页
字号:
  if (stream->tcpsi == INVALID_SOCKET) return NIL;  if (bn) (*bn) (BLOCK_TCPREAD,NIL);  tmo.tv_sec = ttmo_read;  tmo.tv_usec = 0;  while (stream->ictr < 1) {	/* if nothing in the buffer */    time_t tl = time (0);    FD_SET (stream->tcpsi,&fds);/* set bit in selection vector */				/* block and read */    switch ((stream->tcpsi == stream->tcpso) ?	    select (stream->tcpsi+1,&fds,0,0,		    ttmo_read ? &tmo : (struct timeval *) 0) : 1) {    case SOCKET_ERROR:		/* error */      if (WSAGetLastError () != WSAEINTR) return tcp_abort (&stream->tcpsi);      break;    case 0:			/* timeout */      tc = time (0);      if (tmoh && ((*tmoh) (tc - t,tc - tl))) break;      return tcp_abort (&stream->tcpsi);    default:      if (stream->tcpsi == stream->tcpso)	while (((i = recv (stream->tcpsi,stream->ibuf,BUFLEN,0)) ==		SOCKET_ERROR) && (WSAGetLastError () == WSAEINTR));      else while (((i = read (stream->tcpsi,stream->ibuf,BUFLEN)) < 0) &&		  (errno == EINTR));      switch (i) {      case SOCKET_ERROR:	/* error */      case 0:			/* no data read */	return tcp_abort (&stream->tcpsi);      default:	stream->ictr = i;	/* set new byte count */				/* point at TCP buffer */	stream->iptr = stream->ibuf;      }    }  }  if (bn) (*bn) (BLOCK_NONE,NIL);  return T;}/* TCP/IP send string as record * Accepts: TCP/IP stream *	    string pointer * Returns: T if success else NIL */long tcp_soutr (TCPSTREAM *stream,char *string){  return tcp_sout (stream,string,(unsigned long) strlen (string));}/* TCP/IP send string * Accepts: TCP/IP stream *	    string pointer *	    byte count * Returns: T if success else NIL */long tcp_sout (TCPSTREAM *stream,char *string,unsigned long size){  int i;  struct timeval tmo;  fd_set fds;  time_t tc,t = time (0);  blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);  tmo.tv_sec = ttmo_write;  tmo.tv_usec = 0;  FD_ZERO (&fds);		/* initialize selection vector */  if (stream->tcpso == INVALID_SOCKET) return NIL;  if (bn) (*bn) (BLOCK_TCPWRITE,NIL);  while (size > 0) {		/* until request satisfied */    time_t tl = time (0);    FD_SET (stream->tcpso,&fds);/* set bit in selection vector */				/* block and write */    switch ((stream->tcpsi == stream->tcpso) ?	    select (stream->tcpso+1,NULL,&fds,NULL,		    tmo.tv_sec ? &tmo : (struct timeval *) 0) : 1) {    case SOCKET_ERROR:		/* error */      if (WSAGetLastError () != WSAEINTR) return tcp_abort (&stream->tcpsi);      break;    case 0:			/* timeout */      tc = time (0);      if (tmoh && ((*tmoh) (tc - t,tc - tl))) break;      return tcp_abort (&stream->tcpsi);    default:      if (stream->tcpsi == stream->tcpso)	while (((i = send (stream->tcpso,string,(int) size,0)) ==		SOCKET_ERROR) && (WSAGetLastError () == WSAEINTR));      else while (((i = write (stream->tcpso,string,size)) < 0) &&		  (errno == EINTR));      if (i == SOCKET_ERROR) return tcp_abort (&stream->tcpsi);      size -= i;		/* count this size */      string += i;    }  }  if (bn) (*bn) (BLOCK_NONE,NIL);  return T;			/* all done */}/* TCP/IP close * Accepts: TCP/IP stream */void tcp_close (TCPSTREAM *stream){  tcp_abort (&stream->tcpsi);	/* nuke the socket */				/* flush host names */  if (stream->host) fs_give ((void **) &stream->host);  if (stream->remotehost) fs_give ((void **) &stream->remotehost);  if (stream->localhost) fs_give ((void **) &stream->localhost);  fs_give ((void **) &stream);	/* flush the stream */}/* TCP/IP abort stream * Accepts: WinSock socket */long tcp_abort (SOCKET *sock){  blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);				/* something to close? */  if (sock && *sock != INVALID_SOCKET) {    if (bn) (*bn) (BLOCK_TCPCLOSE,NIL);    closesocket (*sock);	/* WinSock socket close */    *sock = INVALID_SOCKET;				/* no more open streams? */    if (wsa_initted && !--wsa_sock_open) {      mm_log ("Winsock cleanup",NIL);      wsa_initted = 0;		/* no more sockets, so... */      WSACleanup ();		/* free up resources until needed */    }  }  if (bn) (*bn) (BLOCK_NONE,NIL);  return NIL;}/* TCP/IP get host name * Accepts: TCP/IP stream * Returns: host name for this stream */char *tcp_host (TCPSTREAM *stream){  return stream->host;		/* use tcp_remotehost() if want guarantees */}/* TCP/IP get remote host name * Accepts: TCP/IP stream * Returns: host name for this stream */char *tcp_remotehost (TCPSTREAM *stream){  if (!stream->remotehost) {    struct sockaddr_in sin;    int sinlen = sizeof (struct sockaddr_in);    stream->remotehost =	/* get socket's peer name */      ((getpeername (stream->tcpsi,(struct sockaddr *) &sin,&sinlen) ==	SOCKET_ERROR) || (sinlen <= 0)) ?	  cpystr (stream->host) : tcp_name (&sin,NIL);  }  return stream->remotehost;}/* TCP/IP return port for this stream * Accepts: TCP/IP stream * Returns: port number for this stream */unsigned long tcp_port (TCPSTREAM *stream){  return stream->port;		/* return port number */}/* TCP/IP get local host name * Accepts: TCP/IP stream * Returns: local host name */char *tcp_localhost (TCPSTREAM *stream){  if (!stream->localhost) {    struct sockaddr_in sin;    int sinlen = sizeof (struct sockaddr_in);    stream->localhost =		/* get socket's name */      ((stream->port & 0xffff000) ||       ((getsockname (stream->tcpsi,(struct sockaddr *) &sin,&sinlen) ==	 SOCKET_ERROR) || (sinlen <= 0))) ?	   cpystr (mylocalhost ()) : tcp_name (&sin,NIL);  }  return stream->localhost;	/* return local host name */}/* TCP/IP get client host name (server calls only) * Returns: client host name */char *tcp_clienthost (){  if (!myClientHost) {    struct sockaddr_in sin;    int sinlen = sizeof (struct sockaddr_in);    myClientHost =		/* get stdin's peer name */      ((getpeername (0,(struct sockaddr *) &sin,&sinlen) == SOCKET_ERROR) ||       (sinlen <= 0)) ? cpystr ("UNKNOWN") : tcp_name (&sin,T);  }  return myClientHost;}/* TCP/IP get server host name (server calls only) * Returns: server host name */static long myServerPort = -1;char *tcp_serverhost (){  if (!myServerHost) {    struct sockaddr_in sin;    int sinlen = sizeof (struct sockaddr_in);    if (!wsa_initted++) {	/* init Windows Sockets */      WSADATA wsock;      if (WSAStartup (WSA_VERSION,&wsock)) {	wsa_initted = 0;	return "random-pc";	/* try again later? */      }    }				/* get stdin's name */    if ((getsockname (0,(struct sockaddr *) &sin,&sinlen) == SOCKET_ERROR) ||	(sinlen <= 0)) myServerHost = cpystr (mylocalhost ());    else {      myServerHost = tcp_name (&sin,NIL);      myServerPort = ntohs (sin.sin_port);    }  }  return myServerHost;}/* TCP/IP get server port number (server calls only) * Returns: server port number */long tcp_serverport (){  if (!myServerHost) tcp_serverhost ();  return myServerPort;}/* TCP/IP return canonical form of host name * Accepts: host name * Returns: canonical form of host name */char *tcp_canonical (char *name){  char *ret,host[MAILTMPLEN];  struct hostent *he;  blocknotify_t bn = (blocknotify_t) mail_parameters (NIL,GET_BLOCKNOTIFY,NIL);				/* look like domain literal? */  if (name[0] == '[' && name[strlen (name) - 1] == ']') return name;  if (bn) (*bn) (BLOCK_DNSLOOKUP,NIL);				/* note that NT requires lowercase! */  ret = (he = gethostbyname (lcase (strcpy (host,name)))) ? he->h_name : name;  if (bn) (*bn) (BLOCK_NONE,NIL);  return ret;}/* TCP/IP return name from socket * Accepts: socket *	    verbose flag * Returns: cpystr name */char *tcp_name (struct sockaddr_in *sin,long flag){  char *s,tmp[MAILTMPLEN];  if (allowreversedns) {    struct hostent *he;    blocknotify_t bn = (blocknotify_t)mail_parameters(NIL,GET_BLOCKNOTIFY,NIL);    if (bn) (*bn) (BLOCK_DNSLOOKUP,NIL);				/* translate address to name */    if (!(he = gethostbyaddr ((char *) &sin->sin_addr,			      sizeof (struct in_addr),sin->sin_family)))      sprintf (s = tmp,"[%s]",inet_ntoa (sin->sin_addr));    else if (flag) sprintf (s = tmp,"%s [%s]",he->h_name,			    inet_ntoa (sin->sin_addr));    else s = he->h_name;    if (bn) (*bn) (BLOCK_NONE,NIL);  }  else sprintf (s = tmp,"[%s]",inet_ntoa (sin->sin_addr));  return cpystr (s);}/* Return my local host name * Returns: my local host name */char *mylocalhost (void){  if (!myLocalHost) {    char *s,tmp[MAILTMPLEN];    struct hostent *he;    struct sockaddr_in sin, stmp;    int sinlen = sizeof (struct sockaddr_in);    SOCKET sock;    if (!wsa_initted++) {	/* init Windows Sockets */      WSADATA wsock;      if (WSAStartup (WSA_VERSION,&wsock)) {	wsa_initted = 0;	return "random-pc";	/* try again later? */      }    }    sin.sin_family = AF_INET;	/* family is always Internet */    sin.sin_addr.s_addr = inet_addr ("127.0.0.1");    sin.sin_port = htons ((u_short) 7);    if (allowreversedns &&	((sock = socket (sin.sin_family,SOCK_DGRAM,0)) != INVALID_SOCKET) &&	(getsockname (sock,(struct sockaddr *) &stmp,&sinlen)!= SOCKET_ERROR)&&	(sinlen > 0) &&	(he = gethostbyaddr ((char *) &stmp.sin_addr,			     sizeof (struct in_addr),stmp.sin_family)))      s = he->h_name;    else if (gethostname (tmp,MAILTMPLEN-1) == SOCKET_ERROR) s = "random-pc";    else s = (he = gethostbyname (tmp)) ? he->h_name : tmp;    myLocalHost = cpystr (s);	/* canonicalize it */				/* leave wsa_initted to save work later */    if (sock != INVALID_SOCKET) closesocket (sock);  }  return myLocalHost;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -