~ubuntu-branches/ubuntu/jaunty/transmission/jaunty-security

« back to all changes in this revision

Viewing changes to libtransmission/ipcparse.h

  • Committer: Bazaar Package Importer
  • Author(s): Philipp Benner
  • Date: 2007-10-29 19:53:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20071029195302-gyy129sjmci7ezel
Tags: 0.91.dfsg-1
* New upstream release (Closes: #448516).
* Using manpages from source package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: ipcparse.h 3426 2007-10-15 20:58:39Z charles $
 
2
 * $Id: ipcparse.h 3566 2007-10-26 01:09:47Z charles $
3
3
 *
4
4
 * Copyright (c) 2007 Joshua Elsasser
5
5
 *
79
79
    IPC__MSG_UNKNOWN
80
80
};
81
81
 
 
82
/* If you add or delete a constant here then you need to renumber the
 
83
   ones after it. They need to be in ascending order starting at zero,
 
84
   with no gaps. */
82
85
#define IPC_INF_COMMENT         ( 1 << 0 )
83
86
#define IPC_INF_CREATOR         ( 1 << 1 )
84
87
#define IPC_INF_DATE            ( 1 << 2 )
88
91
#define IPC_INF_NAME            ( 1 << 6 )
89
92
#define IPC_INF_PATH            ( 1 << 7 )
90
93
#define IPC_INF_PRIVATE         ( 1 << 8 )
91
 
#define IPC_INF_SIZE            ( 1 << 10 )
92
 
#define IPC_INF_TRACKERS        ( 1 << 11 )
93
 
#define IPC_INF__MAX            ( 1 << 12 )
 
94
#define IPC_INF_SIZE            ( 1 << 9 )
 
95
#define IPC_INF_TRACKERS        ( 1 << 10 )
 
96
#define IPC_INF__MAX            ( 1 << 11 )
94
97
 
 
98
/* Ditto for these */
95
99
#define IPC_ST_COMPLETED        ( 1 << 0 )
96
100
#define IPC_ST_DOWNSPEED        ( 1 << 1 )
97
101
#define IPC_ST_DOWNTOTAL        ( 1 << 2 )