I just compiled bbqcoind from source and all of my connections are coming from 19323.
Can you please link to the current branch of the source?
edit: My RPC port is functioning on 59332 but the peers are connecting on 19323. I compiled from the source on the first post of this thread (which has updates as of 4 days ago)
We should really consider cleaning up and consolidating all of the downloads to one page on bbqcoin.org. Source, clients, everything. This is what is going to keep BQC going more than anything.
edit2: best I can tell, 19323 is the port for testnet. Cannot find where in the source it is telling it to use that. The only line it doesnt appear as a comment is line 22 of protocol.h:
return testnet ? 58333 : 19323;
I dont do C++ very often but i think that is a conditiona, where if bool testnet = true, 58333 is returned, otherwise 19323. So this is indicating the default port for standard use is coded into the bbqcoin client as 19323. Which is why when you run 'bbqcoind getpeerinfo' all of your peers are connected on port 19323.
However, the port for RPC is different, which is why I was wondering if there is some confusion. This appears to have been discussed in this thread somewhere (post #62)