~ubuntu-branches/debian/sid/apt-dater/sid

« back to all changes in this revision

Viewing changes to src/tmux.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2015-07-07 17:33:08 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20150707173308-7rkjhxnlq7gsykif
Tags: 1.0.2-1
* New upstream release.
  - Set the default of the opt-cmd-flags host option to "-t" since this is
    essential.
    Closes: #776392
  - Add new build dependency vim-common.
* Replace screen dependency with tmux.
* Create apt-dater group for session sharing.
* Add missing directories.
* Make the build reproducible.
  Closes: #789648
* Drop automake and autoconf build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* apt-dater - terminal-based remote package update manager
 
2
 *
 
3
 * Authors:
 
4
 *   Thomas Liske <liske@ibh.de>
 
5
 *
 
6
 * Copyright Holder:
 
7
 *   2008-2015 (C) IBH IT-Service GmbH [https://www.ibh.de/apt-dater/]
 
8
 *
 
9
 * License:
 
10
 *   This program is free software; you can redistribute it and/or modify
 
11
 *   it under the terms of the GNU General Public License as published by
 
12
 *   the Free Software Foundation; either version 2 of the License, or
 
13
 *   (at your option) any later version.
 
14
 *
 
15
 *   This program is distributed in the hope that it will be useful,
 
16
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 *   GNU General Public License for more details.
 
19
 *
 
20
 *   You should have received a copy of the GNU General Public License
 
21
 *   along with this package; if not, write to the Free Software
 
22
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 
23
 */
 
24
 
 
25
#ifndef _TMUX_H
 
26
#define _TMUX_H
 
27
 
 
28
#include "apt-dater.h"
 
29
#include "history.h"
 
30
 
 
31
#define TMUX_SDFORMT "%s/S-%s"
 
32
#define TMUX_SOCKPRE "apt-dater_"
 
33
#define TMUX_SOCKPATH "/tmp"
 
34
 
 
35
void tmux_initialize(HostNode *n);
 
36
gboolean tmux_get_sessions(HostNode *n);
 
37
 
 
38
gchar **tmux_new(HostNode *n, const gboolean detached);
 
39
gboolean tmux_attach(HostNode *n, const SessNode *s, const gboolean shared);
 
40
gchar *tmux_get_dump(const SessNode *s);
 
41
 
 
42
#endif /* _TMUX_H */