![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on Netlib question within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; I just started using netlib 2.02 and i put it on my psp and ran the example this is what ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
|
I just started using netlib 2.02 and i put it on my psp and ran the example this is what it says:
Sending helloworld Getting Netlibtest then nothing happens ive had my psp on for 1 hour now. i have 3.03 OE-B i think thats the problem is it??
__________________
Need a GFX Guy for EBOOT ICONS, BACkGROUNDS?? I can help you there. Just see some of my work. PM me for GFX. |
|
|
|
|
|
|
#2 |
![]() ![]() total-Z
|
__________________
牧来栠摩琠敨映汩獥PSN: youresam From Earth the Frozen Ipaqs shall rise and be silenced and all will live free.
--Mike Hollingsworth |
|
|
|
|
|
#4 |
![]() ![]() total-Z
|
__________________
牧来栠摩琠敨映汩獥PSN: youresam From Earth the Frozen Ipaqs shall rise and be silenced and all will live free.
--Mike Hollingsworth |
|
|
|
|
|
#5 |
|
whoa it still not workin here is index.lua:
Code:
--[[
netlib example
by youresam
]]
dofile("netlib.lua") -- netlib
Wlan.init()
print("Connecting to "..Wlan.getConnectionConfigs()[1].."...")
Wlan.useConnectionConfig(1)
print("Connecting to netlib server...")
netlib_server = "66.25.53.65"
netconnect() -- connect to netlib server
print("Setting up AMW for 'netlibtest' (wont do anything in this example..)")
netreg("netlibtest")
print("Sending 'helloworld' to 'netlibtest'")
netsend("netlibtest","helloworld","w") -- id:netlibtest data:helloworld mode:write
print("Getting 'netlibtest'...(Press start to quit)")
netget("netlibtest")
while true do
netrecv() --recieve all incoming data
buffer = netvalue("netlibtest") --what is the value of the id 'netlibtest'?
if buffer ~= "" then --if it exists...
print(buffer)
break
end
if Controls.read():start() then break end
end
netunreg("netlibtest") --ALWAYS unregister a variable when your done
netclose() --close the netlib connection
Wlan.term()
print("Program finished, hold start to exit.")
__________________
Need a GFX Guy for EBOOT ICONS, BACkGROUNDS?? I can help you there. Just see some of my work. PM me for GFX. |
|
|
|
|
|
|
#7 |
|
it doesnt do anthing it just days (Getting Netlibtest) sumfin like that
-= Double Post =- Nevermind it didnt work before now its working
__________________
Need a GFX Guy for EBOOT ICONS, BACkGROUNDS?? I can help you there. Just see some of my work. PM me for GFX. Last edited by pspfreak9; 01-12-2007 at 05:46 PM.. Reason: Automerged Doublepost |
|
|
|
|
|
|
#8 |
![]() ![]() total-Z
|
the netlib server has you logged, so it seems to be working
edit: oh, ok.
__________________
牧来栠摩琠敨映汩獥PSN: youresam From Earth the Frozen Ipaqs shall rise and be silenced and all will live free.
--Mike Hollingsworth |
|
|
|
![]() |
| Tags |
| netlib , question |
| Thread Tools | |
|
|