File: protocol.h

package info (click to toggle)
binkd 1.1a-115-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,544 kB
  • sloc: ansic: 22,961; makefile: 1,126; perl: 368; sh: 320
file content (10 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#ifndef _protocol_h
#define _protocol_h

enum { P_NULL = 0, P_NONSECURE, P_SECURE, 
       P_NA = 0x100, P_WE_NONSECURE, P_REMOTE_NONSECURE };

void protocol(SOCKET s_in, SOCKET s_out, FTN_NODE *fn, FTN_ADDR *fa,
              char *current_addr, char *current_port, char *remote_ip, BINKD_CONFIG *config);

#endif