File: crysis.h

package info (click to toggle)
qstat 2.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,220 kB
  • sloc: ansic: 24,706; makefile: 86; perl: 78; sh: 62
file content (19 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * qstat
 * by Steve Jankowski
 *
 * Crysis protocol
 * Copyright 2012 Steven Hartland
 *
 * Licensed under the Artistic License, see LICENSE.txt for license terms
 */
#ifndef QSTAT_CRYSIS_H
#define QSTAT_CRYSIS_H

#include "qserver.h"

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

#endif