imapext-2007

annotate src/osdep/unix/os_shp.c @ 0:ada5e610ab86

imap-2007e
author yuuji@gentei.org
date Mon, 14 Sep 2009 15:17:45 +0900
parents
children
rev   line source
yuuji@0 1 /* ========================================================================
yuuji@0 2 * Copyright 1988-2007 University of Washington
yuuji@0 3 *
yuuji@0 4 * Licensed under the Apache License, Version 2.0 (the "License");
yuuji@0 5 * you may not use this file except in compliance with the License.
yuuji@0 6 * You may obtain a copy of the License at
yuuji@0 7 *
yuuji@0 8 * http://www.apache.org/licenses/LICENSE-2.0
yuuji@0 9 *
yuuji@0 10 *
yuuji@0 11 * ========================================================================
yuuji@0 12 */
yuuji@0 13
yuuji@0 14 /*
yuuji@0 15 * Program: Operating-system dependent routines -- HP/UX version
yuuji@0 16 *
yuuji@0 17 * Author: Mark Crispin
yuuji@0 18 * Networks and Distributed Computing
yuuji@0 19 * Computing & Communications
yuuji@0 20 * University of Washington
yuuji@0 21 * Administration Building, AG-44
yuuji@0 22 * Seattle, WA 98195
yuuji@0 23 * Internet: MRC@CAC.Washington.EDU
yuuji@0 24 *
yuuji@0 25 * Date: 11 May 1989
yuuji@0 26 * Last Edited: 16 August 2007
yuuji@0 27 */
yuuji@0 28
yuuji@0 29 #define isodigit(c) (((unsigned)(c)>=060)&((unsigned)(c)<=067))
yuuji@0 30 #define toint(c) ((c)-'0')
yuuji@0 31
yuuji@0 32 #include <stdio.h>
yuuji@0 33
yuuji@0 34 #include "tcp_unix.h" /* must be before osdep includes tcp.h */
yuuji@0 35 #include "mail.h"
yuuji@0 36 #include "osdep.h"
yuuji@0 37 #include <stdio.h>
yuuji@0 38 #include <sys/stat.h>
yuuji@0 39 #include <sys/time.h>
yuuji@0 40 #include <sys/socket.h>
yuuji@0 41 #include <sys/utsname.h>
yuuji@0 42 #include <netinet/in.h>
yuuji@0 43 #include <arpa/inet.h>
yuuji@0 44 #include <netdb.h>
yuuji@0 45 #include <ctype.h>
yuuji@0 46 #include <errno.h>
yuuji@0 47 extern int errno; /* just in case */
yuuji@0 48 extern char *sys_errlist[];
yuuji@0 49 extern int sys_nerr;
yuuji@0 50 #include <pwd.h>
yuuji@0 51 #include <hpsecurity.h>
yuuji@0 52 #include <prot.h>
yuuji@0 53 #include "misc.h"
yuuji@0 54
yuuji@0 55
yuuji@0 56 #include "fs_unix.c"
yuuji@0 57 #include "ftl_unix.c"
yuuji@0 58 #include "nl_unix.c"
yuuji@0 59 #include "env_unix.c"
yuuji@0 60 #define fork vfork
yuuji@0 61 #include "tcp_unix.c"
yuuji@0 62 #include "gr_waitp.c"
yuuji@0 63 #include "flocksim.c"
yuuji@0 64 #include "tz_sv4.c"
yuuji@0 65 #undef setpgrp
yuuji@0 66 #include "setpgrp.c"
yuuji@0 67 #include "utime.c"
yuuji@0 68
yuuji@0 69 /* Emulator for BSD gethostid() call
yuuji@0 70 * Returns: a unique identifier for the system.
yuuji@0 71 * Even though HP/UX has an undocumented gethostid() system call,
yuuji@0 72 * it does not work (at least for non-privileged users).
yuuji@0 73 */
yuuji@0 74
yuuji@0 75 long gethostid (void)
yuuji@0 76 {
yuuji@0 77 struct utsname udata;
yuuji@0 78 return (uname (&udata)) ? 0xfeedface : atol (udata.__idnumber);
yuuji@0 79 }

UW-IMAP'd extensions by yuuji