ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/AmigaOS/ether_amiga.cpp
(Generate patch)

Comparing BasiliskII/src/AmigaOS/ether_amiga.cpp (file contents):
Revision 1.5 by jlachmann, 2000-08-20T14:08:41Z vs.
Revision 1.8 by cebix, 2001-07-13T15:39:22Z

# Line 1 | Line 1
1   /*
2   *  ether_amiga.cpp - Ethernet device driver, AmigaOS specific stuff
3   *
4 < *  Basilisk II (C) 1997-1999 Christian Bauer
4 > *  Basilisk II (C) 1997-2001 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 116 | Line 116 | static int16 send_to_proc(uint32 what, u
116   *  Initialization
117   */
118  
119 < void EtherInit(void)
119 > bool ether_init(void)
120   {
121          // Do nothing if no Ethernet device specified
122          if (PrefsFindString("ether") == NULL)
123 <                return;
123 >                return false;
124  
125          // Initialize protocol list
126          NewList(&prot_list);
# Line 151 | Line 151 | void EtherInit(void)
151                  goto open_error;
152  
153          // Everything OK
154 <        net_open = true;
155 <        return;
154 >        return true;
155  
156   open_error:
157          net_proc = NULL;
# Line 160 | Line 159 | open_error:
159                  DeleteMsgPort(reply_port);
160                  reply_port = NULL;
161          }
162 +        return false;
163   }
164  
165  
# Line 167 | Line 167 | open_error:
167   *  Deinitialization
168   */
169  
170 < void EtherExit(void)
170 > void ether_exit(void)
171   {
172          // Stop process
173          if (net_proc) {
# Line 188 | Line 188 | void EtherExit(void)
188   *  Reset
189   */
190  
191 < void EtherReset(void)
191 > void ether_reset(void)
192   {
193          // Remove all protocols
194 <        if (net_open)
194 >        if (net_proc)
195                  send_to_proc(MSG_CLEANUP);
196   }
197  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines