Re: sync in a C program?

From: Barry Margolin (barmar_at_alum.mit.edu)
Date: 06/29/04

  • Next message: John: "Testing for an empty directory with readdir"
    Date: Mon, 28 Jun 2004 22:30:17 -0400
    
    

    In article <518a5d0.0406281803.150b3e23@posting.google.com>,
     mazzawi@gmail.com (elia Mazzawi) wrote:

    > does anyone know how to use rsync in a c program without using a
    > system call?

    I assume you mean "call to system()"; a "system call" is any call to a
    kernel function, and you have to use many of these to perform any types
    of network operations.

    Rsync is built on top of SSH

    -- 
    Barry Margolin, barmar@alum.mit.edu
    Arlington, MA
    *** PLEASE post questions in newsgroups, not directly to me ***
    

  • Next message: John: "Testing for an empty directory with readdir"