File: ud_socket.h

package info (click to toggle)
keytouch 2.2.2-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,212 kB
  • ctags: 1,399
  • sloc: ansic: 9,195; sh: 3,630; makefile: 399
file content (15 lines) | stat: -rw-r--r-- 287 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 *$Id: ud_socket.h,v 1.2 2003/11/17 21:24:58 sunthockin Exp $
 */

#ifndef UD_SOCKET_H__
#define UD_SOCKET_H__

#include <sys/socket.h>
#include <sys/un.h>

int ud_create_socket(const char *name);
int ud_accept(int sock, struct ucred *cred);
int ud_connect(const char *name);

#endif