ALT Linux Community general discussions
 help / color / mirror / Atom feed
From: "Nick S. Grechukh" <ngrechukh@ua.fm>
To: community@altlinux.ru
Subject: Re: [Comm] read from socket
Date: Fri, 11 Feb 2005 14:41:33 +0200
Message-ID: <200502111441.39076.ngrechukh@ua.fm> (raw)
In-Reply-To: <200502111243.06160.ngrechukh@ua.fm>

[-- Attachment #1: Type: text/plain, Size: 997 bytes --]

вот что-то в этом роде получилось, поругайте:

typedef struct {
 char signature[8];
 int command;
 size_t msgsize;
} ctrl_header;

int operate(int sock, sq_command command, void * response, size_t len_buff)
{
 char *recvbuf;
 int n;
 ctrl_header hdr;
 memcpy(hdr.signature,"SQ1.0.00\n",10);
 hdr.command=1;
 hdr.msgsize=0;
 n = send(sock, &hdr, sizeof(hdr),0);
 n = recv(sock, &hdr, sizeof(hdr),MSG_WAITALL);
 if ((n==sizeof(hdr)) && (strncmp(hdr.signature,"SQ1.0.00\n",10)==0)){
  if (hdr.msgsize>0){
   if ((recvbuf=malloc(hdr.msgsize))!=NULL){
    if ((n = recv(sock,recvbuf, hdr.msgsize, MSG_WAITALL))==hdr.msgsize){
     if ((response!=NULL) && (len_buff>=0)) {
      memcpy(response,recvbuf,len_buff);
     }
    } else {
     //maybe socket error, count of received data<than promised
    }
    free(recvbuf);
   } else {
    // allocation error
   };
  }
 } else {
  // maybe again socket error, or there is no squash on that side...
 }
 return(1);
}

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

  reply	other threads:[~2005-02-11 12:41 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-02-11  9:59 Nick S. Grechukh
2005-02-11 10:35 ` Eugene Ostapets
2005-02-11 10:43   ` Nick S. Grechukh
2005-02-11 12:41     ` Nick S. Grechukh [this message]
2005-02-11 10:48   ` Nick S. Grechukh

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200502111441.39076.ngrechukh@ua.fm \
    --to=ngrechukh@ua.fm \
    --cc=community@altlinux.ru \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git