os_mac.c
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:3k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. /*
  2.  * Program: Operating-system dependent routines -- Macintosh version
  3.  *
  4.  * Author: Mark Crispin
  5.  * 6158 Lariat Loop NE
  6.  * Bainbridge Island, WA  98110-2098
  7.  * Internet: MRC@Panda.COM
  8.  *
  9.  * Date: 26 January 1992
  10.  * Last Edited: 16 December 1998
  11.  *
  12.  * Copyright 1998 by Mark Crispin
  13.  *
  14.  *  Permission to use, copy, modify, and distribute this software and its
  15.  * documentation for any purpose and without fee is hereby granted, provided
  16.  * that the above copyright notice appears in all copies and that both the
  17.  * above copyright notices and this permission notice appear in supporting
  18.  * documentation, and that the name of Mark Crispin not be used in advertising
  19.  * or publicity pertaining to distribution of the software without specific,
  20.  * written prior permission.  This software is made available "as is", and
  21.  * MARK CRISPIN DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, WITH REGARD TO
  22.  * THIS SOFTWARE, INCLUDING WITHOUT LIMITATION ALL IMPLIED WARRANTIES OF
  23.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, AND IN NO EVENT SHALL
  24.  * MARK CRISPIN BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES
  25.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  26.  * WHETHER IN AN ACTION OF CONTRACT, TORT (INCLUDING NEGLIGENCE) OR STRICT
  27.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
  28.  * THIS SOFTWARE.
  29.  *
  30.  */
  31. /*  This is a totally new operating-system dependent module for the Macintosh,
  32.  * written using THINK C on my Mac PowerBook-100 in my free time.
  33.  * Unlike earlier efforts, this version requires no external TCP library.  It
  34.  * also takes advantage of the Map panel in System 7 for the timezone.
  35.  */
  36. /* PPC cretins broke the MachineLocation struct */
  37. #define gmtFlags u
  38. #include <limits.h>
  39. #include <time.h>
  40. #include <stdio.h>
  41. #include <fcntl.h>
  42. #define tcp_port MacTCP_port
  43. #include <MacTCPCommonTypes.h>
  44. #include <AddressXlation.h>
  45. #include <TCPPB.h>
  46. #include <Desk.h>
  47. #include <Devices.h>
  48. #include <Errors.h>
  49. #include <Files.h>
  50. #include <Fonts.h>
  51. #include <Menus.h>
  52. #include <Script.h>
  53. #include <ToolUtils.h>
  54. #include <Windows.h>
  55. #undef tcp_port
  56. #include "tcp_mac.h" /* must be before osdep.h */
  57. #include "mail.h"
  58. #include "osdep.h"
  59. #include "misc.h"
  60. static short TCPdriver = 0; /* MacTCP's reference number */
  61. short resolveropen = 0; /* TCP's resolver open */
  62. #include "env_mac.c"
  63. #include "fs_mac.c"
  64. #include "ftl_mac.c"
  65. #include "nl_mac.c"
  66. #include "tcp_mac.c"
  67. #define open(a,b,c) open (a,b)
  68. #define server_login(user,pass,argc,argv) NIL
  69. #define authserver_login(user,argc,argv) NIL
  70. #define myusername() "" /* dummy definition to prevent build errors */
  71. #define MD5ENABLE ""
  72. #include "auth_md5.c"
  73. #include "auth_log.c"