summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c b/c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c
index 5ec5a4a6af..a21b659e4e 100644
--- a/c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c
+++ b/c/src/lib/libbsp/arm/nds/dswifi/arm9/source/wifi_arm9.c
@@ -1,7 +1,7 @@
// DS Wifi interface code
// Copyright (C) 2005-2006 Stephen Stair - sgstair@akkit.org - http://www.akkit.org
// wifi_arm9.c - arm9 wifi support code
-/******************************************************************************
+/******************************************************************************
DSWifi Lib and test materials are licenced under the MIT open source licence:
Copyright (c) 2005-2006 Stephen Stair
@@ -166,7 +166,7 @@ void * wHeapAlloc(int size) {
}
}
#endif
- return voidptr;
+ return voidptr;
}
void wHeapFree(void * data) {
@@ -477,7 +477,7 @@ int Wifi_ConnectAP(Wifi_AccessPoint * apdata, int wepmode, int wepkeyid, u8 * we
WifiData->reqReqFlags |= WFLAG_REQ_APCONNECT | WFLAG_REQ_APCOPYVALUES;
wifi_connect_state=1;
} else {
- WifiData->reqMode=WIFIMODE_SCAN;
+ WifiData->reqMode=WIFIMODE_SCAN;
wifi_connect_point = *apdata;
}
return 0;
@@ -487,7 +487,7 @@ void Wifi_AutoConnect(void) {
wifi_connect_state=ASSOCSTATUS_CANNOTCONNECT;
} else {
wifi_connect_state=4;
- WifiData->reqMode=WIFIMODE_SCAN;
+ WifiData->reqMode=WIFIMODE_SCAN;
}
}
@@ -498,7 +498,7 @@ void sgIP_DNS_Record_Localhost(void)
const unsigned char * resdata_c = (unsigned char *)&(wifi_hw->ipaddr);
rec = sgIP_DNS_GetUnusedRecord();
rec->flags=SGIP_DNS_FLAG_ACTIVE | SGIP_DNS_FLAG_BUSY;
-
+
rec->addrlen = 4;
rec->numalias = 1;
gethostname(rec->aliases[0], 256);
@@ -519,7 +519,7 @@ int Wifi_AssocStatus() {
case -1: // error
return ASSOCSTATUS_CANNOTCONNECT;
case 0: // searching
- {
+ {
int i;
Wifi_AccessPoint ap;
i=Wifi_FindMatchingAP(1,&wifi_connect_point,&ap);
@@ -611,7 +611,7 @@ int Wifi_AssocStatus() {
}
}
}
-#else
+#else
// should never get here (dhcp state) without sgIP!
Wifi_DisconnectAP();
wifi_connect_state=-1;
@@ -692,7 +692,7 @@ int Wifi_TransmitFunction(sgIP_Hub_HWInterface * hw, sgIP_memblock * mb) {
sgIP_memblock_free(mb);
return 0; //?
}
-
+
ethhdr_print('T',mb->datastart);
framehdr[0]=0;
framehdr[1]=0;
@@ -803,22 +803,22 @@ unsigned long Wifi_Init(int initflags) {
case WIFIINIT_OPTION_USEHEAP_128:
wHeapAllocInit(128*1024);
break;
- case WIFIINIT_OPTION_USEHEAP_64:
+ case WIFIINIT_OPTION_USEHEAP_64:
wHeapAllocInit(64*1024);
break;
- case WIFIINIT_OPTION_USEHEAP_256:
+ case WIFIINIT_OPTION_USEHEAP_256:
wHeapAllocInit(256*1024);
break;
- case WIFIINIT_OPTION_USEHEAP_512:
+ case WIFIINIT_OPTION_USEHEAP_512:
wHeapAllocInit(512*1024);
break;
case WIFIINIT_OPTION_USECUSTOMALLOC:
break;
}
sgIP_Init();
-
+
#endif
-
+
WifiData->flags9 = WFLAG_ARM9_ACTIVE | (initflags & WFLAG_ARM9_INITFLAGMASK) ;
return (u32) &Wifi_Data_Struct;
}
@@ -874,7 +874,7 @@ void Wifi_Update() {
// destination matches our mac address, or the broadcast address.
//if(framehdr[6]&0x4000) { // wep enabled (when receiving WEP packets, the IV is stripped for us! how nice :|
// base2+=24; hdrlen=28; // base2+=[wifi hdr 12byte]+[802 header hdrlen]+[slip hdr 8byte]
- //} else {
+ //} else {
base2+=22; hdrlen=24;
//}
// SGIP_DEBUG_MESSAGE(("%04X %04X %04X %04X %04X",Wifi_RxReadOffset(base2-8,0),Wifi_RxReadOffset(base2-7,0),Wifi_RxReadOffset(base2-6,0),Wifi_RxReadOffset(base2-5,0),Wifi_RxReadOffset(base2-4,0)));