File: ventrilo.h

package info (click to toggle)
qstat 2.15-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 2,652 kB
  • ctags: 3,017
  • sloc: ansic: 24,995; sh: 4,109; makefile: 60
file content (21 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * qstat
 * by Steve Jankowski
 *
 * Ventrilo query protocol
 * Algorithm by Luigi Auriemma <www.aluigi.org> (Reversing and first version in c)
 * Copyright 2010 Michael Willigens <michael@willigens.de>
 *
 * Licensed under the Artistic License, see LICENSE.txt for license terms
 */
#ifndef QSTAT_VENTRILO_H
#define QSTAT_VENTRILO_H

#include "qserver.h"

// Packet processing methods
query_status_t deal_with_ventrilo_packet( struct qserver *server, char *pkt, int pktlen );
query_status_t send_ventrilo_request_packet( struct qserver *server );

#endif