~ubuntu-branches/ubuntu/precise/netatalk/precise

« back to all changes in this revision

Viewing changes to libatalk/dsi/dsi_getstat.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Rittau
  • Date: 2004-01-19 12:43:49 UTC
  • Revision ID: james.westby@ubuntu.com-20040119124349-es563jbp0hk0ae51
Tags: upstream-1.6.4
ImportĀ upstreamĀ versionĀ 1.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * $Id: dsi_getstat.c,v 1.3 2001/06/29 14:14:46 rufustfirefly Exp $
 
3
 *
 
4
 * Copyright (c) 1997 Adrian Sun (asun@zoology.washington.edu)
 
5
 * All rights reserved. See COPYRIGHT.
 
6
 */
 
7
 
 
8
#ifdef HAVE_CONFIG_H
 
9
#include "config.h"
 
10
#endif /* HAVE_CONFIG_H */
 
11
 
 
12
#include <stdio.h>
 
13
#include <string.h>
 
14
 
 
15
#include <atalk/dsi.h>
 
16
#include <netatalk/endian.h>
 
17
 
 
18
/* return the status and then delete the connection. most of the
 
19
 * fields are already set. */
 
20
void dsi_getstatus(DSI *dsi)
 
21
{
 
22
  dsi->header.dsi_flags = DSIFL_REPLY;
 
23
  /*dsi->header.dsi_command = DSIFUNC_STAT;*/
 
24
  
 
25
  memcpy(dsi->commands, dsi->status, dsi->statuslen);
 
26
  dsi->cmdlen = dsi->statuslen; 
 
27
  dsi_send(dsi);
 
28
}