]>
git.saurik.com Git - apple/bootx.git/blob - bootx.tproj/fs.subproj/net.c
5ef461b06d7be0732a29a2551019103b7802a69f
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * net.c - File System Module for wrapping TFTP.
25 * Copyright (c) 1999-2002 Apple Computer, Inc.
36 typedef struct NetPartInfo NetPartInfo
, *NetPartInfoPtr
;
41 CICell
NetInitPartition(char *devSpec
)
45 net
= (NetPartInfoPtr
)AllocateBootXMemory(sizeof(NetPartInfo
));
46 if (net
== 0) return 0;
48 strcpy(net
->devSpec
, devSpec
);
53 long NetLoadFile(CICell ih
, char *filePath
)
57 long ret
, length
, triesLeft
;
60 net
= (NetPartInfoPtr
)ih
;
62 sprintf(fileSpec
, "%s,%s", net
->devSpec
, filePath
);
64 printf("Opening [%s]...\n", fileSpec
);
68 netIH
= Open(fileSpec
);
70 } while ((netIH
== 0) && triesLeft
);
71 if (netIH
== 0) return -1;
75 ret
= CallMethod(1, 1, netIH
, "load", kLoadAddr
, &length
);
76 if (gOFVersion
< kOFVersion3x
) {
77 if (length
== 0) ret
= -1;
80 } while ((ret
!= kCINoError
) && triesLeft
);
81 if (ret
!= kCINoError
) return -1;
88 long NetGetDirEntry(CICell ih
, char *dirPath
, long *dirIndex
,
89 char **name
, long *flags
, long *time
)