Thanks for your tip Wizard_hu_
I broke it down in to smaller problems and found that ethernet does work in 5th with my mods.
But my problem remains.. Starting the connection via my IAP returns...
Type: Posts; User: Gixxer2; Keyword(s):
Thanks for your tip Wizard_hu_
I broke it down in to smaller problems and found that ethernet does work in 5th with my mods.
But my problem remains.. Starting the connection via my IAP returns...
Basically i took my codebase from 3rd where networking worked(after my mods), and moved it into 5th
Compiling the code and running it went flawless so the next logical step was to move
my...
My modified ip.tcpip.esk
[sockman]
protocols= tcp,udp,icmp,icmp6,tcp.ip6,udp.ip6,icmp.ip6,icmp6.ip6
[tcp]
filename= tcpip6.prt
bindto= ip6
index= 1
Ive been using 3rd edtion FP2 emulator with ethernet (not winsock) for a while and networking has been working.
When trying to apply the same fix to 5th edtion it fails.
The fix is to point to...
Ok thanks, ill have a look at that!
Ok, but using the CommsDat API i would be possible? I know CED uses this to create tables, am i right?
Does anyone know how to insert a whole new table in the CCommsDatabase?
That is, i dont want to insert a record into an existing table. I want to create a whole new table.
Thanks
Does anyone know how to ping from the emulator, if it is at all possible?
Regards
Still havent resolved my problem. Any input appreciated.
I can see in the callstack that the emu loads ethint.nif and etherpkt.drv right before the status is returned with -5. That seems in order so Why do i get a KErrNotSupported error??
Yes, thats right. But what would make RConnection::Start return KErrNotSupported?
And is there a way to get a more detailed description that KErrNotSupported?
I deleted all other IAP:s in ced.cfg (and then ran ced in eshell) in order to make sure i was using my own. I also tried prompting for an IAP and then selected my own.. same error
[IAP]...
I have created an IAP that i am failing to start.
When running Start i get an error -5 (KErrNotSupported)
If there was anything wrong with my IAP i would be getting another error, right.
I out...
Ok its working now.
Changed
ConfigDaemonName=DhcpServ
to
ConfigDaemonName=!DhcpServ
in my ced and its running. Dhcp and all
Still no success.. No ip in my emulator. It must be possible to get internet connection without winsock?
Cant find that file so the i suppose its part of the partner SDK?
Do you know if the functionality in RConnection::Control is crippled (removed functionality) in the public SDK or if the header...
Anyone?
Is there anyone who has gotten ethernet to work without using winsock?
Ive been looking for a constant called KCOLAgent. Its used in the RConnection::Control as a parameter aOptionLevel. Can anyone tell me where i might find it?
Regards
Hi,
Thanks, no i hadnt seen that one although it was about getting winsock to work which is the opposite to what im trying to acheive.
This is what im trying to get to work:...
I know there are a lot if threads on this subject. I have seen them all.
Been reading alot for guides on how to get the emulator (in SDK 3rd FP2) working with something else other than winsock. All...
Of course, but im forced to connect on the L2CAP level in the stack.
But what i cant understand is why I am able to connect using BTLinkManager protocol but not the L2CAP protocol.
BTLinkmanager...
RFCOMM communicates over L2CAP, right? That is, L2CAP is "lower" in the BT stack?
As a note, i tried this:
User::LeaveIfError(socket.Open(socketServ,KBTAddrFamily,KSockSeqPacket,KBTLinkManager));...
Using the emulator i can scan for my phone and find it. I can add it to my BT devices and set it up with PIN and everything. So the BT config seems ok.
And progamatically i can find the phone and...
I printed the address to make sure it was correct and it seems ok. I get the MAC address of the phone. So what am i missing? Why am i not able to connect?
..
..
TBTDevAddr devAddr =...
The code below is part of an attempt to connect to a bluetooth phone from the emulator. I lookup info about the phone via RHostResolver and that works fine, address is correct. socket.open works to...